@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --white: #fff;
  --off-white: #f8f8f8;
  --light-beige: #f0ede5;
  --sage: #8a9b8b;
  --sage-dark: #6a7b6b;
  --forest-green: #3a5a40;
  --moss-green: #588157;
  --mint-green: #d4e4d4;
  --text: #333;
  --text-light: #555;
  --gold-accent: #d4a762;
}

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

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background-color: var(--off-white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Lora", serif;
  font-weight: 600;
  line-height: 1.2;
}

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

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--forest-green);
  color: white;
}

.btn-primary:hover {
  background-color: var(--moss-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--gold-accent);
  color: white;
}

.btn-accent:hover {
  background-color: #c49552;
  transform: translateY(-2px);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  color: var(--forest-green);
}

.section-title:after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--gold-accent);
  margin: 15px auto 30px;
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: var(--text-light);
  font-weight: 300;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

header.scrolled .logo {
  color: var(--forest-green);
}

header.scrolled nav ul li a {
  color: var(--text);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  flex-wrap: wrap;
}

.logo {
  font-family: "Lora", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  transition: all 0.3s ease;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  color: var(--white);
}

nav ul li a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--gold-accent);
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

nav ul li a:hover:after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(58, 90, 64, 0.3),
    rgba(58, 90, 64, 0.65)
  );
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  /* padding: 0 20px; */
  background-color: rgba(0, 0, 0, 0.2);
  /* Semi-transparent overlay */
  padding: 2rem;
  border-radius: 8px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.1;

  text-shadow: 0 0 8px rgba(255, 255, 255, 0.7), 0 2px 4px rgba(0, 0, 0, 0.5);
  filter: brightness(1.1);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-btns {
  display: flex;
  gap: 20px;
}

.hero h1,
.hero p {
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(58, 90, 64, 0.8),
    /* Base green shadow */ 0 2px 10px rgba(0, 0, 0, 0.6),
    /* Darker outline */ 0 0 8px rgba(255, 255, 255, 0.3);
  /* White glow */
}

/* About Section */
.about {
  background-color: var(--white);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--forest-green);
}

.about-text p {
  margin-bottom: 20px;
  color: var(--text-light);
}

.about-img {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 8px solid var(--light-beige);
}

.about-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

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

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.amenity {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--mint-green);
  padding: 10px 20px;
  border-radius: 50px;
  color: var(--forest-green);
}

.amenity i {
  color: var(--sage-dark);
  font-size: 1.2rem;
}

/* House Tour */
.house-tour {
  background-color: var(--light-beige);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.room-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid var(--mint-green);
}

.room-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.room-img {
  height: 250px;
  overflow: hidden;
}

.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.room-info {
  padding: 25px;
}

.room-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--forest-green);
}

.room-info p {
  color: var(--text-light);
  margin-bottom: 20px;
}

/* Explore Section */
.explore {
  background-color: var(--white);
}

.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.attraction-card {
  background-color: var(--light-beige);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--mint-green);
}

.attraction-img {
  height: 180px;
}

.attraction-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.attraction-info {
  padding: 20px;
}

.attraction-info h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--forest-green);
}

.attraction-info p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Testimonials */
.testimonials {
  background-color: var(--light-beige);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  border: 1px solid var(--mint-green);
}

.testimonial-card:before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  color: var(--sage);
  opacity: 0.2;
  font-family: serif;
  line-height: 1;
}

.testimonial-content {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  font-style: italic;
  color: var(--text-light);
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h5 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.author-info p {
  font-size: 0.8rem;
  color: var(--text-light);
}

.stars {
  color: var(--gold-accent);
  margin-top: 5px;
}

/* Gallery */
.gallery {
  background-color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-item {
  height: 250px;
  overflow: hidden;
  border-radius: 5px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(58, 90, 64, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover:after {
  opacity: 1;
}

/* Newsletter */
.newsletter {
  background-color: var(--forest-green);
  color: var(--white);
  text-align: center;
}

.newsletter .section-title {
  color: var(--white);
}

.newsletter .section-title:after {
  background-color: var(--gold-accent);
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 15px;
  border-radius: 50px;
  border: none;
  font-family: inherit;
}

.newsletter-form .btn {
  background-color: var(--gold-accent);
  color: var(--forest-green);
}

.newsletter-form .btn:hover {
  background-color: #e0b972;
}

.newsletter p {
  margin-top: 20px;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Blog */
.blog {
  background-color: var(--light-beige);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--mint-green);
}

.blog-img {
  height: 200px;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 25px;
}

.blog-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--forest-green);
}

.blog-content p {
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.read-more {
  display: inline-block;
  color: var(--forest-green);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: var(--moss-green);
}

/* Contact */
.contact {
  background-color: var(--white);
}

.contact-content {
  display: flex;
  gap: 50px;
}

.contact-info {
  flex: 1;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--forest-green);
}

.contact-details {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-item i {
  width: 40px;
  height: 40px;
  background-color: var(--forest-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.contact-form {
  flex: 1;
  background-color: var(--light-beige);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid var(--mint-green);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: var(--forest-green);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.contact-map {
  height: 300px;
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--mint-green);
}

.contact-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
footer {
  background-color: var(--forest-green);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h4:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: var(--gold-accent);
  bottom: -10px;
  left: 0;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #d4e4d4;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--gold-accent);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  color: var(--white);
}

.social-links a:hover {
  background-color: var(--gold-accent);
  transform: translateY(-3px);
  color: var(--forest-green);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #d4e4d4;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
  .about-content,
  .contact-content {
    flex-direction: column;
  }

  .about-img {
    order: -1;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-btns {
    flex-direction: column;
    gap: 15px;
  }

  .hero-btns .btn {
    width: 100%;
    text-align: center;
  }

  .mobile-menu-btn {
    display: block;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1001;
    padding: 80px 30px 30px;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
  }

  nav ul li {
    margin: 0 0 20px 0;
  }

  nav ul li a {
    color: var(--text);
    font-size: 1.1rem;
  }

  .close-menu-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
  }

  .newsletter-form {
    flex-direction: column;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background-color: var(--forest-green);
  /* Add initial background */
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

header.scrolled .logo {
  color: var(--forest-green);
}

header.scrolled nav ul li a {
  color: var(--text);
}

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

.logo {
  /* update*/
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: "Lora", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  transition: all 0.3s ease;
}

/* Logo Image Styling */
.logo-img {
  height: 50px;
  /* Adjust based on your design */
  width: auto;
  transition: transform 0.3s ease;
}

/* Logo Text Styling */
.logo-text {
  font-family: "Lora", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.3s ease;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  color: var(--white);
}

nav ul li a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--gold-accent);
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

nav ul li a:hover:after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1002;
}

.close-menu-btn {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text);
  cursor: pointer;
  z-index: 1002;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1001;
    padding: 80px 30px 30px;
  }

  nav.active {
    right: 0;
  }

  .close-menu-btn {
    display: block;
  }

  nav ul {
    flex-direction: column;
  }

  nav ul li {
    margin: 0 0 20px 0;
  }

  nav ul li a {
    color: var(--text);
    font-size: 1.1rem;
  }

  header.scrolled .mobile-menu-btn {
    color: var(--forest-green);
  }
}

/* Enlarge Image on click*/
/* Lightbox/Modal Styles */
.image-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: auto;
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  z-index: 2001;
}

.close-modal:hover,
.close-modal:focus {
  color: var(--gold-accent);
  text-decoration: none;
  cursor: pointer;
}

.caption {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  color: white;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.7);
}

/* Add cursor pointer to indicate clickable images */
.room-img img {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.room-img img:hover {
  transform: scale(1.02);
}

/* Lightbox/Modal Styles */
.image-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: auto;
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 70vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  z-index: 2001;
}

.close-modal:hover,
.close-modal:focus {
  color: var(--gold-accent);
  text-decoration: none;
  cursor: pointer;
}

.caption {
  position: absolute;
  bottom: 100px;
  left: 0;
  width: 100%;
  text-align: center;
  color: white;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.7);
}

/* .nav-arrow {
    position: absolute;
    top: 50%;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    transform: translateY(-50%);
    padding: 20px;
    z-index: 2001;
    transition: 0.3s;
} */

.nav-arrow {
  position: absolute;
  top: 50%;
  color: white;
  font-size: 40px;
  /* Slightly smaller for mobile */
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  transform: translateY(-50%);
  padding: 15px;
  z-index: 2001;
  transition: 0.3s;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-arrow:hover {
  color: var(--gold-accent);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.thumbnail-container {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  overflow-x: auto;
}

.thumbnail {
  width: 60px;
  height: 60px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s;
}

.thumbnail:hover,
.thumbnail.active {
  border-color: var(--gold-accent);
}

/* Add cursor pointer to indicate clickable images */
.room-img img {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.room-img img:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .nav-arrow {
    font-size: 30px;
    width: 40px;
    height: 40px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.7);
  }

  .prev {
    left: 10px;
  }

  .next {
    right: 10px;
  }

  /* Make modal image slightly smaller on mobile */
  .modal-content {
    max-width: 95%;
    max-height: 60vh;
  }
}

/* === Logo Container === */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  height: auto;
}

/* === Logo Image Styling === */
.logo-img {
  max-height: 40px;
  max-width: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* === Logo Text Styling === */
.logo-text,
.logo span {
  font-family: "Lora", serif;
  font-weight: 600;
  color: var(--white);
  transition: color 0.3s ease, font-size 0.3s ease;
}

.logo-text {
  font-size: 1.3rem;
}

.logo span {
  font-size: 1.2rem;
  white-space: nowrap;
}

/* === Scrolled Header Adjustments === */
header.scrolled {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header.scrolled .logo-img {
  height: 80%;
}

header.scrolled .logo-text,
header.scrolled .logo span {
  color: var(--forest-green);
  font-size: 1.3rem;
}

/* === Image Display and Hover Effects === */
header img,
a.logo img {
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

header img:hover,
a.logo img:hover {
  transform: scale(1.5);
}

/* === Hide Alt Text When Image is Broken === */
.logo-img[alt]:not([src]) {
  visibility: hidden;
}

/* === Responsive: Tablet & Smaller Screens === */
@media (max-width: 768px) {
  .logo {
    height: 40px;
    gap: 8px;
  }

  .logo-img {
    max-height: 35px;
    max-width: 100px;
  }

  .logo-text {
    font-size: 1rem;
    display: none; /* Hide on most mobile views */
  }

  .logo span {
    font-size: 1rem;
  }

  header.scrolled .logo-img {
    height: 35px;
  }

  header.scrolled .logo-text {
    font-size: 1.1rem;
  }

  /* Show text on larger mobile devices in landscape mode */
  @media (min-width: 480px) and (orientation: landscape) {
    .logo-text {
      display: inline;
    }
  }
}

/* === Very Small Devices (≤ 360px) === */
@media (max-width: 360px) {
  .logo {
    height: 35px;
  }

  .logo-img {
    min-width: 35px;
  }

  .logo span {
    font-size: 0.8rem;
  }
}

/* === Accessibility: Visually Hide But Available to Screen Readers === */
@media (max-width: 480px) {
  .logo-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .logo span {
    font-size: 0.9rem;
    color: var(--white);
  }

  .logo {
    gap: 6px;
  }
}

/* === Why Choose Us Section === */
.why-choose-us {
  background-color: var(--white);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background-color: var(--light-beige);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--mint-green);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-icon {
  font-size: 2rem;
  color: var(--forest-green);
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--forest-green);
}

.card p {
  color: var(--text-light);
}

.pricing {
  background-color: var(--light-beige);
}

.pricing-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.pricing-content ul {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.pricing-content li {
  margin-bottom: 10px;
  color: var(--text-light);
}

.pricing-content strong {
  color: var(--forest-green);
}

/* .discounts {
  background-color: var(--white);
}

.discounts-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.discount-card {
  background-color: var(--light-beige);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--mint-green);
}

.discount-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--forest-green);
}

.discount-card p {
  color: var(--text-light);
} */

/* Existing Discounts Section Styling */
.discounts {
  background-color: var(--white);
  padding: 4rem 0;
}

.discounts-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* Enhanced Discount Card Styling */
.discount-card {
  background-color: var(--light-beige);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--mint-green);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Animate a Light Swipe Effect with a Skewed Pseudo-element */
.discount-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%; /* Start outside the card */
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  transform: skewX(-45deg);
  transition: left 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  z-index: 1;
}

/* On Hover: Slide the pseudo-element across and reveal a lifted card */
.discount-card:hover::before {
  left: 100%;
  opacity: 1;
}

/* On Hover: Lift the card and deepen the shadow for a floating effect */
.discount-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

/* Ensure inner text layers above the animated overlay */
.discount-card > * {
  position: relative;
  z-index: 2;
}

/* Maintain your inner elements’ styling */
.discount-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--forest-green);
}

.discount-card p {
  color: var(--text-light);
}

.what-else {
  background-color: var(--light-beige);
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.activity {
  background-color: var(--white);
  padding: 15px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid var(--mint-green);
}

.activity i {
  font-size: 1.2rem;
  color: var(--forest-green);
}

.activity span {
  font-weight: 500;
  color: var(--text-light);
}

/* === Video Tour Section === */
.video-tour {
  background-color: var(--light-beige);
  padding: 80px 0;
}

.video-tour .section-title {
  color: var(--forest-green);
}

.video-tour .section-subtitle {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
  color: var(--text-light);
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(58, 90, 64, 0.15);
  border: 2px solid var(--mint-green);
  background-color: var(--white);
}

.home-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  background-color: var(--white);
  transition: transform 0.3s ease;
  z-index: 1;
}

.home-video:hover {
  transform: scale(1.01);
}

/* Custom Play Button Styling */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2; /* Must be above video */
  background-color: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.play-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.play-icon {
  width: 30px;
  height: 30px;
}

@media (max-width: 480px) {
  .video-wrapper {
    aspect-ratio: 16 / 9;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 8px;
  }

  .home-video {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(58, 90, 64, 0.1);
  }

  .play-button {
    width: 40px;
    height: 40px;
  }

  .play-icon {
    width: 20px;
    height: 20px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
  }
}

/* Optional: Fix for small device video controls */
@media (max-width: 768px) {
  .home-video::-webkit-media-controls {
    display: flex !important;
    transform: scale(0.9);
    transform-origin: center;
  }

  .home-video::-webkit-media-controls-panel {
    font-size: 12px;
  }

  .home-video::-webkit-media-controls-play-button,
  .home-video::-webkit-media-controls-start-playback-button {
    background-size: 24px;
  }
}

/* Base styles for very small screens */
@media (max-width: 480px) {
  /* Header adjustments */
  .header-container {
    padding: 10px 15px;
  }

  .logo-img {
    max-width: 40px;
    height: auto;
  }

  .logo span {
    font-size: 0.9rem;
    margin-left: 8px;
  }

  .mobile-menu-btn {
    padding: 8px;
    font-size: 1.2rem;
  }

  /* Hero section */
  .hero {
    height: 70vh;
    min-height: 400px;
  }

  .hero-content {
    padding: 15px;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .hero-content p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  .hero-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 250px;
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .btn-primary,
  .btn-secondary {
    min-width: 200px;
  }
}

/* Extra small devices (iPhone SE, older Android, etc.) */
@media (max-width: 360px) {
  .header-container {
    padding: 8px 12px;
  }

  .logo-img {
    max-width: 35px;
  }

  .logo span {
    font-size: 0.8rem;
    margin-left: 6px;
  }

  .hero {
    height: 65vh;
    min-height: 350px;
  }

  .hero-content h1 {
    font-size: 1.2rem;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .hero-content p {
    font-size: 0.85rem;
    line-height: 1.35;
    margin-bottom: 15px;
  }

  .btn {
    padding: 10px 16px;
    font-size: 0.85rem;
    min-width: 180px;
  }
}

/* Medium-small screens */
@media (min-width: 361px) and (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.3rem;
  }

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

  .btn {
    padding: 11px 18px;
    font-size: 0.9rem;
  }
}

/* Landscape mode handling */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    height: 100vh;
    min-height: auto;
  }

  .hero-content {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hero-content h1 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .hero-content p {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }

  .btn {
    padding: 8px 15px;
    font-size: 0.8rem;
    min-width: 150px;
  }
}

/* Very narrow screens */
@media (max-width: 320px) {
  .logo span {
    font-size: 0.75rem;
    margin-left: 5px;
  }

  .hero-content h1 {
    font-size: 1.1rem;
    line-height: 1.2;
  }

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

  .btn {
    padding: 8px 12px;
    font-size: 0.8rem;
    min-width: 160px;
  }
}

/* General mobile optimizations */
@media (max-width: 768px) {
  /* Prevent text from being too wide */
  .hero-content h1,
  .hero-content p {
    max-width: 100%;
  }

  /* Ensure proper spacing */
  .hero-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Mobile menu adjustments */
  #mainNav {
    width: 100%;
    max-width: 300px;
  }

  nav ul li a {
    padding: 12px 20px;
    font-size: 1.1rem;
  }
}


/* Hide Google Maps UI buttons */
.google-map iframe {
  border: none;
  box-shadow: none;
}

/* Optional: Reduce padding around map */
.google-map {
  margin: 0;
}