/* ✅ Full-Width Navbar */
.navbar {
  width: 100%;
  padding: 1.75rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;

  white-space: nowrap;
  /* overflow-x: auto; */
}

.container {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

/* ✅ Logo */
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff9f5;
}

.logo span {
  font-style: italic;
}

/* ✅ Desktop Navigation */
.desktop-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.dropdown:hover .dropdown-menu {
  display: block;
  padding-top: 1rem;
}

.desktop-menu a {
  text-decoration: none;
  font-size: 1rem;
  color: #222222;
  border: 2px solid transparent;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  transition: 0.5s ease-in-out;
}

.desktop-menu a:hover {
  color: #f66;
  font-size: 1rem;
}

.desktop-menu .cta {
  color: #ff6666;
  background: #ffe1d7;
  border: 2px solid #ffe1d7;
  padding: 10px 20px;
  border-radius: 100px;
}

.desktop-menu .cta:hover {
  border: 2px solid #ff6666;
  padding: 10px 20px;
  border-radius: 100px;
  background: #ff6666;
  color: #ffe1d7;
  text-align: center;
  /* Navigation */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 12px */
  letter-spacing: 1px;
  text-transform: uppercase;
}

.desktop-menu .sign-in {
  display: flex;
  align-items: center;
  color: #222222;
}

.desktop-menu .sign-in:hover {
  display: flex;
  align-items: center;
  color: var(--Coral-Pink, #f66);
  text-align: right;
  /* Navigation */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 12px */
  letter-spacing: 1px;
  text-transform: uppercase;
}

.desktop-menu .sign-in img {
  width: 20px;
  margin-right: 5px;
}

.mobile-menu .mobile-header .sign-in-mobile {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

/* ✅ Hamburger Icon */
.hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger-menu span {
  width: 25px;
  height: 3px;
  background: #222222;
  margin: 4px 0;
  transition: 0.3s;
}

/* ✅ Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 50vw;
  height: 100vh;
  background: #ffe1d7;
  padding: 2rem;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transition: right 0.4s ease-in-out;
  overflow-x: hidden;
}

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.mobile-menu .dropdown-arrow {
  transition: transform 0.3s ease;
}

.mobile-menu .dropdown-arrow.rotated {
  transform: rotate(180deg);
}

/* ✅ Move "About Us" Down */
/* .mobile-menu a[href="#about-us"] {
  margin-top: 10px;
  padding-top: 15px;
  display: block;
} */

/* ✅ Hero Content */
.mobile-hero-content h1 {
  font-family: "Miller Text";
  font-size: clamp(28px, 4vw, 32px);
  font-weight: 400;
  line-height: 120%;
  color: #fff9f5;
  white-space: pre-line;
}

/* ✅ Hero CTA Button */
.mobile-hero .hero-cta {
  display: inline-block;
  font-family: "Montserrat";
  font-size: clamp(14px, 2vw, 16px);
  font-weight: bold;
  line-height: 150%;
  color: #ffe1d7;
  background: transparent;
  border: 2px solid #fff9f5;
  border-radius: 100px;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: auto;
  padding: 10px 20px;
}

/* ✅ Mobile Menu Buttons */
.sign-in-container {
  display: none;
}

/* #navbar-container
  > div.mobile-menu.show.active
  > div.mobile-header
  > div
  > a.sign-in-mobile-small {
  display: none;
} */

#navbar-container
  .mobile-menu
  .mobile-header
  .mobile-nav-actions
  .sign-in-mobile-small {
  display: none;
}

#navbar-container
  .mobile-menu
  .mobile-header
  .mobile-nav-actions
  .sign-in-mobile {
  display: flex;
}

.close-menu {
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #222222;
}

.mobile-menu a {
  text-decoration: none;
  font-size: 22px;
  color: #222222;
  display: block;
  border-bottom: 2px solid #fff9f5;
  padding: 1rem 0;
  font-family: "Miller Text";
}

.mobile-menu a:hover {
  color: #ff6666;
}

.mobile-menu a:active {
  color: #ff6666;
}

#navbar-container .mobile-menu .sign-in-container a {
  font-family: "Montserrat";
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #222222;
  display: flex;
  gap: 1rem;
  padding: 0 1rem;
}

/* ✅ Dropdown Container */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  text-decoration: none;
  font-size: 1rem;
  color: white;
  cursor: pointer;
  display: block;
}

/* ✅ Dropdown Menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  /* background: white;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); */
  width: 180px;
}

.dropdown-menu a {
  display: block;
  padding: 10px;
  color: #222222;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.dropdown-menu a:hover {
  color: #ff6666;
  background: #fff9f5;
  border-radius: 20px;
}

/* ✅ Mobile Dropdown */
.mobile-menu .dropdown {
  position: relative;
  width: 100%;
  border-bottom: 2px solid #fff9f5;
}

.mobile-menu .dropdown-toggle {
  width: auto;
  display: flex;
  justify-content: center;
  align-self: center;
  font-size: 1.2rem;
}

.mobile-menu .dropdown-menu {
  display: none;
  flex-direction: column;
  background: none;
}

/* ✅ NavBar Media Queries*/
@media (max-width: 1090px) {
  /* .navbar {
    padding: 1.5rem 1%;
  } */

  .desktop-menu {
    gap: 1rem;
  }
}

@media (max-width: 995px) {
  /* Use hamburger menu for tablets */
  .desktop-menu {
    display: none;
  }

  .hamburger-menu {
    display: flex;
  }

  .navbar {
    padding: 2rem;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(71, 43, 37, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out, visability 0.4s ease-in-out;
    z-index: 1000;
  }

  .overlay.active {
    visibility: visible;
    opacity: 0.8;
    transition: opacity 0.4s ease-in-out, visability 0.4s ease-in-out;
  }

  .mobile-nav.active {
    transform: translateX(0);
  }

  .mobile-nav-actions {
    display: flex;
    gap: 1rem;
  }

  .dropdown-menu {
    position: static;
    top: 100%;
    left: 0;
    background: none;
  }

  .mobile-menu .dropdown-menu {
    display: flex;
    flex-direction: column;
    background: none;
    overflow: hidden;
    transition: opacity 0.4s ease;
    height: 0;
    opacity: 0;
    padding-top: 1rem;
  }

  .mobile-menu.show {
    right: 0;
  }

  .mobile-menu .dropdown-menu.show {
    display: flex;
    height: auto;
    opacity: 1;
    background: none;
    padding: 0;
  }

  .mobile-menu .dropdown-menu a {
    width: 100%;
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    border-bottom: none;
    letter-spacing: 1px;
    color: #222222;
    padding: 1rem;
  }

  .mobile-menu .dropdown-menu a:hover {
    color: #ff6666;
    background: unset;
  }

  .mobile-menu .how-it-works-link {
    display: flex;
    gap: 1rem;
    border-style: none;
    padding-bottom: 0;
  }

  .mobile-hero {
    background: url(../assets/images/mobile-hero.jpg) no-repeat center center /
      cover;
    background-color: #fff9f5;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: auto;
    width: auto;
    padding: 3rem;
    margin: 3rem 0;
  }

  .mobile-hero .hero-cta {
    display: inline-block;
    font-family: "Montserrat";
    font-size: clamp(14px, 2vw, 16px);
    font-weight: bold;
    line-height: 150%;
    color: #ffe1d7;
    background: transparent;
    border: 2px solid #fff9f5;
    border-radius: 100px;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: auto;
    padding: 10px 20px;
    margin-top: 2rem;
  }
}

/* ✅ Mobile Responsive Design */
@media (max-width: 695px) {
  body.nav-open {
    overflow: hidden;
    height: 100%;
  }

  .desktop-menu {
    display: none;
  }

  .hamburger-menu {
    display: flex;
  }

  .mobile-menu {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    width: 80vw;
  }
  #navbar-container
    .mobile-menu
    .mobile-header
    .mobile-nav-actions
    .sign-in-mobile {
    display: none;
  }

  .mobile-menu.show {
    right: 0;
  }

  .mobile-hero {
    padding: 2rem;
    width: 320px;
  }

  .dropdown-menu {
    position: static;
    top: 100%;
    left: 0;
    background: white;
  }

  .mobile-menu .dropdown-menu a {
    width: 100%;
    display: block;
    font-size: 1rem;
  }

  .slideshow-container {
    display: none;
  }

  .sign-in-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2rem;
    background: #fff9f5;
    padding: 2rem 0;
    margin: auto -2rem -2rem -2rem;
  }
}

@media (max-width: 430px) {
  .mobile-hero {
    width: auto;
  }

  .mobile-hero-content h1 {
    white-space: unset;
    max-width: 181px;
  }
}

@media (max-width: 376px) {
  #navbar-container
    .mobile-menu
    .mobile-header
    .mobile-nav-actions
    .sign-in-mobile-small {
    display: flex;
  }

  .sign-in-container {
    display: none;
  }

  .mobile-hero {
    padding: 1rem;
  }

  .mobile-hero .hero-cta {
    margin-top: 1rem;
  }
}

@media (max-width: 345px) {
  .mobile-menu {
    width: 100vw;
  }
}

/* ✅ Full-Width Navbar */
/* .navbar {
    width: 100%;
    padding: 1.5rem 5%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .container {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
} */

/* ✅ Logo */
/* .navbar .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: white
}

.navbar .logo span {
    font-style: italic;
} */

/* ✅ Desktop Navigation */
/* .desktop-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}


.desktop-menu a {
    text-decoration: none;
    font-size: 1rem;
    color: #222222;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
}


.desktop-menu a:hover {
    text-decoration: none;
    font-size: 16px;
    color: #f66;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
}

.desktop-menu a.active {
    color: #f66;
    font-weight: bold;
    text-decoration: none;
    border-bottom: none;
}


.desktop-menu .cta {
    border-radius: 100px;
    background: var(--Light-Pink, #FFE1D7);
    color: var(--Coral-Pink, #F66);
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    padding: 12px 26px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.desktop-menu .cta:hover {
    border-radius: 100px;
    background: var(--Light-Pink, #F66);
    color: var(--Coral-Pink, #FFE1D7);
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    padding: 12px 26px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.desktop-menu .sign-in {
    display: flex;
    align-items: center;
    color: #222222;
}

.desktop-menu .sign-in:hover {
    display: flex;
    align-items: center;
    color: var(--Coral-Pink, #F66);
    text-align: right;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.desktop-menu .sign-in img {
    width: 20px;
    margin-right: 5px;
}

.mobile-menu .mobile-header .sign-in-mobile {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
}

.mobile-menu .mobile-header .mobile-logo-size {
    padding-top: 13px;
} */

/* ✅ Hamburger Icon */
/* .hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background: #222222;
    margin: 4px 0;
    transition: 0.3s;
} */

/* ✅ Mobile Menu */
/* .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #FFE1D7;
    padding: 2rem;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transition: right 0.4s ease-in-out;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
} */

/* ✅ Close Button */
/* .close-menu {
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #222222;
    padding-top: 18px;
}

.mobile-menu a {
    text-decoration: none;
    font-size: 22px;
    color: #222222;
    margin: 1rem 0;
    display: block;
    border-bottom: 1px solid #FFF9F5;
    padding-top: 12px;
    font-family: 'Miller Text';
} */

/* ✅ Dropdown Container */
/* .dropdown {
    position: relative;
}

.dropdown-toggle {
    text-decoration: none;
    font-size: 1rem;
    color: white;
    cursor: pointer;
    padding: 10px;
    display: block;
} */

/* ✅ Dropdown Menu */
/* .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
}

.dropdown-menu a {
    display: block;
    padding: 10px;
    color: #222222;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}


.dropdown-menu a:hover {
    background: #FFF9F5;
    border-radius: 20px;
} */

/* ✅ Show dropdown on hover (desktop) */
/* @media (min-width: 1025px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
} */

/* ✅ Mobile Dropdown */
/* .mobile-menu .dropdown {
    position: relative;
}

.mobile-menu .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu .dropdown-menu {
    display: none;
    flex-direction: column;
    background: none;
}

.mobile-menu .dropdown-menu a {
    padding-left: 20px;
    color: #222222;

} */

/* ✅ Mobile Responsive Design */
/* @media (max-width: 543px) {

    .desktop-menu {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .mobile-menu.show {
        right: 0;
    }

    .dropdown-menu {
        position: static;
        top: 100%;
        left: 0;
        background: white;
        width: 200px;
    }

    .mobile-menu .dropdown-menu a {
        width: 100%;
        display: block;
        font-size: 1rem;
    }


} */

/* ✅ Tablet Responsive Design */
/* @media (min-width: 544px) and (max-width: 985px) {

    .desktop-menu {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .mobile-menu.show {
        right: 0;
    }

    .dropdown-menu {
        position: static;
        top: 100%;
        left: 0;
        background: white;
        width: 200px;
    }

    .mobile-menu .dropdown-menu a {
        width: 100%;
        display: block;
        font-size: 1rem;
    }

    .mobile-menu .dropdown-toggle {
        width: 3%;
        display: block;
        padding: 15px 0;
        font-size: 1.2rem;
        text-align: left;
    }

    .mobile-hero {
        background: url(../assets/images/mobile-hero.jpg) no-repeat center center / cover;
        background-color: #FFF9F5;
        padding: 34px 1.6rem;
        text-align: center;
        border-radius: 31px;
        width: 52%;
        height: 17rem;
    }
}

.mobile_nav_buttons {
    bottom: 60px;
    display: flex;
    justify-content: flex-start;
    width: 90%;
    z-index: 10;
    margin-bottom: 15px;
    gap: 0rem;
}

.mobile_nav_buttons button {
    width: 50px;
    height: 50px;
    background: white;
    border: #FFAF99 solid;
    border-radius: 50%;
    cursor: pointer;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
    color: #FFAF99;
}

.mobile_nav_buttons button.grey {
    width: 50px;
    height: 50px;
    background: white;
    border: #FFE1D7 solid;
    border-radius: 50%;
    cursor: pointer;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
    color: #FFE1D7;
}

.mobile_navigation {
    bottom: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
    padding-left: 1rem;
    margin-left: 1rem;
}

.mobile_navigation .indicator {
    width: 110px;
    height: 3px;
    background: #ddd;
    transition: background 0.3s ease;
}

.mobile_navigation .indicator.active {
    background: #FF6666;
} */

/* ✅ Ensure Full Width for Dropdown Items */
/* .mobile-menu .dropdown {
    position: relative;
    width: 100%;
} */

/* ✅ Dropdown Toggle Should Take Full Space */
/* .mobile-menu .dropdown-toggle {
    width: 20px;
    display: block;
    padding: 15px 0;
    font-size: 1.2rem;
    text-align: left;
}

.mobile-menu .how-it-works-link {
    display: flex;
    gap: 2rem;
} */

/* ✅ Ensure Mobile Dropdown is Full-Width */
/* .mobile-menu .dropdown {
    width: 100%;
} */

/* ✅ Expanding Dropdown */
/* .mobile-menu .dropdown-menu {
    display: flex;
    flex-direction: column;
    background: none;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-in-out;
} */

/* ✅ Dropdown Menu Items */
/* .mobile-menu .dropdown-menu a {
    width: 100%;
    padding: 0px 20px;
    display: block;
    font-size: 12px;
    text-transform: uppercase;
}


.mobile-menu .dropdown-arrow {
    transition: transform 0.3s ease;
}

.mobile-menu .dropdown-arrow.rotated {
    transform: rotate(180deg);
} */

/* ✅ Move "About Us" Down */
/* .mobile-menu a[href="#about-us"] {
    margin-top: 10px;
    padding-top: 15px;
    display: block;
} */

/* ✅ Show Dropdown When Toggled */
/* .mobile-menu .dropdown-menu.show {
    display: flex;
} */

/* .mobile-hero {
    background: url(../assets/images/mobile-hero.jpg) no-repeat center center / cover;
    background-color: #FFF9F5;
    padding: 34px 1.6rem;
    text-align: center;
    border-radius: 31px;
} */

/* ✅ Hero Content */
/* .mobile-hero-content h1 {
    font-family: 'Miller Text';
    font-size: 24px;
    color: #fff;
} */

/* ✅ Hero CTA Button */
/* .mobile-hero .hero-cta {
    display: inline-block;
    padding: 0.7rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    color: #FFE1D7;
    border: 2px solid #FFF9F5;
    border-radius: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 1rem;
    font-family: Montserrat;

} */
