/* ========================================
   2️⃣ ROOT VARIABLES & RESET
======================================== */
:root {
  --cream: rgb(211, 211, 211); /* page mid background */
  --warm: #ead8c6; /* header beige */
  --navy: #0f2430; /* dark footer */
  --accent: #c96a19; /* orange CTA */
  --muted: #6b6b6b;
  --card: #ffffff;
  --trans: transparent;
  --gold: #c9a45c;
  --gold-soft: rgba(201, 164, 92, 0.35);
  --cream: #f6f1ea;
  --glass: rgba(255, 255, 255, 0.06);
}

* {
  box-sizing: border-box;
  font-family: "Bodoni Moda", serif;
  text-transform: capitalize;
  letter-spacing: 0;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  background-color: var(--cream);
}

/* ========================================
   3️⃣ BASIC ELEMENT STYLES
======================================== */
h1 {
  font-size: 50px;
  font-weight: 100;
  color: #000000ba;
}

a {
  text-decoration: none;
  color: inherit;
}

::selection {
  background-color: var(--cream);
  color: #000;
}

::-moz-selection {
  background-color: var(--cream);
  color: #000;
}

.hero .title h2 {
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* ========================================
   4️⃣ LAYOUT & STRUCTURE
======================================== */
.section,
.portfolio,
.cta-wrap,
.contact-hero {
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

/* ========================================
   ⚡ OPTIMIZED LOADER STYLES 
======================================== */
#loader {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #000;
  color: #fff;
  font-size: 4rem;
  letter-spacing: 10px;
  z-index: 9999;
  will-change: opacity, transform;
}

.letters {
  display: flex;
  gap: 0.5rem;
}

.letter {
  opacity: 0;
  transform: scale(0);
  animation: zoomIn 0.6s forwards ease-out;
}

.letter:nth-child(1) {
  animation-delay: 0s;
}
.letter:nth-child(2) {
  animation-delay: 0.5s;
}
.letter:nth-child(3) {
  animation-delay: 1s;
}

@keyframes zoomIn {
  to {
    opacity: 1;
    transform: scale(1.2);
  }
}

.underline {
  position: relative;
  width: 160px;
  height: 4px;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  opacity: 0;
  animation: showUnderline 0.3s ease-in forwards;
  animation-delay: 1.6s;
}

.underline::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, #fff, transparent);
  animation: shine 1s linear infinite;
  animation-delay: 1.7s;
}

@keyframes showUnderline {
  to {
    opacity: 1;
  }
}

@keyframes shine {
  from {
    left: -50%;
  }
  to {
    left: 100%;
  }
}

/* Smooth fade-out */
#loader.fade-out {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

/* ========================================
   6️⃣ HEADER / NAVIGATION
======================================== */
.topbar {
  background: var(--warm);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.brand {
  font-family: "Bodoni Moda", serif;
  font-weight: 700;
  font-size: 34px;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: #161616;
  padding: 6px 2px;
}

header.topbar a:hover {
  color: maroon;
  border-bottom: 2px solid maroon;
}

.nav .cta {
  background: #6d7b90;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
}

.nav .icon {
  font-size: 18px;
  padding-right: 6px;
}

.nav-brand {
  font-family: "Bodoni Moda", serif;
  font-weight: 700;
  font-size: 34px;
  margin-right: 80%;
}

.menu-toggle {
  display: none;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1100;
}

.hero-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.hero-buttons .icon img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.hero-buttons .icon:hover img {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

/* ========================================
   7️⃣ RESPONSIVE DESIGN
======================================== */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--warm);
    display: none;
    flex-direction: column;
    padding: 10px 20px 20px;
    gap: 20px;
    z-index: 1000;
  }
  .nav.open {
    display: flex;
  }
  .nav-brand {
    display: flex;
  }
}

@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }
  .nav-brand {
    display: none;
  }
}

/* ---------------- HERO ---------------- */
/* ---------------- HERO ---------------- */
.hero {
  /* CHANGED: standardized to lowercase .jpg */
  background-image: url("/assets/2.jpg");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  animation: bgCycle 20s infinite linear;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  text-align: center;
  padding: 0 20px;
  overflow: hidden;
}

@keyframes bgCycle {
  0% {
    background-image: url("/assets/11.jpeg"); /* Changed to lowercase */
  }
  25% {
    background-image: url("/assets/12.jpeg"); /* Already lowercase, kept consistent */
  }
  50% {
    background-image: url("/assets/13.jpeg"); /* Changed to lowercase */
  }
  75% {
    background-image: url("/assets/14.jpeg"); /* Changed to lowercase */
  }
  100% {
    background-image: url("/assets/15.jpeg"); /* Changed to lowercase */
  }
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  animation: bgSlide 24s infinite;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.hero::before {
  background-image: linear-gradient(rgba(7, 7, 7, 0.45), rgba(7, 7, 7, 0.45)),
    url("/assets/1.jpg"); /* Changed to lowercase */
  animation-delay: 0s;
}

.hero::after {
  background-image: linear-gradient(rgba(7, 7, 7, 0.45), rgba(7, 7, 7, 0.45)),
    url("/assets/2.jpg"); /* Changed to lowercase - this was likely breaking image 2 */
  animation-delay: 12s;
}

/* Rest of your CSS remains the same... */
@keyframes bgSlide {
  0%,
  45% {
    opacity: 1;
  }
  50%,
  95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* ---------------- TEXT STYLES ---------------- */
.hero .subtitle {
  font-family: "Bodoni Moda", serif;
  letter-spacing: 3px;
  font-size: 22px;
  margin-bottom: 28px;
}

h1,
h2.title,
.hero .title {
  font-family: "Bodoni Moda", serif;
  font-weight: 100;
  text-transform: capitalize;
  letter-spacing: 5px;
  line-height: 1;
  text-shadow: rgba(255, 255, 255, 0.25) 0 0 6px;
  text-align: center;
  margin: 0 auto;
}

.hero .title {
  color: #fff;
  opacity: 0.9;
  margin-top: 50vh;
}

h1 span,
h2.title span,
.hero .title span {
  display: inline-block;
  white-space: nowrap;
}

h1 span::first-letter,
h2.title span::first-letter,
.hero .title span::first-letter {
  font-size: 1.3em;
  font-weight: 100;
  letter-spacing: 2px;
  transition: transform 0.3s ease;
}

h1 span:hover::first-letter,
h2.title span:hover::first-letter,
.hero .title span:hover::first-letter {
  transform: scale(1.2);
}

/* ---------------- RESPONSIVE LAYOUTS ---------------- */
@media (min-width: 1200px) {
  h1,
  h2.title,
  .hero .title {
    font-size: 50px;
    letter-spacing: 4px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  h1,
  h2.title,
  .hero .title {
    font-size: 50px;
    letter-spacing: 3px;
  }
}

@media (max-width: 767px) {
  h1,
  h2.title,
  .hero .title {
    font-size: 40px;
    letter-spacing: 3px;
    line-height: 1;
  }
  h1 span,
  h2.title span,
  .hero .title span {
    margin: 0 3px;
  }
  h1 span::first-letter,
  h2.title span::first-letter,
  .hero .title span::first-letter {
    font-size: 1.2em;
  }
}

/* ---------------- INTRO / GALLERY GRID ---------------- */
.section {
  background: var(--warm);
  padding: 64px 60px;
  text-align: center;
}
.section .title h3 {
  font-family: "Bodoni Moda", serif;
  font-weight: 100;
  font-size: 25px;
  letter-spacing: 0px;
  text-transform: capitalize;
  color: rgba(0, 0, 0, 0.688);
}
.section .title span {
  font-family: "Bodoni Moda", serif;
  font-size: 35px;
  font-weight: 100;
  display: inline-block;
  line-height: 1;
  transition: transform 0.3s ease;
}

.section .title span:hover {
  transform: scale(1.2);
}
.lead {
  max-width: 680px;
  font-family: "Bodoni Moda", serif;
  margin: 18px auto 40px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}
.grid-3 {
  display: grid;
  overflow: hidden;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5px;
  max-width: 800px;
  margin: 30px auto;
}
.grid-3 img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 1px;
  will-change: transform;
}
.grid-3 img:hover {
  transform: scale(1.06);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* home page portfoilio gallery */

.portfolio-gallery {
  padding: 2rem 0;
  background: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-grid .grid-item {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  background: #eee;
  display: block;
}
.gallery-grid .tall {
  grid-row: span 2;
  aspect-ratio: 3/4;
}
.gallery-grid .wide {
  grid-column: span 2;
  aspect-ratio: 16/6;
}
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid .wide {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }
}
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= RESET (SAFE) ================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ================= PORTFOLIO SECTION ================= */

.portfolio {
  padding: 80px 24px;
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("/assets/new.png") center / cover no-repeat;
}

/* ================= HEADER ================= */

.portfolio-header {
  text-align: center;
  margin-bottom: 50px;
}

.portfolio-header h2 {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 300;
  letter-spacing: 2px;
  color: #fff;
}

.portfolio-header p {
  max-width: 620px;
  margin: 14px auto 0;
  color: #e6e6e6;
  font-size: 15px;
  line-height: 1.6;
}

/* ================= TOGGLE (HIDDEN) ================= */

.view-toggle {
  display: none;
}

/* ================= GRID ================= */

.portfolio-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

/* ================= CARD ================= */

.portfolio-card {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  transition: transform 0.3s ease;
}

/* ================= IMAGE ================= */

.portfolio-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* ================= OVERLAY ================= */

.portfolio-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.45) 55%,
    transparent 100%
  );
}

.portfolio-overlay h4 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

.portfolio-overlay span {
  color: #f1c27d;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ================= HOVER (DESKTOP ONLY) ================= */

@media (hover: hover) {
  .portfolio-card:hover img {
    transform: scale(1.08);
  }
}

/* ================= VIEW MORE LOGIC ================= */

/* Hide extra cards initially */
.portfolio-card.extra {
  display: none;
}

/* Reveal extra cards */
.view-toggle:checked ~ .portfolio-grid .portfolio-card.extra {
  display: block;
}

/* ================= CTA ================= */

.portfolio-cta {
  text-align: center;
  margin-top: 50px;
}

/* Hide CTA after click */
.view-toggle:checked ~ .portfolio-cta {
  display: none;
}

.view-more {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 30px;
  background: #fff;
  color: #000;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-more:hover {
  background: #f1c27d;
}
/* JS controlled hiding */
.portfolio-card.is-hidden {
  display: none;
}

/* View Less style (optional, matches theme) */
.view-less {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  background: #f1c27d;
  color: #000;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  margin-left: 12px;
}

/* ================= TABLET ================= */

@media (max-width: 768px) {
  .portfolio {
    padding: 60px 18px;
  }

  .portfolio-grid {
    gap: 18px;
  }

  .portfolio-card {
    aspect-ratio: 5 / 4;
  }

  .portfolio-overlay {
    padding: 18px;
  }

  .portfolio-overlay h4 {
    font-size: 16px;
  }
}

/* ================= MOBILE ================= */

@media (max-width: 480px) {
  .portfolio {
    padding: 50px 16px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .portfolio-card {
    aspect-ratio: 3 / 4;
  }

  .portfolio-header h2 {
    letter-spacing: 1px;
  }

  .portfolio-overlay h4 {
    font-size: 15px;
  }

  .portfolio-overlay span {
    font-size: 12px;
  }
}

/* ---------------- OFFERINGS SECTION ---------------- */

.cta-wrap {
  background-image: url("/assets/bgg3.jpg");
  background-size: cover;
  background-position: center;
  padding: 100px 40px;
  text-align: center;
}

.offer-row {
  max-width: 1350px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.offer-row h2 {
  grid-column: 1 / -1;
  font-size: 48px;
  font-weight: 200;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.offer-row h2::after {
  content: "";
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  display: block;
  margin: 18px auto 0;
}

/* ---------------- OFFER CARDS ---------------- */

.offer {
  position: relative;
  padding: 65px 28px 38px;
  background-image: url("/assets/22.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-radius: 16px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 164, 92, 0.15);
  transition: all 0.45s ease;
  opacity: 0;
  transform: translateY(30px);
}

.offer.show {
  opacity: 1;
  transform: translateY(0);
}

.offer:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 18px 45px rgba(201, 164, 92, 0.18);
}

/* ---------------- ICONS ---------------- */

.offer::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
}

.offer:nth-of-type(1)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23c9a45c' stroke-width='1.4' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 20c1.5-4 14.5-4 16 0'/%3E%3C/svg%3E");
}

.offer:nth-of-type(2)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23d28b8b' stroke-width='1.4' viewBox='0 0 24 24'%3E%3Cpath d='M12 21s-7-4.5-7-10a4 4 0 0 1 7-2 4 4 0 0 1 7 2c0 5.5-7 10-7 10z'/%3E%3C/svg%3E");
}

.offer:nth-of-type(3)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%2387b6b6' stroke-width='1.4' viewBox='0 0 24 24'%3E%3Crect x='3' y='6' width='18' height='12' rx='2'/%3E%3Cpath d='M7 18l3-3 4 4 3-3'/%3E%3C/svg%3E");
}

.offer:nth-of-type(4)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%2398b87a' stroke-width='1.4' viewBox='0 0 24 24'%3E%3Cpath d='M21 10c-4-1-7-5-9-8-2 3-5 7-9 8'/%3E%3Cpath d='M5 14h14'/%3E%3C/svg%3E");
}

/* ---------------- TEXT ---------------- */

.offer h3 {
  font-weight: 300;
  margin-bottom: 10px;
  color: var(--cream);
}

.offer p {
  font-size: 15px;
  line-height: 1.6;
  max-width: 280px;
  margin: auto;
  color: var(--cream);
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 768px) {
  .cta-wrap {
    padding: 80px 24px;
  }

  .offer-row h2 {
    font-size: 32px;
  }
}

/* ---------------- VIDEO GALLERY ---------------- */

.section-title {
  text-align: center;
  font-size: 2rem;
  margin: 50px 0 30px;
  color: #222222f0;
  font-weight: 300;
}

#video-gallery {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 30px;
}

/* ---------------- VIDEO GALLERY STYLES ---------------- */

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* Increased row gap to give the text breathing room */
  gap: 60px 40px; 
}

/* Wrapper for Video + Text */
.gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center; /* Centers the text below the video */
}

/* Video container */
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 6px;
  background: #000;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); /* Slightly softer shadow */
  cursor: pointer;
  margin-bottom: 20px; /* Space between video and text */
}

/* Link Wrapper */
.video-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

/* Image Styles */
.video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Hover Zoom Effect */
.video-frame:hover img {
  transform: scale(1.03);
}

/* --- STYLISH TEXT STYLES --- */

.couple-name {
  font-family: 'Cinzel', serif; /* Elegant Wedding Font */
  font-size: 1.2rem;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 2px; /* Adds that premium look */
  text-align: center;
}

.film-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: #777;
  margin-top: 5px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* --- PLAY BUTTON --- */
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 40px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  pointer-events: none;
  transition: background 0.3s ease;
  backdrop-filter: blur(2px); /* Modern blur effect */
}

.play-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #fff;
}

.video-frame:hover .play-icon {
  background: #cc0000; /* Red on hover */
}

/* ---------------- MOBILE ---------------- */

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* -------------------- faqs --------------------------*/

#faq-section {
  background-image: url("/assets/faqbg.jpg");
  background-size: cover;
  background-position: center;
  margin-top: 80px;
  font-weight: 700;
}
.faq-section h2 {
  color: #fff;
  text-shadow: 0 0 5px rgb(0, 0, 0);
}

.faq-intro {
  text-align: center;
  padding: 100px 20px;
  background-color: var(--card);
  border-radius: 8px;
}

.faq-title {
  margin-bottom: 10px;
}

.faq-description {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 20px;
}

.faq-button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  color: #fff;
  background-color: #000000d1;
  text-decoration: none;
  border-radius: 5px;
  border: 5px;
  border-color: #ffffff;
  transition: background-color 0.3s ease;
}

.faq-button:hover {
  background-color: #ffffff;
  border: 2px solid black;
  color: #000;
}

.faq-section {
  padding: 50px 20px;
  background: #eff7f6;
  text-align: center;
}

.faq-title {
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 30px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 20px;
  border: 3px solid #ccc;
  border-radius: 5px;
  color: black;
  overflow: hidden;
}

.faq-question {
  color: rgb(0, 0, 0);
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
}

.faq-toggle {
  font-size: 1.6rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 15px 20px;
  color: #fff;
  background-color: rgba(15, 36, 48, 0.758);
  display: none;
  font-size: 1.3rem;
  line-height: 1.6;
}

.faq-answer p {
  margin: 0;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-toggle {
  transform: rotate(60deg);
  transition: transform 0.3s ease;
}

/* ---------------- CONTACT SECTION ---------------- */

.contact-hero {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
  padding: 90px 60px;
}

.contact-wrap {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* LEFT */
.contact-left {
  flex: 1;
}

.contact-left h2 {
  font-family: "Bodoni Moda", serif;
  font-size: 42px;
  font-weight: 300;
}

.contact-left .des {
  margin-top: 18px;
  max-width: 520px;
  line-height: 1.6;
  color: var(--text-muted);
}

.btn-container {
  margin-top: 30px;
}

.btn-primary {
  background: var(--gold);
  color: #111;
  border: none;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(201, 164, 92, 0.4);
}

/* RIGHT BOX */
.contact-box {
  flex-basis: 420px;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.contact-row {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.contact-row a {
  text-decoration: none;
  font-size: 15px;
}

/* ---------------- SOCIAL ICONS (IMAGE FIXED) ---------------- */

.follow {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  justify-content: center;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.social-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-4px);
}

/* Brand hover glow (background only) */
.social-icon.ig:hover {
  background: linear-gradient(135deg, #c13584, #f77737);
  box-shadow: 0 8px 20px rgba(193, 53, 132, 0.45);
}

.social-icon.fb:hover {
  background: #1877f2;
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.45);
}

.social-icon.wa:hover {
  background: #25d366;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
}

.social-icon.yt:hover {
  background: #ff0000;
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.45);
}

/* Subtle zoom on hover */
.social-icon:hover img {
  transform: scale(1.1);
}

@media (max-width: 767px) {
  .social-icon {
    width: 48px;
    height: 48px;
  }

  .social-icon img {
    width: 36px;
    height: 36px;
  }
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 900px) {
  .contact-wrap {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .contact-left h2 {
    font-size: 34px;
  }

  .contact-left .des {
    margin: 16px auto;
  }

  .contact-box {
    width: 100%;
    max-width: 480px;
    margin-top: 30px;
  }

  .contact-row {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 500px) {
  .contact-hero {
    padding: 60px 20px;
  }

  .contact-left h2 {
    font-size: 26px;
  }

  .social-icon {
    width: 36px;
    height: 36px;
  }

  .social-icon img {
    width: 36px;
    height: 36px;
  }
}

/* ---------------- FOOTER ---------------- */

.footer {
  padding: 26px;
  background: linear-gradient(180deg, #061322 0%, #0f2430 100%);
  color: #9fb0bf;
  text-align: center;
  font-size: 14px;
}

.footer a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

.footer a:hover {
  text-decoration: underline;
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 900px) {
  .contact-wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-left h2 {
    font-size: 34px;
  }

  .contact-left .des {
    margin: 16px auto;
  }

  .contact-box {
    width: 100%;
    max-width: 480px;
    margin-top: 30px;
  }

  .contact-row {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 500px) {
  .contact-hero {
    padding: 60px 20px;
  }

  .contact-left h2 {
    font-size: 26px;
  }

  .btn-primary {
    padding: 10px 18px;
    font-size: 14px;
  }
}

/* ---------------- PORTFOLIO GALLERY ---------------- */
.container {
  column-count: 3;
  column-gap: 10px;
  margin-top: 120px;
}

.container img {
  max-width: 100%;
  display: block;
}

.container figure {
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  margin-bottom: 10px;
  break-inside: avoid;
}

.container figure > img {
  grid-row: 1 / -1;
  grid-column: 1;
}

.container figure a {
  color: black;
  text-decoration: none;
}

/* ---------------- ANIMATED WEDDING SUMMARY ---------------- */
.wedding-summary {
  position: relative;
  overflow: hidden;
  padding: 80px 20px 50px;
  text-align: center;
  font-family: "Bodoni Moda", serif;
  color: #fff;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 16px;
  margin: 60px auto;
  max-width: 900px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Background soft golden glow animation */
.summary-inner {
  position: relative;
  z-index: 2;
}

.wedding-summary::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(185, 141, 87, 0.2) 0%,
    transparent 70%
  );
  animation: glowMove 8s infinite linear;
  animation-delay: 1s; /* 🌟 Starts after 3 seconds */
  z-index: 1;
}

@keyframes glowMove {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Title Animation */
.wedding-summary h2 {
  font-size: 2.3rem;
  color: #f3d09d;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: capitalize;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 1.2s; /* 🌟 Starts after 3 seconds */
}

/* Paragraph Animation */
.wedding-summary p {
  font-size: 1.1rem;
  color: #f0f0f0;
  line-height: 1.8;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
  animation-delay: 1s; /* 🌟 0.3s after heading */
}

/* Divider Animation */
.divider {
  width: 100px;
  height: 3px;
  margin: 25px auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, #b98d57, #f3d09d, #b98d57);
  opacity: 0;
  transform: scaleX(0);
  animation: expandLine 1s ease forwards;
  animation-delay: 0s; /* 🌟 after text appears */
}

/* Animation Keyframes */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandLine {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .wedding-summary {
    padding: 60px 15px 40px;
    margin: 40px 15px;
  }
  .wedding-summary h2 {
    font-size: 1.8rem;
  }
  .wedding-summary p {
    font-size: 1rem;
  }
  .divider {
    width: 70px;
  }
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .container {
    column-count: 1;
    margin-top: 80px;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .container {
    column-count: 2;
    margin-top: 80px;
  }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .container {
    column-count: 3;
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .container {
    column-count: 3;
  }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .container {
    column-count: 3;
  }
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1100px) {
  .hero {
    height: 760px;
  }
  .hero .subtitle {
    font-size: 20px;
  }
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .topbar {
    padding: 16px;
  }
  .hero {
    height: 860px;
  }
  .hero .subtitle {
    font-size: 16px;
  }
  .section {
    padding: 48px 20px;
  }
  .lead {
    font-size: 14px;
  }
  .grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .grid-3 img {
    height: 150px;
    max-width: 100%;
  }
  .portfolio-card img {
    width: 100%;
    max-width: 100%;
    height: 350px;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .contact-wrap {
    flex-direction: column;
  }
  .contact-box {
    width: 100%;
  }
  .nav {
    display: none;
  }
  .contact-hero {
    padding: 10px 15px;
  }
}

@media (max-width: 480px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* subtle utilities */
a {
  color: inherit;
}
.muted {
  color: var(--muted);
}
