/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    color: #2c1810;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(44, 24, 16, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(44, 24, 16, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #d4af37;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-logo span {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 300;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #d4af37;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    padding: 0 5%;
    overflow: hidden; /* Ensure video doesn't overflow */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Equivalent to background-size: cover */
    z-index: 1; /* Place video behind content and overlay */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 24, 16, 0.4); /* Same overlay as before */
    z-index: 2; /* Place overlay above video */
}

.hero-inner {
    position: relative;
    z-index: 3; /* Ensure content is above video and overlay */
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-right: 20px;
    text-align: left;
    margin-top: 164px;
}

.banner-form {
    flex: 1;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Rest of your existing CSS remains unchanged */
.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-button {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
    background: linear-gradient(135deg, #b8860b, #d4af37);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 3; /* Ensure scroll indicator is above video and overlay */
}

.banner-form .form-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: white;
    text-align: center;
    font-family: 'Playfair Display', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.banner-form input,
.banner-form select,
.banner-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: #FFFFFF; /* White text for better contrast */
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.banner-form input::placeholder,
.banner-form textarea::placeholder {
    color: #FFFFFF; /* White placeholder text */
    opacity: 0.7; /* Slightly lower opacity for placeholders to distinguish them */
}
.banner-form button {
    width: 100%;
    background: var(--leaf-green);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.banner-form button:hover {
    background: var(--forest-green);
    transform: translateY(-2px);
}

/* Media Queries */
@media (max-width: 600px) {
  .hero-inner {
    flex-direction: column;
    align-items: center;
    padding: 100px 20px 40px;
    gap: 20px;
  }

  .hero-content {
    text-align: center;
    padding-right: 0;
    max-width: 100%;
    margin-top: 0;
    z-index: 3;
  }

  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }

  .banner-form {
    max-width: 100%;
    padding: 20px;
    margin: 0 auto 60px;
    z-index: 3;
  }

  .banner-form input,
  .banner-form select,
  .banner-form textarea,
  .banner-form button {
    font-size: 0.95rem;
    padding: 10px;
  }

  .form-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 135vh;
  }

  .banner-form {
    width: 100%;
    margin-top: 20px;
  }

  .hero-content {
    padding: 0 10px;
    text-align: center;
  }

  .hero-video {
    object-fit: cover; /* Ensure video covers the section */
  }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Home Content */
.home-content {
    padding: 5rem 0;
    background: #faf8f5;
}

.intro-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.stats-section {
    margin-top: 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Why Choose Us Section */
.why-choose {
    padding: 5rem 0;
    background: #faf8f5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c1810;
}

.feature-card p {
    color: #555;
    line-height: 1.6;
}

/* Spaces Section */
.spaces {
    padding: 5rem 0;
    background: white;
}

.spaces-grid {
    display: grid;
    gap: 3rem;
}

.space-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: #faf8f5;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.space-card:nth-child(even) {
    direction: rtl;
}

.space-card:nth-child(even) .space-content {
    direction: ltr;
}

.space-image {
    overflow: hidden;
    border-radius: 15px;
}

.space-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.space-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c1810;
}

.space-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #2c1810;
    color: white;
}

.contact .section-title {
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #d4af37;
}

.contact-details p {
    line-height: 1.6;
    color: #ccc;
}

.contact-image {
    overflow: hidden;
    border-radius: 15px;
}

.contact-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* Layout helper (optional) */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Footer */
.footer {
  background: #1a0f0a;
  color: #fff;
  padding: 3rem 0 1rem;
}

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

/* Logo */
.footer-logo-img {
  height: 100px;
  width: auto;
  display: block;
}

/* Links */
.footer-links h4,
.footer-social h4 {
  margin-bottom: 1rem;
  color: #d4af37;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #d4af37;
}

/* Social */
.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #333;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.2s ease, background 0.3s ease;
  text-decoration: none;
}

.social-links a:hover,
.social-links a:focus {
  background: #d4af37;
  transform: translateY(-2px);
}

/* Bottom strip */
.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #333;
  color: #ccc;
  font-size: 0.95rem;
}

/* Small tweaks */
.footer a:focus-visible {
  outline: 2px dashed #d4af37;
  outline-offset: 3px;
}
.footer-contact h4 {
  margin-bottom: 1rem;
  color: #d4af37;
}

.footer-contact a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #d4af37;
}




/* Section Heading */
.gallery-heading {
  color: #333;
  padding: 20px;
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease-out;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Fallback for smaller screens */
  gap: 20px;
  padding: 40px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Desktop View (3 images per row) */
@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr); /* Exactly 3 columns */
  }
}

/* Tablet View (2 images per row) */
@media (max-width: 1023px) and (min-width: 769px) {
  .gallery-heading {
    font-size: 2.5rem;
    padding: 15px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
    gap: 15px;
    padding: 20px;
  }

  .gallery-grid img {
    height: 180px;
  }
}

/* Mobile View (1 image per row) */
@media (max-width: 768px) {
  .gallery-heading {
    font-size: 2rem;
    padding: 10px;
  }

  .gallery-grid {
    grid-template-columns: 1fr; /* Single column for mobile */
    gap: 10px;
    padding: 10px;
  }

  .gallery-grid img {
    height: 150px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(44, 24, 16, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
 
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .space-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
   
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .space-card {
        padding: 2rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
}


.intro-ccta {
    display: block;
    width: 160px; /* Set small width */
    margin: 20px auto; /* Center horizontally */
    padding: 8px 0; /* Adjust padding for smaller width */
    background: linear-gradient(to right,#311e09,#dcb9a9);
    color: white;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}


.parent-container {
    text-align: center;
     justify-content: center;
}
.intro-ccta:hover {
   background: linear-gradient(to right,#f1c0aa,#2b1908);
    transform: translateY(-2px) scale(1.05);
}

 .whatsapp-btn, .phone-btn {
      position: fixed;
      width: 50px;
      height: 50px;
      right: 15px; /* Same right position for both */
      background-color: #25D366; /* WhatsApp green */
      color: #FFF;
      border-radius: 50px;
      text-align: center;
      font-size: 30px;
      box-shadow: 2px 2px 3px #999;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .whatsapp-btn {
      bottom: 100px; /* Higher position */
    }

    .phone-btn {
      bottom: 40px; /* Lower position, below WhatsApp */
      background-color: #007BFF; /* Phone button blue */
    }

    .whatsapp-btn:hover, .phone-btn:hover {
      transform: scale(1.1); /* Slight zoom on hover */
      opacity: 0.9; /* Slight fade on hover */
    }

    .whatsapp-btn i, .phone-btn i {
      margin: 0;
    }

    /* Fallback text if icons don't load */
    .whatsapp-btn::after, .phone-btn::after {
      display: none;
      content: attr(data-fallback);
      font-size: 16px;
      font-family: Arial, sans-serif;
    }

    /* Show fallback text if Font Awesome fails */
    .whatsapp-btn.no-icon::after, .phone-btn.no-icon::after {
      display: block;
    }


    .phone-list {
  display: flex;
  flex-wrap: wrap; /* allows wrapping on smaller screens */
  gap: 15px; /* spacing between numbers */
}
    .phone-list a {
  text-decoration: none;
  color: whitesmoke; /* customize color */
  font-weight: 500;
}

.phone-list a:hover {
  text-decoration: underline;
}
 
/* Blog Section */
.blog {
    padding: 40px 0;
    background: #FFF8E7; /* Cream background for warmth */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #2C2C2C;
    text-align: center;
    margin-bottom: 40px;
}

.blog-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.blog-card {
    flex: 0 1 calc(50% - 20px); /* 2 columns, accounting for gap */
    max-width: 500px;
    border: 1px solid #8B5E3C; /* Deep gold border */
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease, background 0.3s ease;
}

.blog-card:hover {
    transform: scale(1.03);
    background: #F9E4B7; /* Light gold on hover */
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #2C2C2C;
    margin: 0 0 10px;
}

.blog-content p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin: 0 0 15px;
}

.blog-link {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #8B5E3C;
    text-decoration: none;
    font-weight: 500;
}

.blog-link:hover {
    color: #A67C00; /* Brighter gold on hover */
}

.intro-ccta {
    display: block;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #fff;
    background: #8B5E3C;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin: 30px auto;
    width: fit-content;
}

.intro-ccta:hover {
    background: #A67C00;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-card {
        flex: 0 1 100%; /* Single column on smaller screens */
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }

    .blog-image {
        height: 160px;
    }

    .blog-content h3 {
        font-size: 18px;
    }

    .blog-content p {
        font-size: 13px;
    }
}
