
 /* Reset & Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Roboto', sans-serif;
  background-color: #0f0f0f;
  color: #fff;
}

/* =============== Navbar Styling =============== */
.navbar {
  background: linear-gradient(145deg, #fff, #f0f0f0);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  font-family: 'Segoe UI', sans-serif;
}

.navbar-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

.logo img {
  height: 40px;
  width: 40px;
  margin-right: 10px;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 10px;
}

.nav-links a:hover {
  background: #ffc107;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Hamburger Icon */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #333;
  padding-left: 10px;
}

/* Responsive Controls */
#menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    padding: 20px;
    margin-top: 15px;
    animation: slideDown 0.3s ease forwards;
  }

  #menu-toggle:checked + .hamburger + .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 12px 10px;
    font-size: 1.1rem;
    border-bottom: 1px solid #ddd;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Hero Section */
.hero {
  height: 100vh;
  background: url('assets/farm-bg.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero-content {
  background: rgba(0, 0, 0, 0.6);
  padding: 3rem;
  border-radius: 20px;
  animation: fadeInUp 1s ease-in-out;
}
.hero-title {
  font-size: 3rem;
  color: #f3c623;
  margin-bottom: 1rem;
}
.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.btn3d {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.8rem 2rem;
  background: #f3c623;
  color: #111;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 8px 0 #d1a000;
  transition: 0.2s ease;
}
.btn3d:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(243, 198, 35, 0.4);
}

/* WhatsApp Icon */
.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}
.whatsapp-icon img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .nav-links {
    flex-direction: column;
    gap: 1rem;
  }


  .buttons {
    flex-direction: column;
    align-items: center;
  }
}
  
  .booking-section {
    min-height: 100vh;
    background: linear-gradient(145deg, #121212, #1e1e1e);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }
  
  .booking-container {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
    max-width: 400px;
    width: 100%;
    text-align: center;
  }
  
  .booking-container h2 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
  }
  
  .booking-note {
    font-size: 0.9rem;
    color: #f3c623;
    margin-bottom: 1.5rem;
  }
  
  .booking-container input {
    width: 100%;
    padding: 0.8rem;
    margin: 0.5rem 0;
    background: #2a2a2a;
    border: none;
    border-radius: 8px;
    color: #fff;
    outline: none;
    transition: transform 0.2s;
  }
  
  .booking-container input:focus {
    transform: scale(1.03);
    box-shadow: 0 0 10px #f3c62344;
  }
  
  .confirmation-message {
    margin-top: 1.5rem;
    color: #4caf50;
    font-weight: bold;
  }
  .gallery-section {
    padding: 4rem 2rem;
    background: #111;
    color: white;
    text-align: center;
  }
  
  .gallery-heading {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease, box-shadow 0.3s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  }
  
  .gallery-grid img:hover {
    transform: scale(1.07) rotateX(4deg);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.1);
  }
 
  .contact-section {
    padding: 4rem 2rem;
    background: #111;
    color: white;
    text-align: center;
  }
  
  .contact-container h2,
  .contact-container h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-container p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .map-container {
    margin: 2rem 0;
  }
  .book-now {
    position: relative;
    background: linear-gradient(145deg, #f3c623, #ffd644);
    color: #111;
    font-weight: bold;
    box-shadow: 0 8px 15px rgba(243, 198, 35, 0.3);
    transition: all 0.3s ease;
    animation: pulseGlow 2s infinite;
  }
  
  .book-now:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 0 20px #f3c623, 0 0 40px #f3c62388;
  }
  
  /* Glow Animation */
  @keyframes pulseGlow {
    0% {
      box-shadow: 0 0 10px #f3c62355, 0 0 20px #f3c62322;
    }
    50% {
      box-shadow: 0 0 20px #f3c623aa, 0 0 40px #f3c62366;
    }
    100% {
      box-shadow: 0 0 10px #f3c62355, 0 0 20px #f3c62322;
    }
  }
  
  /* Floating WhatsApp Icon */
.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: bounce 2s infinite;
  }
  
  .whatsapp-icon img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .whatsapp-icon img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.9);
  }
  
  /* Bounce Animation */
  @keyframes bounce {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
 /* === About Section Modern === */
.about-modern-section {
    padding: 6rem 2rem;
    background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #f3c623;
  }
  
  .section-title span {
    color: #fff;
  }
  
  .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.8;
  }
  
  .about-modern-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .about-modern-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  
  .about-modern-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    width: 100%;
    max-width: 500px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 20px rgba(243, 198, 35, 0.08);
  }
  
  .about-modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(243, 198, 35, 0.3);
  }
  
  .about-modern-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f3c623;
  }
  
  .about-modern-card p {
    font-size: 1rem;
    line-height: 1.6;
  }
   
  .videos-heading {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .video-card {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s, box-shadow 0.3s;
  }
  
  .video-card:hover {
    transform: scale(1.05) rotateY(5deg);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.1);
  }
  
  .image-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1rem;
  }
  .video-card img {
    width: 100%;
    height: 100%; /* Fixed height like iframe */
    object-fit: cover;
    display: block;
    border-radius: 15px;
  }
  .videos-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* Wider boxes */
    justify-content: center;
  }
  .video-card {
    position: relative;
    padding-top: 100%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    border-radius: 15px;
  }
  .video-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    object-fit: cover;
  }
  .play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: white;
    text-shadow: 0 0 10px black;
    opacity: 0.8;
    pointer-events: none;
  }
  .videos-section {
    background: #101010;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
  }
  .youtube-btn {
    margin-top: 40px;
    text-align: center;
  }
  
  .youtube-btn a {
    display: inline-block;
    padding: 14px 30px;
    font-size: 1.1rem;
    color: white;
    background: linear-gradient(145deg, #ff0000, #cc0000);
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
    transition: all 0.3s ease;
    font-weight: bold;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
  }
  
  .youtube-btn a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
  }
  
  .youtube-btn a:hover::before {
    left: 100%;
  }
  
  .youtube-btn a:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(255, 0, 0, 0.6);
  }
  .youtube-btn a i {
    margin-right: 10px;
    font-size: 1.3rem;
    vertical-align: middle;
  }
  .tilt-card {
    width: 300px;
    height: 200px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    padding: 20px;
    transition: transform 0.2s ease;
  }
  .floating-goat {
    width: 120px;
    animation: float 3s ease-in-out infinite;
    position: absolute;
    bottom: 30px;
    right: 30px;
  }
  @keyframes float {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-15px);
    }
  }
  