  /* @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Montserrat:wght@300;400;500&display=swap'); */

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --gold: #b99a61;
      --light-gold: #d1b478;
      --text: #e8e3d9;
      --muted: #8f8a80;
      --black: #050505;
      --border: rgba(185, 154, 97, 0.35);
    }

    body {
      background: var(--black);
      color: var(--text);
      font-family: "Montserrat", sans-serif;
      font-weight: 300;
    }

    /* =========================
       HEADER / HERO
    ========================== */

    .hero {
      min-height: 430px;
      position: relative;
      background:
        linear-gradient(
          rgba(0, 0, 0, 0.63),
          rgba(0, 0, 0, 0.78)
        ),
        url(leave.jpg)
        center/cover no-repeat;
    }

    header {
      width: 100%;
      height: 75px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 10%;
      position: relative;
      z-index: 5;
    }

    .logo {
      color: #d5c19a;
      font-family: "Cormorant Garamond", serif;
      font-size: 22px;
      letter-spacing: 6px;
      font-weight: 500;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    nav a {
      text-decoration: none;
      color: #bdb8ae;
      font-size: 15px;
      letter-spacing: 1px;
      transition: color 0.3s ease;
    }

    nav a:hover,
    nav a.active {
      color: var(--light-gold);
    }

    .hero-content {
      min-height: 350px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .hero-content h1 {
      color: var(--light-gold);
      font-family: "Cormorant Garamond", serif;
      font-size: 43px;
      font-weight: 400;
      letter-spacing: 8px;
      margin-bottom: 8px;
    }

    .hero-content p {
      max-width: 440px;
      color: #b0aba1;
      font-size: 15px;
      line-height: 1.8;
      letter-spacing: 0.3px;
    }

    .scroll-arrow {
      margin-top: 22px;
      width: 12px;
      height: 12px;
      border-right: 1px solid var(--light-gold);
      border-bottom: 1px solid var(--light-gold);
      transform: rotate(45deg);
    }

    /* =========================
       BOOKING SECTION
    ========================== */

    .booking-section {
      padding: 55px 20px 70px;
      text-align: center;
      background: #050505;
    }

    .booking-intro {
      max-width: 500px;
      margin: 0 auto 25px;
    }

    .booking-intro h2 {
      color: var(--light-gold);
      font-family: "Cormorant Garamond", serif;
      font-size: 20px;
      font-weight: 500;
      margin-bottom: 8px;
    }

    .booking-intro p {
      color: #77736c;
      font-size: 15px;
      line-height: 1.7;
    }

    .booking-form {
      width: 100%;
      max-width: 365px;
      margin: 0 auto;
      border: 1px solid var(--border);
      padding: 17px 13px 14px;
      text-align: left;
      background: rgba(8, 8, 8, 0.85);
    }

    .form-description {
      color: #8c877e;
      font-size: 11px;
      line-height: 1.6;
      text-align: center;
      margin-bottom: 13px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 9px;
    }

    .field {
      margin-bottom: 9px;
    }

    label {
      display: block;
      color: #a69a82;
      font-size: 10px;
      letter-spacing: 0.8px;
      margin-bottom: 4px;
      text-transform: uppercase;
    }

    input,
    select {
      width: 100%;
      height: 27px;
      border: 1px solid #3d372e;
      background: #080808;
      color: #aaa49b;
      padding: 0 8px;
      outline: none;
      font-family: "Montserrat", sans-serif;
      font-size: 8px;
    }

    input:focus,
    select:focus {
      border-color: var(--gold);
    }

    select {
      cursor: pointer;
    }

    .submit-btn {
      width: 100%;
      height: 30px;
      margin-top: 2px;
      border: none;
      background: #c8a96e;
      color: #272016;
      font-family: "Montserrat", sans-serif;
      font-size: 7px;
      font-weight: 500;
      letter-spacing: 1px;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .submit-btn:hover {
      background: #dec38a;
    }

    .thank-you {
      color: #746e65;
      font-size: 10px;
      margin-top: 16px;
    }

    /* =========================
       FOOTER
    ========================== */

    footer {
      border-top: 1px solid #191817;
      background: #050505;
      padding: 25px 5% 15px;
    }

    .footer-top {
      max-width: 1100px;
      margin: auto;
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr 1fr;
      gap: 30px;
      align-items: start;
    }

    .footer-logo {
      color: #d2bd94;
      font-family: "Cormorant Garamond", serif;
      font-size: 21px;
      letter-spacing: 5px;
    }

    .footer-tagline {
      color: #77736c;
      font-size: 5px;
      margin-top: 2px;
      letter-spacing: 0.7px;
    }

    .footer-title {
      color: #8e887e;
      font-size: 6px;
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.7px;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .footer-links a {
      color: #65615a;
      text-decoration: none;
      font-size: 6px;
    }

    .footer-links a:hover {
      color: var(--light-gold);
    }

    .phone {
      color: #777169;
      font-size: 7px;
      margin-top: 6px;
    }

    .socials {
      display: flex;
      gap: 12px;
    }

    .social {
      width: 17px;
      height: 17px;
      border: 1px solid #555047;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #918b81;
      font-size: 7px;
      text-decoration: none;
    }

    .footer-bottom {
      max-width: 1100px;
      margin: 25px auto 0;
      padding-top: 10px;
      border-top: 1px solid #171615;
      display: flex;
      justify-content: space-between;
      color: #4d4943;
      font-size: 5px;
    }

    /* =========================
       RESPONSIVE
    ========================== */

    @media (max-width: 700px) {
      header {
        padding: 0 25px;
      }

      nav {
        gap: 13px;
      }

      nav a {
        font-size: 15px;
      }

      .hero-content h1 {
        font-size: 34px;
        letter-spacing: 6px;
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
      }
    }

    @media (max-width: 480px) {
      header {
        height: 65px;
      }

      .logo {
        font-size: 18px;
      }

      /* nav a:nth-child(3),
      nav a:nth-child(4) {
        display: none;
      } */
       nav a{
        display: block;
       }

      .hero {
        min-height: 390px;
      }

      .hero-content {
        min-height: 325px;
      }

      .hero-content h1 {
        font-size: 30px;
      }

      .hero-content p {
        padding: 0 30px;
      }

      .booking-section {
        padding-top: 45px;
      }

      .booking-form {
        max-width: 330px;
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 5px;
      }
    }


    @media (max-width: 500px) {
   .nav{
    display: block;
    font-size: large
   }

}