@font-face {
  font-family: "AGaramondPro-Regular";
  src: url("../fonts/AGaramondPro-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "AGaramondPro-Italic";
  src: url("../fonts/AGaramondPro-Italic.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter_18pt-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Inter600";
  src: url("../fonts/Inter-600.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "InterBold";
  src: url("../fonts/Inter_18pt-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Averia_Serif_Libre-300";
  src: url("../fonts/Averia_Serif_Libre-300.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "ITCGaramondStd-LtCond";
  src: url("../fonts/ITCGaramondStd-LtCond.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

:root {
  --white: #ffffff;
  --black: rgb(19, 35, 52);
  --brown-text: #5f2227;
  --light-brown: #d9b99b;
  --bg-burgundy: #5f2227;
  --behr: #f7f7ed;
}

body {
  font-family: "Inter";
}

/* basics */
.bg-brown {
  background-color: var(--brown) !important;
}

.bg-behr {
  background-color: var(--behr) !important;
}

.font-agrandmo-regular {
  font-family: "AGaramondPro-Regular";
}

.font-agrandmo-italic {
  font-family: "AGaramondPro-Italic";
}

.font-inter {
  font-family: "Inter";
}

.font-inter-bold {
  font-family: "Inter600";
}

.font-averia {
  font-family: "Averia_Serif_Libre-300";
}

.font-itc {
  font-family: "ITCGaramondStd-LtCond";
}

.p40 {
  padding: 40px !important;
}

.text-brown {
  color: var(--brown-text) !important;
}

.text-beige {
  color: var(--bg-burgundy) !important;
}

.text-light-brown {
  color: var(--light-brown) !important;
}

.text-title {
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  font-weight: 200;
}

.text-xl {
  font-size: clamp(2.5rem, 6vw, 2.8rem);
}

.text-lg {
  font-size: clamp(1.5rem, 4vw, 1.8rem);
}

.text-md {
  font-size: clamp(1.2rem, 3.2vw, 1.5rem);
}

.text-sm {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.text-xs {
  font-size: clamp(0.85rem, 2vw, 1rem);
}

.letter-space {
  letter-spacing: 0.05rem;
}

.width-responsive {
  width: 60%;
}

@media (max-width: 792px) {
  .width-responsive {
    width: 90%;
  }
}

@media (max-width: 568px) {
  .width-responsive {
    width: 100%;
  }
}

.width-responsive-sm {
  width: 45%;
}

@media (max-width: 568px) {
  .width-responsive-sm {
    width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 792px) {
  .width-responsive-sm {
    width: 80%;
    margin: 0 auto;
  }
}

.width-responsive-with-img {
  width: 60%;
  margin: auto;
}

.width-responsive-with-img img {
  width: 60%;
  margin: 3rem auto;
}

@media (max-width: 792px) {
  .width-responsive-with-img {
    width: 100%;
    margin-left: auto;
  }

  .width-responsive-with-img img {
    width: 60%;
    margin-left: auto;
    margin-right: 0;
  }
}

.link {
  color: var(--bg-burgundy);
  transition: color 0.3s ease;
  text-decoration: underline;
}

/* ****************************** NAVBAR ****************************** */

/* ===== Navbar Base ===== */
#mainNavbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  padding: 8px;
  transition:
    top 0.6s ease,
    background-color 0.6s ease;
  background: transparent;
}

#mainNavbar.navbar-scrolled {
  background: #fff;
}

/* Navbar logo + center icon */
.navbar-brand img {
  height: 40px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
@media (max-width: 576px) {
  .navbar-brand img {
    height: 28px;
  }
}

.navbar-center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 40px;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 576px) {
  .navbar-center-logo {
    height: 28px;
  }
}

.nav-item {
  padding: 8px 12px;
}

/* Navbar Links */
.nav-link {
  color: var(--white);
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  padding: 0 8px;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: white;
  transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
  background: var(--white) !important;
}

.nav-link:focus,
.nav-link:hover {
  color: var(--white);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 0.95%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-scrolled .nav-link.active::after,
.navbar-scrolled .nav-link:hover:after {
  background-color: var(--black) !important;
}

/* Scrolled Navbar Colors */
.navbar-scrolled .nav-link {
  color: #000 !important;
}
.navbar-scrolled .nav-link::after {
  background: #000;
}
.navbar-scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0,0.95)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ===== Mobile Overlay Menu ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #fff;
  color: #000;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px;
  z-index: 9999;
}
.mobile-menu.active {
  display: flex;
  animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  height: 48px;
}

.menu-brand {
  height: 28px;
}
.menu-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 36px;
}

.close-btn {
  background: none;
  border: none;
  color: #000;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
}

.menu-links {
  list-style: none;
  padding: 0;
  margin: 4rem 0;
  text-align: left;
}
.menu-links li {
  margin: 1.2rem 0;
}
.menu-links a {
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 3vw, 2rem);
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.menu-links a.active {
  text-decoration: underline;
}

.menu-links a:hover {
  opacity: 0.6;
}
.menu-links a.fs4 {
  font-size: clamp(0.8rem, 2.5vw, 1.5rem);
}

.menu-footer {
  text-align: center;
  font-size: 0.85rem;
}
.menu-footer-logo {
  height: 80px;
  display: block;
  margin: 0.5rem auto 1rem auto;
}

/* ****************************** COMMON SECTIONS ****************************** */
.page-banner {
  padding: 2rem 1rem;
  text-align: center;
  margin: auto;
  font-size: clamp(1rem, 4vw, 2.6rem);
  width: 70%;
  color: var(--bg-burgundy);
  font-family: "ITCGaramondStd-LtCond", serif;
}

@media (max-width: 576px) {
  .page-banner {
    width: 100%;
  }
}

.section-overflow {
  position: relative;
  overflow: visible;
  margin-bottom: clamp(80px, 12vw, 160px);
}

.section-overflow .overflowed-element {
  position: relative;
  top: clamp(60px, 8vw, 100px);
  z-index: 2;
}

.about-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 60vh;
  min-height: 400px;
}

@media (min-width: 992px) {
  .about-image {
    height: 100vh;
    min-height: 700px;
  }
}

/* ****************************** page - All Pages - HERO SECTIONS ****************************** */
.page-hero-section {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
}

.page-hero-section::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.page-hero-section2::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.0) !important;
  z-index: 1;
}

.page-hero-section .text-layer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
}

.page-hero-section .text-layer .text-layer-title {
  font-size: clamp(1rem, 6vw, 1rem);
  margin-bottom: 1rem;
  font-weight: 100;
}

.page-hero-section .text-layer .text-layer-text {
  font-size: clamp(1rem, 5vw, 3rem);
}

.page-hero-section .text-layer .text-layer-text .nav-item {
  font-size: clamp(1rem, 4vw, 2rem);
  padding: 0 8px;
}

/* ****************************** page:HOME ****************************** */

/* section1 */
.home-section1 {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

.home-section1 .video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.home-section1 .video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.7);
  display: block;
}

.home-section1-text-layer {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
  font-size: 2vw;
  letter-spacing: 0.1rem;
  color: white;
  z-index: 2;
}

.home-section1-text-layer2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8vw;
  color: white;
  z-index: 2;
  text-align: center;
  width: 70%;
}

/* section3 */
.home-section3 img {
  display: block;
  height: auto;
}

/* section4 */
.home-section4 {
  background-color: #fff;
  padding: 5rem 0 0 0;
}

@media (max-width: 576px) {
  .info-section {
    padding: 2rem 1rem;
  }
}

/* ****************************** page: ABOUT US  ****************************** */
.about-hero-section {
  background-image: url("../images/about_hero.jpg");
}

/* ****************************** page: MENU  ****************************** */

.active-section {
  display: flex !important;
}
.hidden-section {
  display: none !important;
}

.menu-hero-section {
  background-image: url("../images/menu_hero.jpg");
}

.img-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  border: none;
}

.pdf-wrapper {
  position: relative;
  width: 100%;
  height: 80vh;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
}

.pdf-frame {
  width: 100%;
  height: 100%;
  border: none;
}

#menuTabs.nav-tabs {
  border-bottom: none;
}

#menuTabs.nav-tabs .nav-link {
  text-transform: none;
  color: var(--bg-burgundy);
  border: none;
  text-decoration: underline;
  padding: 0 8px;
}

#menuTabs.nav-tabs .nav-link:hover {
  color: var(--bg-burgundy) !important;
}

#menuTabs.nav-tabs .nav-link.active {
  color: var(--bg-burgundy);
}

/* ****************************** page: BOOK  ****************************** */
.book-hero-section {
  background-color: var(--bg-burgundy);
}

#bookTabs a {
  background-color: transparent;
  border: none;
  color: white;
  text-decoration: underline;
}

#bookTabs a.active {
  background-color: transparent;
  border: none;
  color: var(--bg-burgundy);
}

#bookTabsContent {
  margin: 150px 0;
}

@media (max-width: 992px) {
  #bookTabsContent {
    margin: 50px 0;
  }
}

.booking-widget-container {
  width: 100%;
  margin-left: 0;
  margin-right: auto;
}

.book-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: auto;
  height: 80vh;
}

@media (max-width: 992px) {
  .book-image {
    height: 50vh;
  }

  .booking-widget-container {
    text-align: center;
  }
}

.book-reminder-text {
  margin-top: 20px;
  font-size: clamp(0.65rem, 2vw, 1.5rem);
  font-family: "AGaramondPro-Regular";
}

/* ****************************** page: GALLERY  ****************************** */

.gallery-hero-section {
  background-image: url("../images/gallery_hero.jpg");
}

.gallery-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: auto;
  height: 100%;
  min-height: 500px;
}

.gallery-section {
  overflow: hidden;
  position: relative;
}

.gallery-row > div {
  padding: 0;
}

@media (min-width: 992px) {
  /* Matches 2nd, 3rd, 6th, 7th, 10th, 11th, etc. */
  .gallery-row > div:nth-child(4n + 2),
  .gallery-row > div:nth-child(4n + 3) {
    padding: 10rem;
  }

  .gallery-row > div {
    padding: 0; /* reset others */
  }
}

.load-more-btn {
  border: 1px solid #000;
  padding-bottom: 2px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  color: #000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.load-more-btn:hover {
  background: #000;
  color: #fff;
}

/* ****************************** page: CONTACT  ****************************** */
.contact-hero-section {
  background-color: var(--bg-burgundy);
}

.contact-info-section {
  margin-top: 180px;
}

@media (max-width: 568px) {
  .contact-info-section {
    margin-top: 30px;
  }
}

/* ****************************** FOOTER ****************************** */
footer {
  background-color: var(--behr);
  color: white;
}

footer a {
  color: inherit;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

footer a.active {
  text-decoration: underline;
}

footer .text-layer-text {
  font-size: clamp(1rem, 5vw, 3rem);
}

/* carousel in the footer */
.footer-carousel-wrap {
  width: 100%;
  background: transparent;
  position: relative;
}

.footer-carousel-container {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid var(--bg-burgundy);
}

.footer-carousel-card {
  background: transparent;
  padding: 60px 0 0 40px;
  box-sizing: border-box;
  margin: 0 30px;
  border-right: 1px solid var(--bg-burgundy);
}

.footer-carousel-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100px;
  min-height: 500px;
}

.footer-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  color: #333;
  z-index: 10;
}

.footer-carousel-btn.prev {
  left: 12px;
}
.footer-carousel-btn.next {
  right: 12px;
}

@media (max-width: 992px) {
  .footer-carousel-card img {
    height: 140px;
  }
}
@media (max-width: 768px) {
  .footer-carousel-card img {
    height: 220px;
  }
  .footer-carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
}

/* newsletter subscribe form in the footer */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
  -webkit-text-fill-color: var(--white) !important;
  transition: background-color 9999s ease-in-out 0s;
  background-color: transparent !important;
}

.newsletter-section {
  background: transparent;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

#newsletterForm {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
  justify-content: space-between;
  border-bottom: 2px solid var(--bg-burgundy);
}

#newsletterForm input[type="email"] {
  flex: 1;
  border: none;
  padding: 8px 4px;
  font-size: clamp(0.85rem, 2vw, 2rem);
  color: var(--bg-burgundy);
  outline: none;
  font-family: "AgaramondPro-Italic";
  min-width: 0;
  background: transparent;
}

#newsletterForm input[type="email"]::placeholder {
  color: var(--bg-burgundy);
  font-family: "AGaramondPro-Italic";
}

#newsletterForm button {
  background: none;
  border: none;
  color: var(--bg-burgundy);
  font-family: "AGaramondPro-Italic";
  font-size: clamp(0.85rem, 2vw, 2rem);
  width: auto;
  cursor: pointer;
  padding: 8px 4px;
  font-weight: 600;
  transition: color 0.2s ease;
}

#newsletterForm button:hover {
  color: var(--light-brown);
}

@media (max-width: 576px) {
  .newsletter-section {
    padding: 0 20px;
  }
}

/* footer navigation links */
.footer-links {
  color: black;
  background-color: var(--behr);
  width: 100%;
  max-width: 1220px;
  margin: auto;
  text-align: center;
}

@media (min-width: 1201px) {
  .home-section1-text-layer {
    font-size: 3vw !important;
  }
}
