/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0b0b0b;
  color: #fff;
}

/* ================= COLORS ================= */
:root {
  --black: #0b0b0b;
  --gold: #d4af37;
  --gold-light: #f5d76e;
  --white: #ffffff;
}

/* ================= TOP HEADER ================= */
.top-header {
  background: var(--black);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

/* Logo */
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.site-logo img {
  height: 60px;
  width: auto;
  display: block;
}

/* Contact Info */
.contacts-info {
  display: flex;
  gap: 30px;
  flex-shrink: 0;
  align-items: center;
}

.infos-box {
  display: flex;
  gap: 10px;
  align-items: center;
}

.infos-box i {
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 8px;
  border-radius: 50%;
}

.infos-box h4 {
  font-size: 0.8rem;
  color: var(--gold-light);
}

.infos-box p {
  font-size: 0.75rem;
  color: #ccc;
}

/* Button */
.appointment-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.appointment-btn:hover {
  transform: translateY(-2px);
}

/* ================= SECOND HEADER ================= */
.second-header {
  background: #000;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.second-header .container {
  max-width: 1300px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.social-icons a:hover {
  background: var(--gold-light);
}

/* Navigation */
.nav-links {
  display: flex;
  gap: 28px;
  flex-shrink: 0;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--gold);
  position: absolute;
  left: 0;
  bottom: -6px;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #111;
  top: 35px;
  min-width: 200px;
  border: 1px solid var(--gold);
  z-index: 1000;
}

.dropdown-content a {
  display: block;
  padding: 10px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Mobile Menu Icon */
.menu-icon {
  display: none; /* hidden by default */
  font-size: 1.6rem;
  color: var(--gold);
  cursor: pointer;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .site-logo img {
    height: 50px;
  }

  .contact-info {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  /* Hide contact info and social icons */
  .contacts-info,
  .social-icons,
  .nav-links {
    display: none;
  }

  /* Show mobile menu icon */
  .menu-icon {
    display: block;
  }

  /* Adjust logo and button sizes */
  .site-logo img {
    height: 45px;
  }

  .appointment-btn {
    padding: 8px 18px;
    font-size: 0.85rem;
  }

  /* Top header container alignment */
  .header-container {
    justify-content: space-between;
  }

  /* Mobile nav links when toggled */
  .nav-links.active {
    display: flex;
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding: 20px;
    z-index: 1000;
  }

  .dropdown-content {
    position: static;
  }

  .second-header .container {
    flex-wrap: wrap; /* allows menu + social icons to wrap on mobile */
  }
}




/* ================= About Page ================= */

/* ================= ABOUT HEADER ================= */
.about-header {
  position: relative;
  height: 50vh;
  background: url("https://i.ibb.co/dnxwdhm/photorealistic-wedding-venue-with-intricate-decor-ornaments.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.about-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.85)
  );
}

.about-header-content {
  position: relative;
  max-width: 800px;
  color: #fff;
}

.about-tagline {
  display: inline-block;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.about-header-content h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 18px;
  font-weight: 700;
}

.about-header-content h1 span {
  color: var(--gold);
}

.about-header-content p {
  font-size: 1rem;
  color: #ddd;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .about-header {
    height: 45vh;
  }
}


/* ================= ABOUT OVERLAP GALLERY ================= */
.about-overlap-gallery {
  background-color: #000;
  position: relative;
  z-index: 5;
  padding: 0 0 100px; /* bottom padding for spacing */
}

.aog-inner {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
}

/* Grid */
.aog-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* Image box */
.aog-img {
  position: relative;
  width: 100%;
  padding-top: 100%; /* square */
  background: #111;
  overflow: visible;
  margin-top: -140px; /* Desktop overlap for all images */
  z-index: 10;
}

.aog-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gold outline */
.aog-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212, 175, 55, 0.35);
  pointer-events: none;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
  .aog-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 per row */
  }

  .aog-img {
    margin-top: 0; /* reset default overlap */
  }

  /* Only first 2 images overlap */
  .aog-img:nth-child(-n+2) {
    margin-top: -100px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .aog-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
  }

  .aog-img {
    margin-top: 0; /* reset default overlap */
  }

  /* Only first 2 images overlap */
  .aog-img:nth-child(-n+2) {
    margin-top: -80px;
  }
}




/* ================= ABOUT US ================= */
.about-section {
  background: #000;
  padding: 100px 20px;
}

.about-inner {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-image {
  width: 100%;
  height: 480px;
  background: #111;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content */
.about-tag {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 14px;
}

.about-content h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-content p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.8;
  max-width: 520px;
}

/* Responsive */
@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image {
    height: 360px;
  }
}





/* ================= MISSION & VISION ================= */
.mission-vision {
  background: #000;
  padding: 120px 20px;
  color: #fff;
}

.mv-inner {
  max-width: 1400px;
  margin: auto;
}

/* Header */
.mv-header {
  max-width: 650px;
  margin-bottom: 70px;
}

.mv-tag {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.85rem;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 14px;
}

.mv-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.2;
}

/* Grid */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}

/* Box */
.mv-box {
  max-width: 520px;
}

.mv-icon {
  width: 60px;
  height: 60px;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mv-icon i {
  font-size: 1.6rem;
  color: var(--gold);
}

.box-tag {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.mv-box h3 {
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.mv-box p {
  color: #ccc;
  line-height: 1.8;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 900px) {
  .mv-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}






.performance-section {
  padding: 100px 20px;
  color: #fff;
}

.performance-inner {
  max-width: 1400px;
  margin: auto;
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.performance-bars {
  flex: 1;
  min-width: 300px;
}

.performance-bars h2 {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 40px;
}

.bar-group {
  margin-bottom: 25px;
}

.bar-group p {
  margin-bottom: 8px;
  font-weight: 500;
  color: #ddd;
}

.bar {
  width: 100%;
  height: 15px;
  background: #222;
  border-radius: 0;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transition: width 1.5s ease;
}

/* Right stats */
.performance-stats {
  flex: 1;
  min-width: 250px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 30px; /* row-gap column-gap */
  justify-items: start;
  align-items: center;
}

.performance-stats .stat h3 {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.performance-stats .stat p {
  font-size: 1rem;
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .performance-inner {
    flex-direction: column;
    gap: 50px;
  }

  .performance-stats {
    grid-template-columns: 1fr;
    gap: 20px 0;
    justify-items: start;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .performance-inner {
    flex-direction: column;
    gap: 50px;
  }

  .performance-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }

  .performance-stats .stat {
    flex: 1 1 45%;
  }
}






/* ================= ABOUT VIDEO ================= */
.about-video {
  background: #000;
  padding: 120px 20px;
}

.video-banner {
  max-width: 1400px;
  margin: auto;
  height: 480px;
  background: url("https://i.ibb.co/dnxwdhm/photorealistic-wedding-venue-with-intricate-decor-ornaments.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Dark overlay */
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.9)
  );
}

/* Center content */
.video-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 20px;
}

.video-tag {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.video-content h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.2;
}

/* Buttons */
.video-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  padding: 14px 34px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-outline {
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
  padding: 14px 34px;
  font-weight: 600;
  cursor: pointer;
}

/* ================= MODAL ================= */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  width: 90%;
  max-width: 900px;
  position: relative;
}

.video-modal-content iframe {
  width: 100%;
  height: 500px;
}

/* Close */
.close-video {
  position: absolute;
  top: -45px;
  right: 0;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .video-banner {
    height: 380px;
  }

  .video-modal-content iframe {
    height: 300px;
  }
}



























/* ================= SERVICES HERO ================= */
.services-hero {
  background: url('https://i.ibb.co/dnxwdhm/photorealistic-wedding-venue-with-intricate-decor-ornaments.jpg') center/cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  text-align: center;
  padding: 0 20px;
}

.services-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
  z-index: 1;
}

.services-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-subtitle {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 15px;
}

.hero-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.1rem;
  color: #ddd;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--gold);
  color: #000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.hero-btn i {
  margin-left: 8px;
}

.hero-btn:hover {
  background: #d4af37cc;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-description {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .services-hero {
    height: 50vh;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }
}




/* ================= HOW WE WORK ================= */
.how-we-work {
  background: #000;
  color: #fff;
  padding: 100px 20px;
}

.work-inner {
  max-width: 1400px;
  margin: auto;
}

.section-title {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 50px;
  text-align: left;
}

.section-title::after {
  content: "";
  width: 70px;
  height: 3px;
  background: var(--gold);
  display: block;
  margin-top: 12px;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.work-step {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.work-icon {
  font-size: 2.5rem;
  color: var(--gold);
  flex-shrink: 0;
}

.work-content .short-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.work-content .step-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.work-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .work-step {
    flex-direction: column;
    gap: 15px;
  }

  .work-icon {
    font-size: 2rem;
  }
}



/* ================= SERVICES LISTING ================= */
.services-listing {
  background: #000;
  padding: 100px 20px;
  color: #fff;
}

.services-inner {
  max-width: 1400px;
  margin: auto;
}

.section-title {
  font-size: 2.4rem;
  margin-bottom: 50px;
  color: var(--gold);
  text-align: left;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr; /* default 1 column on mobile */
  gap: 30px;
}

/* Service item */
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* Icon */
.service-icon {
  font-size: 3rem;
  color: var(--gold);
  flex-shrink: 0;
}

/* Content */
.service-content h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.service-content p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Link */
.service-link {
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.service-link i {
  margin-left: 6px;
}

.service-link:hover {
  color: #d4af37cc;
}

/* ================= RESPONSIVE ================= */

/* Mobile: 2 items per row */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .service-item {
    flex-direction: column; /* vertical layout on mobile */
    align-items: flex-start;
  }
}

/* Tablet: 2 items per row */
@media (min-width: 769px) and (max-width: 1023px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop: 3 items per row */
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}





/* ================= MISSION SECTION ================= */
.mission-section {
  background: #000;
  padding: 100px 20px;
  color: #fff;
}

.mission-inner {
  max-width: 1400px;
  margin: auto;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.mission-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.mission-content .short-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.mission-content .large-title {
  font-size: 2rem;
  margin-bottom: 20px;
}

.mission-content p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 25px;
}

.book-appointment {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.book-appointment i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.book-appointment:hover i {
  transform: translateX(5px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mission-image img {
    border-radius: 0;
  }
}






/* ================= GALLERY PAGE ================= */
.gallery-page {
  background: #0a0a0a;
  color: #fff;
  padding: 100px 20px;
}

.gallery-page .gallery-inner {
  max-width: 1400px;
  margin: auto;
}

/* Event Header */
.gallery-page .event-header {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
}

.gallery-page .event-thumb {
  flex: 0 0 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
}

.gallery-page .event-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-page .event-info {
  flex: 1;
}

.gallery-page .small-title {
  font-size: 0.9rem;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.gallery-page .large-title {
  font-size: 2rem;
  margin-bottom: 10px;
}

.gallery-page .event-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
}

.gallery-page .event-meta span {
  font-size: 0.9rem;
  color: #ccc;
}

.gallery-page .event-meta i {
  margin-right: 5px;
}

.gallery-page .description {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 15px;
}

.gallery-page .social-icons a {
  color: var(--gold);
  margin-right: 12px;
  font-size: 1.2rem;
  transition: 0.3s;
}

.gallery-page .social-icons a:hover {
  color: #d4af37cc;
}

/* Event Images Wrapper */
.gallery-page .event-images-wrapper {
  position: relative;
}

.gallery-page .event-images-track {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  flex-wrap: nowrap;
}

.gallery-page .event-image {
  flex: 0 0 auto;
  width: 300px;      /* desktop size */
  height: 300px;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
}

.gallery-page .event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-page .event-image:hover img {
  transform: scale(1.05);
}

/* Dots */
.gallery-page .images-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.gallery-page .images-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #444;
  cursor: pointer;
  transition: background 0.3s ease;
}

.gallery-page .images-dots span.active {
  background: var(--gold);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
  .gallery-page .event-image {
    width: 220px;
    height: 220px;
  }
}

/* ================= MOBILE FIXES ================= */
@media (max-width: 768px) {
  /* Event header stacked */
  .gallery-page .event-header {
    flex-direction: column;
    align-items: left; /* center profile and info */
    gap: 15px;
  }

  /* Circular profile */
  .gallery-page .event-thumb {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 auto;
  }

  .gallery-page .event-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Event images wrapper: hide overflow, only one image visible */
  .gallery-page .event-images-wrapper {
    overflow: hidden; /* no scroll bar */
    width: 100%;
    position: relative;
  }

  .gallery-page .event-images-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    transition: transform 0.3s ease-in-out;
    justify-content: flex-start; /* align images to left */
  }

  .gallery-page .event-image {
    flex: 0 0 100%; /* take full width of wrapper */
    height: auto;
    aspect-ratio: 1 / 1; /* maintain square shape */
    border-radius: 8px;
  }

  .gallery-page .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Dots */
  .gallery-page .images-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
  }

  .gallery-page .images-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #444;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .gallery-page .images-dots span.active {
    background: var(--gold);
  }
}




















/* ================= CONTACT HERO ================= */
.contact-hero {
  background: url('https://i.ibb.co/0pmrCysj/beautiful-pink-decorated-wedding-serving-with-centerpiece-lightening-candles.jpg') center/cover no-repeat;
  height: 50vh; /* adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  text-align: center;
  padding: 0 20px;
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5); /* dark overlay */
  z-index: 1;
}

.contact-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #ddd;
}

.hero-button {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  background: transparent;
  border: 2px solid var(--gold);
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.hero-button i {
  margin-left: 8px;
}

.hero-button:hover {
  background: var(--gold);
  color: #000;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    height: 60vh;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}





/* ================= CONTACT US SECTION ================= */
.contact-section {
  background: #000;
  color: #fff;
  padding: 100px 20px;
}

.contact-inner {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
}

.contact-image {
  flex: 1;
  min-width: 300px;
}

.contact-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.contact-content {
  flex: 1;
  min-width: 300px;
}

.contact-small-title {
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 10px;
}

.contact-large-title {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.contact-paragraph {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 40px;
}

/* Contact Info Horizontal Below */
.contact-info {
  max-width: 1400px;
  margin: 50px auto 0;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  border-right: 1px solid #444;
  padding-right: 15px;
}

.info-item:last-child {
  border-right: none;
  padding-right: 0;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
}

.info-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 2px;
}

.info-detail {
  font-size: 0.9rem;
  color: #ccc;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .contact-inner {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .contact-inner {
    flex-direction: column;
  }

  .contact-info {
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
  }

  .info-item {
    border-right: none;
    padding-right: 0;
  }
}





/* ================= TALK TO US SECTION ================= */
.talk-section {
  background: #000;
  color: #fff;
  padding: 100px 20px;
}

.talk-inner {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.talk-content {
  flex: 1;
  min-width: 300px;
}

.talk-small-title {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.talk-large-title {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.talk-paragraph {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.talk-points {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.talk-points li {
  margin-bottom: 12px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ccc;
}

.talk-points i {
  color: var(--gold);
}

.talk-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #000;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.talk-button:hover {
  background: #d4af37cc;
}

.talk-image {
  flex: 1;
  min-width: 300px;
}

.talk-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .talk-inner {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .talk-inner {
    flex-direction: column-reverse;
    text-align: left;
  }

  .talk-content, .talk-image {
    min-width: 100%;
  }

  .talk-points li {
    justify-content: left;
  }
}






/* ================= SEND FEEDBACK SECTION ================= */
.feedback-section {
  background: #000;
  color: #fff;
  padding: 100px 20px;
}

.feedback-header {
  max-width: 1400px;
  margin: auto;
  margin-bottom: 50px;
}

.feedback-small-title {
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 10px;
}

.feedback-large-title {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.feedback-paragraph {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
}

/* Banner with image + form */
.feedback-banner {
  max-width: 1400px;
  margin: auto;
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.feedback-image {
  flex: 1;
  min-width: 300px;
}

.feedback-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.feedback-form {
  flex: 1;
  min-width: 300px;
}

.feedback-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feedback-form label {
  font-size: 0.9rem;
  font-weight: 600;
}

.feedback-form input,
.feedback-form textarea {
  padding: 12px 15px;
  border: 1px solid #444;
  border-radius: 6px;
  background: #111;
  color: #fff;
  font-size: 1rem;
}

.feedback-form input::placeholder,
.feedback-form textarea::placeholder {
  color: #777;
}

.feedback-form button {
  background: var(--gold);
  color: #000;
  font-weight: 600;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease;
}

.feedback-form button:hover {
  background: #d4af37cc;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .feedback-banner {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .feedback-banner {
    flex-direction: column;
  }
}







/* ================= BOOKING SECTION ================= */
.booking-section {
  padding: 100px 20px;
  background: #0b0b0b;
  display: flex;
  justify-content: center;
}

/* CARD */
.booking-card {
  width: 100%;
  max-width: 900px;
  background: #111;
  border-radius: 18px;
  padding: 35px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

/* HEADER */
.booking-header h2 {
  font-size: 1.9rem;
  margin-bottom: 5px;
}

.booking-header p {
  color: #bbb;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

/* FORM STRUCTURE */
.form-group {
  margin-bottom: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

/* INPUTS */
.booking-card input,
.booking-card select,
.booking-card textarea {
  width: 100%;
  padding: 14px 16px;
  background: #000;
  border: 1px solid #333;
  border-radius: 12px;
  color: #fff;
  font-size: 0.95rem;
}

.booking-card textarea {
  resize: none;
}

.booking-card input:focus,
.booking-card select:focus,
.booking-card textarea:focus {
  outline: none;
  border-color: var(--gold);
}

/* DIVIDER */
.divider {
  height: 1px;
  background: rgba(212, 175, 55, 0.15);
  margin: 25px 0;
}

/* BUTTON */
.booking-btn {
  width: 100%;
  padding: 15px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.booking-btn:hover {
  transform: translateY(-2px);
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .booking-card {
    padding: 25px 20px;
  }
}



/* ================= FOOTER ================= */
.footer {
  background: #000;
  color: #fff;
  padding: 80px 20px 40px;
  font-family: 'Poppins', sans-serif;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: auto;
}

/* Left: Logo + Description */
.footer-left {
  flex: 1;
  min-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 50px;
  width: auto;
}

.footer-left p {
  color: #ccc;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Right: Social + Newsletter */
.footer-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #333;
  color: #fff;
  transition: 0.3s ease;
}

.social-icons a:hover {
  background: var(--gold);
  color: #000;
}

.newsletter h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--gold);
}

.newsletter form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter input {
  padding: 12px 15px;
  border: none;
  border-radius: 0;
  background: #111;
  color: #fff;
  flex: 1;
  min-width: 200px;
}

.newsletter input:focus {
  outline: 2px solid var(--gold);
}

.newsletter button {
  background: var(--gold);
  color: #000;
  border: none;
  padding: 12px 25px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.newsletter button:hover {
  background: linear-gradient(135deg, var(--gold), #ffd700cc);
}

/* Middle: Navigation Links */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 60px auto 40px;
  max-width: 1400px;
}

.nav-group {
  flex: 1;
  min-width: 160px;
}

.nav-group h5 {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.nav-group a {
  display: block;
  text-decoration: none;
  color: #ccc;
  font-size: 0.875rem;
  margin-bottom: 8px;
  transition: 0.3s ease;
}

.nav-group a:hover {
  color: var(--gold);
}

/* Bottom Copyright */
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.875rem;
  color: #777;
}

.footer-bottom hr {
  border-color: #333;
  margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-nav {
    justify-content: space-between;
  }

  .nav-group {
    flex: 1 1 45%;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .footer-nav {
    flex-direction: column;
    gap: 30px;
  }

  .nav-group {
    flex: 1 1 100%;
  }
}
