.recent-weddings {
    background: #0b0b0b;
    padding: 60px 80px;
  }
  
  .recent-weddings h2 {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .wedding-gallery {
    display: flex;
    gap: 30px;
  }
  
  .gallery-item {
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  
  .gallery-item img:hover {
    transform: scale(1.08);
  }
  .wedding-packages {
    padding: 80px 60px;
    background: #fff;
    text-align: center;
  }
  
  .wedding-packages h2 {
    font-size: 38px;
    color: #f4a340;
    font-family: "Georgia", serif;
    margin-bottom: 20px;
  }
  
  .package-desc {
    max-width: 900px;
    margin: 0 auto 40px;
    font-size: 15px;
    line-height: 1.8;
    color: #333;
  }
  
  .package-box {
    border: 2px solid #777;
    padding: 25px;
  }
  
  .package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .package-card img {
    width: 100%;
    height: auto;
    display: block;
  }
  .why-choose-us {
    padding: 80px 10%;
    background: #ffffff;
  }
  
  .why-container {
    display: flex;
    align-items: flex-start;
    gap: 60px;
  }
  
  /* LEFT SIDE */
  .why-text {
    flex: 1.2;
  }
  
  .why-text h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #000;
  }
  
  .why-text ul {
    padding-left: 20px;
  }
  
  .why-text ul li {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
  }
  
  /* RIGHT SIDE IMAGE */
  .why-image {
    flex: 1;
  }
  
  .why-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }
  
  /* RESPONSIVE */
  @media (max-width: 900px) {
    .why-container {
      flex-direction: column;
    }
  
    .why-image img {
      max-width: 100%;
    }
  }
  /* Footer */
.footer {
    background: #000;
    padding: 60px 40px;
    color: #ccc;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
  }
  
  .footer-box h3 {
    color: #f5a623;
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .footer-line {
    display: block;
    width: 40px;
    height: 2px;
    background: #f5a623;
    margin-bottom: 20px;
  }
  
  .footer-box p {
    font-size: 14px;
    line-height: 1.7;
    color: #bdbdbd;
  }
  
  .footer-box ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-box ul li {
    margin-bottom: 12px;
  }
  
  .footer-box ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
  }
  
  .footer-box ul li a:hover {
    color: #f5a623;
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  }
  /* ================= GENERAL ================= */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #000;
  color: #fff;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  background: #0b0016; /* deep purple/black */
  position: relative;
}

.logo img {
  height: 55px;
  width: 55px;
  border-radius: 50%;
  object-fit: cover;
}

/* Menu links (desktop) */
.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}

.nav-links li a:hover {
  color: #f5a623;
}

/* Hamburger icon */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #f5a623;
  cursor: pointer;
}

/* Mobile View */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  #navMenu {
    display: none;
    width: 100%;
  }

  #navMenu.active {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    background: #0b0220; /* deep purple */
    padding: 20px;
  }

  .nav-links li {
    margin: 10px 0;
  }
}



/* ================= HERO ================= */
.page-hero {
  text-align: center;
  padding: 60px 20px;
}

.page-hero h1 {
  color: #f5a623;
  font-size: 36px;
}

.hero-quote {
  margin-top: 10px;
  font-style: italic;
}

.zigzag {
  width: 200px;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    #f5a623,
    #f5a623 10px,
    transparent 10px,
    transparent 20px
  );
  margin: 25px auto;
}

/* ================= CAMP CONTENT ================= */
.camp-content {
  display: flex;
  gap: 50px;
  padding: 60px;
  align-items: center;
}

.camp-text {
  width: 55%;
}

.camp-points {
  margin-top: 20px;
}

.camp-points li {
  margin-bottom: 10px;
}

.camp-cta {
  margin-top: 30px;
}

.call-btn {
  display: inline-block;
  background: #f5a623;
  color: #000;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 10px;
}

.camp-media {
  width: 45%;
  display: flex;
  gap: 15px;
}

.camp-media img {
  width: 100%;
  max-width: 32%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #f5a623;
}

/* ================= HIGHLIGHTS ================= */
.camp-highlights {
  padding: 60px;
  text-align: center;
}

.camp-highlights h2 {
  color: #f5a623;
  margin-bottom: 30px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.highlight-box {
  border: 1px solid #f5a623;
  padding: 20px;
  border-radius: 8px;
}

/* ================= FOOTER ================= */
.footer {
  background: #000;
  padding: 50px 60px;
  border-top: 1px solid #333;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-box h3 {
  color: #f5a623;
  margin-bottom: 15px;
}

.footer-box a {
  color: #fff;
  text-decoration: none;
}
/* PHOTO GALLERY SECTION - DARK PURPLE THEME */
.photo-gallery {
  background: linear-gradient(135deg, #1b0b2e, #2a0f45);
  padding: 90px 0;
}

.gallery-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.gallery-title {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 8px;
  color: #f5c16c; /* gold accent like homepage */
  margin-bottom: 45px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

/* Responsive */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-title {
    text-align: center;
  }
}
/* Founder Section */
.founder-section {
  background: #2b0a3d; /* deep purple */
  padding: 80px 10%;
}

.founder-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* Text Area */
.founder-text {
  flex: 1;
  color: #ffffff;
}

.founder-name {
  font-size: 32px;
  color: #d6b16c; /* golden tone */
  margin-bottom: 8px;
}

.founder-role {
  display: block;
  font-size: 15px;
  letter-spacing: 1px;
  color: #cccccc;
  margin-bottom: 25px;
}

.founder-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #e5e5e5;
  max-width: 600px;
}

/* Image Area */
.founder-image {
  flex: 1;
  text-align: right;
}

.founder-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* Responsive */
@media (max-width: 900px) {
  .founder-container {
    flex-direction: column;
    text-align: center;
  }

  .founder-image {
    text-align: center;
  }
}
/* Wedding Packages Section */
.wedding-packages {
  background-color: #2b0033; /* deep purple */
  padding: 80px 0;
}

.wedding-packages .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  color: #f4a340;
  font-size: 36px;
  margin-bottom: 15px;
  font-family: 'Georgia', serif;
}

.section-desc {
  color: #ddd;
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

/* Package grid */
.package-grid {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.package-card {
  background: #fff;
  padding: 10px;
  border: 3px solid #111;
  width: 32%;
  min-width: 280px;
}

.package-card img {
  width: 100%;
  height: auto;
  display: block;
}
/* LOCATION SECTION */
.location-section {
  background-color: #1b0b2e; /* deep purple */
  padding: 80px 0;
}

.location-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* LEFT TEXT */
.location-content {
  flex: 1;
  color: #ffffff;
}

.location-content h2 {
  font-size: 36px;
  color: #d4a24c; /* golden */
  margin-bottom: 20px;
}

.location-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #e0e0e0;
}

/* MAP */
.location-map {
  flex: 1;
}

.location-map iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 12px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .location-container {
    flex-direction: column;
  }

  .location-map iframe {
    height: 300px;
  }
}
/* Footer */
.footer {
  background: #1a0b2e; /* deep purple */
  color: #ffffff;
  padding: 60px 8% 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.footer-box h3 {
  color: #f5a623;
  font-size: 20px;
  margin-bottom: 8px;
}

.footer-line {
  display: block;
  width: 35px;
  height: 2px;
  background: #f5a623;
  margin-bottom: 20px;
}

.footer-box p {
  font-size: 14px;
  line-height: 1.7;
  color: #ddd;
}

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

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

.footer-box ul li a {
  color: #ddd;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #f5a623;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #bbb;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-line {
    margin: 0 auto 20px;
  }
}
/* Wedding Packages Section */
.wedding-packages {
  background-color: #2b0033; /* deep purple */
  padding: 80px 0;
}

.wedding-packages .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  color: #f4a340;
  font-size: 36px;
  margin-bottom: 15px;
  font-family: 'Georgia', serif;
}

.section-desc {
  color: #ddd;
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

/* Package grid */
.package-grid {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.package-card {
  background: #fff;
  padding: 10px;
  border: 3px solid #111;
  width: 32%;
  min-width: 280px;
}

.package-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* NAVBAR LOGO FIX */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;        /* adjust if needed */
  width: 60px;
  object-fit: contain;
  border-radius: 50%;
  background: transparent; /* important */
}
/* Social sidebar */
.social-sidebar {
  position: fixed;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

/* Icon box */
.social-icon {
  width: 45px;
  height: 45px;
  background: #14002b; /* deep purple */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

/* Icon image */
.social-icon img {
  width: 22px;
  height: 22px;
}

/* Hover effect */
.social-icon:hover {
  transform: scale(1.1);
}

/* Platform colors on hover */
.social-icon.whatsapp:hover { background: #25D366; }
.social-icon.facebook:hover { background: #1877F2; }
.social-icon.instagram:hover { background: #E4405F; }
.social-icon.youtube:hover { background: #FF0000; }

/* Mobile view adjustment */
@media (max-width: 768px) {
  .social-sidebar {
    left: 8px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }

  .social-icon img {
    width: 20px;
    height: 20px;
  }
}
/* ===== AD SLIDER ===== */
.ad-slider {
  width: 100%;
  overflow: hidden;
  background: #1a062e; /* deep purple */
  padding: 10px 0;
}

.slider-track {
  display: flex;
  width: 300%;
  animation: slideMove 48s infinite;
}

.slide {
  width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
}

/* Text on image */
.slide-text {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}

.slide-text h3 {
  font-size: 22px;
  color: #ffb300;
  margin-bottom: 5px;
}

.slide-text p {
  font-size: 14px;
}

/* Animation */
@keyframes slideMove {
  0% { transform: translateX(0%); }
  33% { transform: translateX(-100%); }
  66% { transform: translateX(-200%); }
  100% { transform: translateX(0%); }
}

/* Mobile optimization */
@media (max-width: 768px) {
  .slide img {
    height: 140px;
  }

  .slide-text h3 {
    font-size: 18px;
  }

  .slide-text p {
    font-size: 12px;
  }
}
@media (max-width: 768px) {

  .community-container {
    flex-direction: column;
    text-align: center;
  }

  .community-image img {
    max-width: 100%;
    height: auto;
  }

  .community-content h2 {
    font-size: 28px;
  }

  .community-content p {
    font-size: 15px;
    line-height: 1.7;
  }

  .btn {
    display: inline-block;
    margin-top: 20px;
  }
}


