/** @format */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --heading-font: "Montserrat", sans-serif;
  --second-font: "Crimson Text", serif;

  --mani-bg-color: #fff;
  --btn-bg-color: #af9453;

  --orange_beige_color: #dbb6a0;
  --orange_beige_color: #e6b17e;
}
html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: #fff;
}

.force-lowercase {
  text-transform: lowercase !important;
}

body {
  /* font-family: "Crimson Text", serif; */
  color: white;
  overflow-x: hidden;
  background: var(--mani-bg-color);
}
h2,
h3,
h4 {
  font-family: var(--heading-font);
}
h3,
h4 {
  font-weight: 500;
}

#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: var(--mani-bg-color);
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader {
  width: 40px;
  height: 40px;
  border: 4px solid #000;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.video-container {
  width: 100vw;
  height: 100vh;
  /* z-index: -1; */
  overflow: hidden;
  position: relative;
}

.video-container.wedding {
  height: 75vh;
}

.video-container.wedding video {
  height: 100% !important;
}

.video-container .wedding .book_btn {
  /* display: none; */
}

.hero_text {
  position: absolute;
  /* z-index: 100; */
  color: #fff;
  top: 65%;
  width: 100vw;
  text-align: center;
  display: flex;
  gap: 14px;
  flex-direction: column;
  align-items: center; /* 🔥 Center all child elements */
}

.hero_text.wedding {
  top: 50%;
  text-align: left;
  align-items: start;
  left: 5%;
  font-weight: lighter;
}

.book_btn {
  display: inline-flex; /* better inside flex parents */
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  /* border: 1px solid #fff; */
  /* border: 1px solid #000; */
  text-decoration: none;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  background-color: #fff;
  color: #022741;
  /* color: #000; */
  text-transform: capitalize;
}
.book_btn:hover {
  opacity: 0.7;
}

.hero_text h2 {
  font-size: 48px;
  text-transform: capitalize;
  color: #fff;
  /* font-weight: bold;
  font-family: var(--heading-font); */
}

.hero_text p {
  font-size: 20px;
  color: #fff;
}

.coming_soon_video {
  height: 95.2vh !important;
  padding-top: 20.2vh;
  display: flex;
  justify-content: center;
}
.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coming_soon_video video {
  width: 30vw;
}

/* header */
/* header */
/* header */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
  font-family: var(--heading-font);
  transition: all 0.6s ease-in-out;
  /* background: var(--orange_beige_color); */
}

header.scrolled {
  background: var(--mani-bg-color);
  background: var(--orange_beige_color);
}

nav a {
  transition: all 0.3s ease-in-out;
}

header.scrolled nav a,
header.scrolled .call-icon {
  transition: all 0.3s ease-in-out;
  color: black;
}
header.scrolled .check-btn {
  background-color: black;
  color: #fff;
}

.logo {
  text-transform: capitalize;
  text-align: center;
  font-size: 26px;
  letter-spacing: 5px;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  font-weight: normal;
  font-family: var(--second-font);
}

.logo span {
  font-weight: lighter;
  display: block;
  font-size: 14px;
  letter-spacing: 2px;
  margin-top: 2px;
}

header.scrolled .logo {
  opacity: 0;
  height: 0;
  overflow: hidden;
  margin: 0;
  /* display: none; */
}

.bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0px 24px;
  /* border-top: 1px solid rgb(210, 199, 196); */
  border-bottom: 1px solid #d2c7c4;
  flex-wrap: wrap;
  transition: all 0.5s ease-in-out;
}

/* header.scrolled .bottom-bar {
  border: none;
} */

.call-icon {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin-right: 12px;
}

.call-icon:hover {
  font-size: 22px;
}

nav {
  display: flex;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  font-size: 13px;
  /* transition: all 0.3s ease-in-out; */
}

header.scrolled nav {
  font-size: 14px;
  gap: 31px;
}
header.scrolled nav {
  /* after logo add in header */
  padding-top: 15px;
  /* after logo add in header */
}

header.scrolled nav a:hover {
  color: #001f2d;
  border-bottom: 2px solid #000;
}

nav a {
  color: white;
  text-decoration: none;
  text-transform: capitalize;
  display: inline-block;
  padding: 20px 0;
  padding: 20px 0;
  /* after logo add in header */
  padding: 5px 0 20px 0;
  /* after logo add in header */
  transition: all 0.3s ease-in-out;
}

nav a:hover {
  /* opacity: 0.6; */
  border-bottom: 1px solid #fff;
}

.check-btn {
  text-transform: capitalize;
  background: white;
  color: black;
  padding: 10px 20px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.check-btn:hover {
  opacity: 0.7;
}

.play-btn {
  position: absolute;
  top: 24%;
  right: 24px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid white;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 16px;
  color: white;
  cursor: pointer;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.play-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* Dropdown wrapper */
.dropdown {
  position: relative;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--mani-bg-color);
  min-width: 220px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease-in-out;
  z-index: 999;
}

.submenu a {
  padding: 12px 20px;
  color: #001f3f;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s;
}

.submenu a:hover {
  background-color: #f2f2f2;
}

/* Hover to show submenu with fade + slide */
.dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Keep Events link styled consistently */
.dropdown > a {
  color: white;
  text-transform: capitalize;
  padding: 20px 0;
  display: inline-block;
}

/* Mobile Toggle Icon */

.mobile-dropdown {
  display: flex;
  flex-direction: column;
}

.mobile-dropdown-toggle {
  text-transform: capitalize;
  color: #03202f;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #ddd;
  padding-bottom: 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-left: 10px;
  gap: 12px;
  margin-top: 0;
  transition: all 0.4s ease-in-out;
}

.mobile-submenu.active {
  max-height: 300px; /* enough to show all links */
  padding-top: 10px;
}

.mobile-submenu a {
  font-size: 14px !important;
  text-transform: none;
  border-bottom: none;
  padding: 2px 0;
  color: #001f3f;
}

.mobile-toggle {
  position: fixed;
  top: 20px;
  left: 20px;
  font-size: 24px;
  /* color: white; */
  z-index: 9998;
  display: none;
  cursor: pointer;
}

/* Mobile Menu Overlay */
.mobile-menu {
  font-family: var(--heading-font);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--mani-bg-color);
  background: var(--orange_beige_color);
  z-index: 9998;
  transform: translateX(-100%);
  transition: transform 1s ease-in-out;
  display: flex;
  flex-direction: column;
  padding: 20px 25px 100px 25px;
}

.mobile-menu.active {
  transform: translateX(0%);
}

.mobile-menu-header {
  display: flex;
  gap: 30px;
  /* justify-content: space-between; */
  align-items: center;
  margin-bottom: 30px;
}

.mobile-logo {
  font-family: "Crimson Text", serif;
  font-size: 20px;
  letter-spacing: 2px;
  color: black;
  /* line-height: 1.2; */
  text-transform: capitalize;
}

.mobile-logo span {
  font-size: 14px;
  letter-spacing: 2px;
}

.mobile-close {
  font-size: 24px;
  color: black;
  cursor: pointer;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex-grow: 1;
  font-size: 16px;
  padding: 10px 0;
}

.mobile-links a {
  text-transform: capitalize;
  text-decoration: none;
  color: #03202f;
  font-size: 18px;
  font-style: Arial;
  font-weight: 500;
  border-bottom: 1px solid rgb(221, 221, 221, 0.7);
  /* border-bottom: 1px solid #fff; */
  padding-bottom: 18px;
}

.mobile-check-btn {
  text-align: center;
  text-transform: capitalize;
  background: #001f2d;
  color: white;
  padding: 14px;
  width: 100%;
  font-size: 14px;
  border: none;
  margin-top: auto;
  cursor: pointer;
}

.blank_logo {
  display: none;
}

/* Only show hamburger on small screens */
@media (max-width: 991px) {
  /* .scrolled {
    display: none;
  } */

  /* Hide toggle when mobile menu is open */
  /* .mobile-menu.active + .mobile-toggle {
    display: none !important;
  } */
  .logo {
    font-size: 15px;
    letter-spacing: 3px;
    margin-bottom: 0;
    text-align: right;
    transform: translateY(4px);
  }
  .logo span {
    display: none;
  }

  .logo img {
    height: 50px;
  }

  .video-container {
    height: 80vh;
  }

  .coming_soon_video {
    height: 75vh !important;
    padding-top: 0;
  }

  .coming_soon_video video {
    width: 100vw;
  }

  .hero_text.wedding {
    top: 70%;
  }

  .hero_text.wedding h2 {
    font-size: 26px;
    letter-spacing: 2px;
  }

  header {
    border-bottom: 1px solid rgb(210, 199, 196);
    padding: 20px 0;
    display: flex;
    align-items: center;
  }

  header.scrolled .logo {
    opacity: 100;
    height: auto;
    overflow: visible;
    margin: auto;
    color: black;
  }

  .mobile-toggle {
    display: block;
  }

  .mobile-toggle i {
    color: white; /* default on top */
    transition: color 0.3s ease;
  }

  header.scrolled ~ .mobile-toggle i {
    color: black !important; /* when scrolled */
  }

  .white_logo {
    display: block;
  }

  .blank_logo {
    display: none;
  }

  header.scrolled .white_logo {
    display: none;
  }

  header.scrolled .blank_logo {
    display: block;
  }

  header {
    z-index: 9997;
    /* after logo add in header add this */
    padding: 5px;
    /* after logo add in header add this*/
  }

  .hero_text h2 {
    font-size: 24px;
  }
  .hero_text p {
    font-size: 16px;
  }
  /* .book_btn {
    background-color: #fff;
    color: #022741;
  } */

  .play-btn {
    top: 100px;
    right: 16px;
    background: transparent;
  }
  .play-btn:hover {
    background-color: transparent;
  }

  .bottom-bar,
  .check-btn,
  .call-icon {
    display: none !important;
  }
}

/*---------- wine-section---------- */
/*---------- wine-section---------- */
/*---------- wine-section---------- */

.about-vineyard {
  /* margin-top: 10vh; */
  position: relative;
  background: url("assets/home/c-05.png") no-repeat center center fixed;
  background-size: cover;
  height: 100vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 60px;
}

.about-content {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 90px 60px;
  max-width: 420px;
  margin-left: 5%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  font-family: "Georgia", serif;
}

.about-content h2 {
  text-transform: capitalize;
  font-weight: lighter;
  font-size: 2.1rem;
  letter-spacing: 1px;
  /* color: #022741;
  color: #022741;
  color: #022741; */
  color: #000;

  margin-bottom: 20px;
  line-height: 1.3;
}

.about-content p {
  font-weight: lighter;
  font-size: 1.05rem;
  line-height: 1.7;
  /* color: #0b1f2eb2;
  color: #0b1f2eb2;
  color: #0b1f2eb2; */
  color: #000;
  margin-bottom: 30px;
}

.learn-btn {
  font-weight: lighter;
  display: inline-block;
  background-color: #03202f;
  color: #fff;
  text-decoration: none;
  padding: 16px 24px;
  font-size: 0.95rem;
  letter-spacing: 1px;
  transition: background 0.3s ease;
}

.learn-btn:hover {
  background-color: #004563;
}
.mobile-image {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .about-vineyard {
    flex-direction: column;
    height: auto;
    padding: 0;
    background: none;
  }

  .about-vineyard::before {
    content: "";
    display: block;
    width: 100%;
    height: 260px;
    background: url("assets/home/c-05.png") no-repeat center center;
    background-size: cover;
  }

  .mobile-image {
    display: block;
    width: 100%;
    height: 260px;
    background-size: cover;
    background-position: center;
    margin: 5px 0;
  }

  .about-content {
    width: 100%;
    padding: 40px 25px;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .about-content h2 {
    font-size: 1.4rem;
    text-align: left;
    margin-bottom: 16px;
  }

  .about-content p {
    font-size: 0.8rem;
    text-align: left;
    margin-bottom: 12px;
  }

  .learn-btn {
    /* display: block; */
    width: fit-content;
    margin: 16px auto 0;
  }
}

/*---------- event-highlights---------- */
/*---------- event-highlights---------- */
/*---------- event-highlights---------- */

.event-highlights {
  text-align: center;
  padding: 100px 20px 110px 20px;
  font-family: "Georgia", serif;
  font-weight: lighter;
  background: var(--mani-bg-color);
  color: #1a1a1a;
}

.event-text h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  letter-spacing: 3px;

  /* color: #022741; */
  /* color: #022741; */
  /* color: #022741; */
  color: #000;
  text-transform: capitalize;
  font-weight: lighter;
}

.event-text p {
  max-width: 1150px;
  margin: 0 auto 50px auto;
  font-size: 1.05rem;
  letter-spacing: 1px;
  line-height: 1.8;
  /* color: #03202f;
  color: #03202f;color: #03202f; */
  color: #000;
}

.event-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 60px auto;
  overflow-x: auto;
}

.event-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.event-feature i {
  font-size: 32px;
  /* color: #002b3f;
  color: #002b3f;
  color: #002b3f; */
  color: #000;
}

.event-feature span {
  /* color: #022741; */
  color: 000;
  text-transform: capitalize;
  font-size: 0.6rem;
  letter-spacing: 2px;
  font-weight: 500;

  max-width: 200px;
}

.check-rates-btn {
  display: inline-block;
  background-color: #03202f;
  /* background: var(--btn-bg-color); */
  color: #fff;
  padding: 20px 34px;
  text-decoration: none;
  text-transform: capitalize;
  font-weight: lighter;
  font-size: 1rem;
  letter-spacing: 1px;
  /* border-radius: 2px; */
  transition: background 0.3s ease;
}

.check-rates-btn:hover {
  background-color: #004d6b;
}

@media (max-width: 992px) {
  .event-highlights {
    padding-top: 70px;
    padding-bottom: 80px;
  }
  .event-text {
    padding-left: 10px;
    padding-right: 10px;
  }
  .event-text h2 {
    padding-left: 6px;
    padding-right: 6px;
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .event-text p {
    font-size: 1rem;
    font-weight: lighter;
    padding: 0 10px;
    line-height: 1.7;
  }

  .event-icons {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .event-feature i {
    font-size: 28px;
  }

  .event-feature span {
    font-size: 0.4rem;
    letter-spacing: 1px;
    text-align: center;
  }

  .check-rates-btn {
    width: 100%;
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .event-text h2 {
    font-size: 1.3rem;
    letter-spacing: 1px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .event-text p {
    font-size: 0.95rem;
    padding-left: 1px;
    padding-right: 1px;
  }

  .event-icons {
    grid-template-columns: repeat(3, 1fr);
    gap: 10;
    padding-left: 20px;
    padding-right: 20px;
  }

  .event-feature span {
    font-size: 0.45rem;
  }

  .check-rates-btn {
    padding-top: 16px;
    padding-bottom: 16px;
    width: 100%;
    margin: 0 auto;
    display: block;
  }
}

/*----------  event - cards - home ---------- */
/*----------  event - cards - home ---------- */
/*----------   event -cards - home ----------- */
.promo_vineyar_hr {
  margin: 1rem 0;
  height: 0px !important;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.promo-section {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 85vh;
}

.promo-card {
  flex: 1 1 33.333%;
  position: relative;
  background-size: cover;
  background-position: center;
  /* min-height: 100vh; */
  transition: transform 0.3s ease-in-out;
}

/* .promo-card:hover {
  transform: scale(1.01);
} */

.card-1 {
  background-image: url("assets/wedding/06.jpg");
}

.card-2 {
  background-image: url("assets/wedding/04.jpg");
}

.card-3 {
  background-image: url("assets/wedding/08.jpg");
}

.promo-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: white;
  /* color: #000; */
  font-family: "Georgia", serif;
  z-index: 2;
}
.promo-content a {
  color: #000;
}

.promo-content h2 {
  text-transform: capitalize;
  font-weight: lighter;
  font-size: 24px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-family: var(--second-font);

  color: #ffffff;

  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* subtle box shadow for text */
}

.arrow-button {
  display: inline-block;
  width: 70px;
  height: 70px;
  position: relative;
  cursor: pointer;
}

.arrow-button .circle {
  width: 70px;
  height: 70px;
  border: 1px solid white;

  /* border: 1px solid #000; */

  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.arrow-button .circle svg {
  color: #000 !important;
}

.arrow-button .circle:hover .custom-arrow {
  transform: translateX(10px);
}

.custom-arrow {
  transition: transform 0.3s ease-in-out;
}

@media (max-width: 576px) {
  .promo-section {
    flex-direction: column;
  }
  .promo-content h2 {
    width: 70%;
    font-size: 24px;
  }

  .arrow-button .circle {
    width: 34px;
    height: 34px;
  }
}

/* footer */

.custom-footer {
  width: 100vw;
  background-color: #001f3f;
  background: var(--orange_beige_color);
  /* background-color: var(--mani-bg-color); */
  color: #f1f1f1;

  font-family: "Crimson Text", serif;
  padding: 50px 5vw 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 40px;
  border-bottom: 1px solid #444;
  padding-bottom: 30px;
}

.footer-column {
  /* flex: 1 1 250px; */
  min-width: 200px;
}

.footer-column h3,
.footer-column h4 {
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #ffffff;
  color: #000;
  font-weight: 600;
}
.footer-column h3 {
  font-size: 18px;
}

.footer-column p,
.footer-column a,
.footer-column li {
  font-size: 14px;
  color: #ccc;
  color: #000;
  line-height: 1.7;
  text-decoration: none;
}

.footer-column a {
  font-family: var(--heading-font);
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: inherit; /* keep text color same */
}

.footer-column a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px; /* adjust spacing */
  width: 0;
  height: 2px;
  background-color: currentColor; /* underline same as text color */
  transition: width 0.3s ease;
}

.footer-column a:hover::after {
  width: 100%;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.other_platform {
  margin-top: 4vh;
}

.social_icons_other_platform {
  margin-top: 4px;
}

.social-icons a {
  font-size: 20px;
  color: #ccc;
  color: #000;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #aaa;
  color: #000;
}

.d_none_phone {
  display: block;
}

.d_none_desktop {
  display: none;
}

@media (max-width: 576px) {
  .d_none_phone {
    display: none;
  }

  .d_none_desktop {
    display: block;
  }
  .footer-container {
    justify-content: start;
  }

  .footer-column {
    /* flex: 150px 1 1; */
    min-width: 10px;
  }
}
