/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background-color: #F5F7FA;
    color: #333;
    font-size: 1rem;
  }
  
  /* Typography */
  h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(83, 83, 83, 0.6);
    margin-bottom: 1rem;
  }
  
  h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(83, 83, 83, 0.6);
  }
  
/* Header Base */
header.branding {
    position: sticky;
    top: 0;
    background-color: #fff;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    flex-wrap: wrap;
  }
  
  /* Branding Container */
  .branding-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 1;
  }
  
  .logo {
    height: 48px;
    width: auto;
  }
  
  .brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
  }
  
  .brand-name {
    font-size: 1.6rem;
    font-weight: 600;
    color: #FFB84C;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.1rem;
  }
  
  .brand-tagline {
    font-size: 0.9rem;
    color: #4A4A4A;
    font-weight: 400;
    letter-spacing: 0.2px;
  }
  
  /* Nav Links */
  .nav-links {
    display: flex;
    align-items: center;
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
  }
  
  .nav-cta {
    padding: 0.5rem 1rem;
    background-color: #FFB84C;
    color: white;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.9rem;
  }
  
  /* Responsive Adjustments */
  @media (min-width: 768px) {
    header.branding {
      flex-wrap: nowrap;
    }
  
    .nav-links {
      margin-top: 0;
      width: auto;
      justify-content: flex-end;
    }
  
    .nav-cta {
      font-size: 1rem;
      padding: 0.6rem 1.2rem;
    }
  
    .brand-name {
      font-size: 2rem;
    }
  
    .brand-tagline {
      font-size: 1rem;
    }
  }
  
  
  header.branding {
    padding: 1.2rem 3rem;
  }

  /* Buttons */
  .button,
  .nav-cta,
  .cta-button,
  .hero .cta-button,
  form button {
    background-color: #1F3A93;
    color: white;
    padding: 0.85rem 2rem;
    min-width: 200px;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid transparent;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    cursor: pointer;
    font-family: inherit;
  }
  
  .button:hover,
  .nav-cta:hover,
  .cta-button:hover,
  form button:hover {
    background-color: #143072;
    color: white;
    border: 2px solid #FFB84C;
    box-shadow: 0 4px 12px rgba(31, 58, 147, 0.3);
  }
  
  /* Hero Section */
  .hero {
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    z-index: 1;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('img/padel-court.jpg') center/cover no-repeat;
    filter: blur(5px);
    z-index: -1;
  }
  
  .overlay {
    background: rgba(0, 0, 0, 0.8);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    max-width: 80%;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease;
    filter: none;
    margin-bottom: 4rem;
  }
  
  .hero p,
  .sub-cta {
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
  }
  
  .sub-cta {
    margin-top: 1rem;
    font-size: 0.95rem;
    font-weight: 500;
  }
  
  /* Why VanPadel */
  .why-vanpadel {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
    position: relative;
    z-index: 2;
  }
  
  .why-vanpadel h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F3A93;
    margin-bottom: 1.5rem;
  }
  
  .why-vanpadel p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
  }
  
  .why-vanpadel ul {
    list-style: none;
    padding: 0;
  }
  
  .why-vanpadel ul li {
    font-size: 1.1rem;
    color: #333;
    margin: 1rem 0;
    display: flex;
    align-items: center;
  }
  
  .why-vanpadel ul li::before {
    content: "✔";
    font-size: 1.5rem;
    color: #FFB84C;
    margin-right: 1rem;
  }
  
  /* Gallery Section */
  .gallery {
    padding: 2rem;
    background-color: #F1F6FF;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .gallery-text {
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .gallery-text h2 {
    color: #1F3A93;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-shadow: none;
  }
  
  .gallery-text p {
    color: #555;
    font-size: 1.1rem;
  }
  
  .gallery-images {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  
  .gallery-images img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .gallery-images img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }
  
  /* Waitlist Section */
  .waitlist {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    margin-top: 3rem;
    margin-bottom: 3rem;
    padding: 4rem 2rem;
    max-width: 800px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .waitlist h2 {
    font-size: 2.5rem;
    color: #1F3A93;
    margin-bottom: 1rem;
    font-weight: 700;
  }
  
  .waitlist p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
  }
  
  form label {
    text-align: left;
    font-weight: 600;
    color: #333;
    margin-bottom: -0.5rem;
  }
  
  form input {
    padding: 1.25rem;
    border-radius: 10px;
    border: 1px solid #bbb;
    background-color: #fafafa;
    font-size: 1rem;
    font-family: inherit;
  }
  
  form input:focus {
    outline: none;
    border-color: #1F3A93;
    box-shadow: 0 0 6px rgba(31, 58, 147, 0.3);
  }
  
  form button {
    background-color: #1F3A93;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 250px;
    margin: 0 auto;
  }
  
  form button:hover {
    background-color: #143072;
  }
  
  .trust-note {
    font-size: 0.85rem;
    color: #777;
    margin-top: 1rem;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #B3D4FC;
    font-size: 0.9rem;
    color: #555;
  }
  
  footer a {
    color: #1F3A93;
    text-decoration: none;
  }
  
  .socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .socials a img {
    width: 28px;
    height: 28px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  
  .socials a:hover img {
    transform: scale(1.1);
    opacity: 0.8;
  }
  /* Animation */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Styles */
  @media (max-width: 1024px) {
    .gallery-images img {
      width: 90%;
      height: auto;
    }
  }
  
  @media (max-width: 768px) {
    h1 {
      font-size: 2rem;
    }
  
    h2 {
      font-size: 1.5rem;
    }
  
    .overlay {
      padding: 2rem 1rem;
    }
  
    .brand-name {
      font-size: 1rem;
    }
  
    .logo {
      height: 32px;
    }
  
    .nav-cta {
      font-size: 0.95rem;
      padding: 0.4rem 0.8rem;
    }
  
    .hero {
      height: 80vh;
      text-align: center;
      margin-bottom: 4rem;
    }
  
    .hero-section {
      margin-bottom: 4rem;
    }
  
    .gallery {
      padding: 1.5rem 1rem;
    }
  
    .gallery img {
      width: 90%;
    }
  
    .why-vanpadel {
      margin-top: 4rem;
      padding: 4rem 2rem;
    }
  
    .why-vanpadel h2 {
      font-size: 2rem;
    }
  
    .why-vanpadel p,
    .why-vanpadel ul li {
      font-size: 1rem;
    }
  
    .about,
    .waitlist {
      padding: 2rem 1rem;
    }
  
    form input,
    form button {
      width: 100%;
    }
  }
  