/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #fff9f5;
  color: #333;
  line-height: 1.7;
  overflow-x: hidden;
  
}


/* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000000;
  padding: 15px 30px;
  position: relative;
  z-index: 1000;
    position: sticky;
  top: 0;
}

.logo img {
  width: 180px;
}

/* Navigation Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #e0c4f3;
}

/* Hamburger Menu Icon */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    background-color: #000000;
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    display: none;
    text-align: center;
    padding-bottom: 10px;
  }

  .nav-links li {
    padding: 15px 0;
  }

  .nav-links.active {
    display: flex;
  }
    nav ul {
      list-style: none;
      display: flex;
      gap: 30px;
    }
    nav ul li a {
      text-decoration: none;
      font-weight: 600;
      color: #444;
      transition: color 0.3s;
    }
    nav ul li a:hover {
      color: #c78b3f;
    }

}

/* Hero */
.hero {
  height: 100vh;
  position: relative;
  background-image: url(./Assets/gallery/pexels-manjeet-singh-yadav-462762-1162983.jpg);
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .hero{
    background-position: center;
  }
 
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: #ffffff;
  z-index: 10;
  animation: fadeSlideIn 2s ease-in-out;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(221,160,221,0.25);
  animation: floatBubble 15s linear infinite;
}

.bubble:nth-child(n) {
  width: 40px;
  height: 40px;
  animation-duration: calc(8s + (var(--i) * 2s));
  left: calc(10% * var(--i));
  top: 100%;
}

@keyframes floatBubble {
  0% { transform: translateY(0) scale(1); opacity: 0.5; }
  100% { transform: translateY(-1200px) scale(1.5); opacity: 0; }
}

@keyframes fadeSlideIn {
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Section */
.section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-family: 'Playfair Display';
  font-size: 2.5rem;
  color: #c78b3f;
  margin-bottom: 50px;
}

/* About */
.section {
  padding: 80px 50px;
  background: #fffaf7;
  color: #333;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #5e3023;
}

.about-content {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;

  
}

.about-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: justify;
  color: #444;
}

.about-image {
  width: 450px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
    
  }

  .about-image {
    width: 100%;
    max-width: 500px;
   margin-right: 40px;
   
  
   
  }

  .about-text {
    text-align: center;
    padding-right: 45px;
    text-align: justify;
  }
}


@keyframes zoomIn {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Timeline */
.timeline-section {
  padding: 100px 20px;
  background-color: #FFF085;
  position: relative;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: #c78b3f;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

.timeline-entry {
  padding: 20px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-entry.left {
  left: 0;
}

.timeline-entry.right {
  left: 50%;
}

.timeline-entry::before {
  content: ' ';
  position: absolute;
  top: 30px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fff;
  border: 4px solid #c78b3f;
  z-index: 1;
}

.timeline-entry.left::before {
  right: -10px;
}

.timeline-entry.right::before {
  left: -10px;
}

.timeline-entry .content {
  padding: 20px;
  background: white;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  animation: fadeInUp 1s ease forwards;
}

.timeline-entry h4 {
  color: #c78b3f;
  margin-bottom: 10px;
}

/* Section Base */
.section {
  padding: 80px 50px;
  background: #fffaf7;
  color: #333;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #5e3023;
}

/* Story Section Layout */
.story-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  height: auto;
  width: auto;
}

.story-image {
  width: 450px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  
  
  
}

.story-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: justify;
  color: #444;
}

.story-text strong {
  font-weight: 700;
  color: #b04c35;
}

/* Responsive */
@media (max-width: 768px) {
  .story-content {
    width: 100%;
    padding: 0 20px;
    align-items: center;
    
  }

  .story-image {
    width: 115%;
    max-width: 500px;
    
    
  }

  .story-text {
    text-align: center;
    padding-right:10px;
    text-align: justify;
  }
}

.story-section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-in-out;
}

.story-section.visible {
  opacity: 1;
  transform: translateY(0);
}


/* Parallax Glow */
.parallax-glow {
  background: linear-gradient(270deg, #FFF085, #e0b072,#FFF085);
  background-size: 600% 600%;
  animation: gradientShift 10s ease infinite;
  color: #c78b3f;
  text-align: center;
  padding: 80px 20px;
  box-shadow: inset 0 0 50px rgba(255,255,255,0.1);
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Responsive */
@media screen and (max-width: 768px) {
  nav ul {
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    display: none;
    padding: 20px 0;
    text-align: center;
  }

  nav ul.active {
    display: flex;
  }

  .timeline::after {
    left: 20px;
  }

  .timeline-entry {
    width: 100%;
    padding-left: 60px;
    padding-right: 25px;
  }

  .timeline-entry.right {
    left: 0;
  }

  .timeline-entry.left::before,
  .timeline-entry.right::before {
    left: 10px;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
}
