* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  height: 110px;
}

.nav-area {
  display: flex;
  align-items: center;
 margin-left: auto;
}

.nav {
  display: flex;
  gap: 40px;
}

.donate-container {
  margin-left: auto; /* pushes Donate Now to the far right */
}

.logo {
  max-height: 80px;
  margin-left: 20px;
}

.nav-link {
  position: relative;
  font-size: 16px;
  color: #222;
  text-decoration: none;
  padding: 10px 10px;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
  border-radius: 999px; /* Rounded corners for link */
  margin: 0 5px; /* Slight visual separation */
}

/* Black slide from bottom */
.nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: black;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease-in-out;
  z-index: -1;
    border-radius: 999px;
}

/* Hover Effect */
.nav-link:hover::before {
  transform: scaleY(1);
}

.nav-link:hover {
  color: white;
  text-decoration: underline;
}

/* Active link (Janmashtami) */
.nav-link.active {
  color: white;
}

.nav-link.active::before {
  transform: scaleY(1);
}

.donate-btn {
  background: #f59e0b; /* orange-500 */
  color: white;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}
.right-nav-container {
  display: flex;
  align-items: center;
  margin-right: 40px;
  gap: 20px; /* Equal spacing between nav links and donate button */
}

.video-banner {
  background-color: #f5e4d0;
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 100%;
}

.banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-image {
  max-width: 100%;
  height: auto;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.banner-image.visible {
  opacity: 1;
  transform: translateY(0);
}


/* Camp Details */
.camp-details {
    background: #f8f9fa;
    padding: 40px 0;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.date-info, .location-info {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.date-info:hover, .location-info:hover {
    transform: translateY(-5px);
}

.calendar-icon, .location-icon {
    font-size: 2rem;
}

/* Camp Overview */
.camp-overview {
    padding: 80px 0;
    background: linear-gradient(45deg, #fff5f5, #f0f8ff);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.overview-image img {
    width: 100%;
    border-radius: 20px;
    margin-right: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.overview-image img:hover {
    transform: scale(1.05);
}

.overview-text h3 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 600;
}

.overview-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
}

/* Takeaways */
.takeaways {
    padding: 80px 0;
    background: white;
}

.takeaways h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 600;
}

.takeaways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.takeaway-item {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.takeaway-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.takeaway-item h4 {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Highlights */
.highlights {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 80px 0;
}

.highlights h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 600;
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.highlight-column ul {
    list-style: none;
}

.highlight-column li {
    background: rgba(255,255,255,0.1);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 10px;
    font-size: 1.1rem;
    transition: background 0.3s ease;
    border-left: 4px solid #ff6b35;
}

.highlight-column li:hover {
    background: rgba(255,255,255,0.2);
}

.highlight-column li::before {
    content: '✨';
    margin-right: 10px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 600;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
}

.faded {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}


.testimonial h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.testimonial h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 400;
}


.testimonial p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 50px 0;
    text-align: center;
}

.footer h3 {
    font-size: 2rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .details-grid,
    .overview-content,
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .banner-content h2 {
        font-size: 2rem;
    }
    
    .overview-text h3,
    .takeaways h3,
    .highlights h3,
    .testimonials h3 {
        font-size: 2rem;
    }
    
    .takeaways-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .banner-content h2 {
        font-size: 1.5rem;
    }
}

* {box-sizing:border-box}

.slideshow {
    padding: 80px 0;
 background: linear-gradient(135deg, white,wheat);
    color: white;
    text-align: center;
}

.slideshow h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: black;
    font-weight: 600;
} 

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
}
.mySlides img {
  width: 100%;
  height: auto;
  max-height: 100vh;
  object-fit: cover;
  border-radius: 10px;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}


/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
.registration-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.registration-form iframe {
  width: 100%;
  max-width: 800px;
  height: 900px;
  border: none;
}

.registration-form h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 600;
}