@font-face {
  font-family: 'Cormorant Garamond';
  src: url('https://fonts.gstatic.com/s/cormorantgaramond/v16/co3bmX5slCNuHLi8bLeY9MK7whWMhyjYqXtKky2F7g.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('https://fonts.gstatic.com/s/cormorantgaramond/v16/co3bmX5slCNuHLi8bLeY9MK7whWMhyjYp3tKky2F7g.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('https://fonts.gstatic.com/s/cormorantgaramond/v16/co3bmX5slCNuHLi8bLeY9MK7whWMhyjYrXtKky2F7g.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw5aXp-p7K4KLg.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw3aXp-p7K4KLg.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-cream: #faf7f4;
  --color-beige: #f5f0eb;
  --color-text: #333333;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-cream);
  line-height: 1.6;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background-color: transparent;
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

nav.non-hero {
  background-color: rgba(0, 0, 0, 0.85);
}

nav.scrolled {
  background-color: rgba(0, 0, 0, 0.85);
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: white;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: white;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Exclude the Book Now button from the hover effect */
.nav-links .book-now-btn::after {
  display: none;
}

/* Navigation Book Now button */
.nav-links .book-now-btn {
  background: transparent;
  border: 1px solid white;
  color: white;
  padding: 0.5rem 1.5rem 0.5rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-links .book-now-btn:hover {
  background: white;
  color: var(--color-text);
  text-shadow: none;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://theversailleshouse.s3.us-east-2.amazonaws.com/lex.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 0 10%;
}

.hero-content {
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  white-space: nowrap;
}

.hero-content p {
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  font-size: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  letter-spacing: 3px;
  font-weight: 300;
}

.hero-content .primary-btn {
  background: white;
  color: var(--color-text);
  border: 2px solid white;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-shadow: none;
  padding: 1rem 3rem;
  display: inline-block;
  font-size: 1rem;
  letter-spacing: 1px;
  text-decoration: none;
}

.hero-content .primary-btn:hover {
  background: transparent;
  color: white;
}

/* Slider Styles */
.getaway {
  padding: 4rem 10%;
  text-align: center;
}

.getaway h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 3rem;
  color: var(--color-text);
  letter-spacing: 2px;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: none;
}

.slide.active {
  opacity: 1;
  display: block;
}

.slide-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(20px);
  transform: scale(1.1);
  opacity: 0.5;
}

.slide-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  z-index: 2;
}

.slider-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

.slider-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider-dot.active {
  background: white;
}

/* Map Styles */
.map-container {
  width: 100%;
  height: 600px;
  margin: 2rem 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-legend {
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 1rem;
  color: var(--color-text);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.map-legend p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.legend-icon {
  font-size: 1.2rem;
}

.map-emoji-icon {
  font-size: 1.5rem;
  width: auto !important;
  height: auto !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* Features Section */
.features {
  padding: 6rem 10%;
  background-color: white;
}

.feature-text {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}

.feature-text h2 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--color-text);
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.feature-text h2::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--color-text);
}

.feature-triplet {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
  background: var(--color-cream);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.feature-image {
  width: 100%;
  height: 300px;
  margin-bottom: 0;
  overflow: hidden;
  position: relative;
}

.feature-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--color-cream), transparent);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.feature-card:hover .feature-image img {
  transform: scale(1.1);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 300;
  margin: 1.5rem 1.5rem 1rem;
  color: var(--color-text);
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 1rem;
}

.feature-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background-color: var(--color-text);
  opacity: 0.3;
}

.feature-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text);
  padding: 0 1.5rem 2rem;
  margin: 0;
}

/* Quote Section */
.quote {
  padding: 6rem 10%;
  text-align: center;
  background-color: var(--color-beige);
}

.quote p {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--color-text);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
}

/* Footer CTA */
.footer-cta {
  padding: 6rem 10%;
  text-align: center;
  background-color: white;
}

.footer-cta h2 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--color-text);
  letter-spacing: 2px;
}

.footer-cta .primary-btn {
  background: var(--color-text);
  color: white;
  border: 2px solid var(--color-text);
  padding: 1rem 3rem;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.footer-cta .primary-btn:hover {
  background: transparent;
  color: var(--color-text);
}

/* Footer */
footer {
  background-color: var(--color-text);
  color: white;
  padding: 4rem 10% 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity 0.3s ease;
}

.footer-nav a:hover {
  opacity: 0.8;
}

/* Footer Book Now button */
.footer-links .book-now-btn {
  background: transparent;
  border: 1px solid white;
  color: white;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links .book-now-btn:hover {
  background: white;
  color: var(--color-text);
  text-shadow: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Contact Page Styles */
.contact-content {
  padding: 120px 10% 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-intro h1 {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--color-text);
  letter-spacing: 2px;
}

.contact-intro p {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-text);
  font-weight: 300;
  letter-spacing: 1px;
}

.contact-intro .primary-btn {
  background-color: var(--color-text);
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid var(--color-text);
  margin-top: 2rem;
  display: inline-block;
}

.contact-intro .primary-btn:hover {
  background: transparent;
  color: var(--color-text);
}

.contact-section {
  background: white;
  border-radius: 8px;
  padding: 3rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-section h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--color-text);
  letter-spacing: 1px;
}

.contact-section h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 300;
  margin: 2rem 0 1rem;
  color: var(--color-text);
  letter-spacing: 1px;
}

.contact-section p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.1rem;
}

.contact-section ul {
  list-style-type: none;
  margin: 0 0 1.5rem 0;
  padding: 0;
}

.contact-section li {
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 1.1rem;
}

.contact-section a {
  color: var(--color-text);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.contact-section a:hover {
  opacity: 0.7;
}

/* Photo Grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.photo-item {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  background-color: var(--color-beige);
}

.photo-item:hover {
  transform: translateY(-5px);
}

.photo-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.photo-item:hover img {
  transform: scale(1.05);
}

.location-link {
  margin-top: 1.5rem;
  font-style: italic;
}

.location-link a {
  color: var(--color-text);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.location-link a:hover {
  opacity: 0.7;
}



/* Reviews Section */
.reviews {
  width: 100%;
  padding: 6rem 10%;
  background-color: var(--color-cream);
  text-align: center;
}

.reviews h2 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 3rem;
  color: var(--color-text);
  letter-spacing: 2px;
  position: relative;
}
P
.reviews h2::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--color-text);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  width: 100%;
}

.review-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-10px);
}

.stars {
  color: #FFD700;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.review-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.reviewer {
  font-weight: 500;
  color: var(--color-text);
  padding-bottom: 25px;
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }
  
  .reviews h2 {
    font-size: 2.5rem;
    padding: 0 1rem;
  }
}

/* Mobile Styles */
@media (max-width: 1200px) {
  .features {
    padding: 5rem 5%;
  }

  .feature-text h2 {
    font-size: 3rem;
  }

  .feature-card h3 {
    font-size: 2rem;
  }
}


.pvm-link-container {
  
  font-size: 12px;
  text-align: center;
  padding: 10px 0;
}

.pvm-credit {
  color: #999999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.pvm-credit:hover {
  color: #666666;
}


@media (max-width: 768px) {
  .hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://theversailleshouse.s3.us-east-2.amazonaws.com/lex-m.webp');
  }

  .hero-content h1 {
    font-size: 2rem;
    white-space: normal;
  }

  .hero-content p {
    font-size: 1.5rem;
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.85);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .slider-container {
    height: 400px;
  }

  .features {
    padding: 4rem 5%;
  }

  .feature-text {
    margin-bottom: 3rem;
  }

  .feature-text h2 {
    font-size: 2.5rem;
  }

  .feature-triplet {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .feature-image {
    height: 250px;
  }

  .feature-card h3 {
    font-size: 1.8rem;
    margin: 1.2rem 1.2rem 0.8rem;
  }

  .feature-card p {
    padding: 0 1.2rem 1.5rem;
    font-size: 1rem;
  }

  .quote p {
    font-size: 1.8rem;
  }

  .footer-cta h2 {
    font-size: 2.5rem;
  }

  .contact-intro h1 {
    font-size: 2.5rem;
  }

  .contact-intro p {
    font-size: 1.3rem;
  }

  .contact-section {
    padding: 2rem;
  }

  .contact-section h2 {
    font-size: 2rem;
  }

  .contact-section h3 {
    font-size: 1.5rem;
  }

  .contact-section li {
    font-size: 1rem;
  }

  .footer-nav {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-logo {
    font-size: 1rem;
    text-align: center;
  }

  .map-container {
    height: 400px;
  }

  .map-legend {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .photo-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }

  #main_body textarea.textarea {
    width:95% !important;
  } 
  #mf_iframe {
    width:106% !important;
  }
}

