/* ============================================
   SECTIONS.CSS
   Wedding Wow Creations | Luxury Wedding Planning
   ============================================ */

/* =================== ABOUT (Image 1 style) =================== */
#about {
  /* background: var(--ivory); */
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left: video/image collage */
.about-img-collage {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 720px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(90, 15, 26, 0.2);
}

.about-img-main video,
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

/* Overlay text on video */
.about-video-label {
  position: absolute;
  bottom: 28px;
  left: 28px;
  color: var(--white);
  text-align: left;
}

.about-video-label .label-script {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.5rem;
  display: block;
  color: var(--accent-light);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.about-video-label .label-main {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

/* Small heart ornament */
.about-video-ornament {
  position: absolute;
  bottom: 90px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-light);
  font-size: 0.7rem;
  letter-spacing: 6px;
  opacity: 0.8;
}

.about-img-secondary {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 52%;
  border-radius: 18px;
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: 0 10px 40px rgba(90, 15, 26, 0.2);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #F9D4DA, #DFA5AE);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Heart badge */
.about-heart-badge {
  position: absolute;
  bottom: -32px + 60px;
  right: calc(52% - 32px - 32px);
  width: 52px;
  height: 52px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  border: 3px solid var(--white);
  box-shadow: 0 4px 16px rgba(90, 15, 26, 0.3);
  z-index: 5;
  bottom: calc(-32px + 10px);
  right: calc(52% - 58px);
}

/* Right: text */
.about-text .eyebrow {
  justify-content: flex-start;
  margin-bottom: 14px;
}

.about-text .eyebrow::before {
  display: none;
}

.about-text h2 {
  color: var(--accent);
  margin-bottom: 16px;
}

.about-text p {
  color: #fff;
  margin-bottom: 14px;
  font-size: 0.92rem;
}

.about-gold-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0 20px;
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 4px;
}

.about-gold-divider::before,
.about-gold-divider::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}

.about-feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.about-feature-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feature-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
}

.about-feature-sub {
  font-size: 0.7rem;
  color: rgba(255, 248, 242, 0.7);
  margin-top: 2px;
}


/* =================== SERVICES (Image 4 style — 4-card arched layout) =================== */
#services {
  /* background: var(--primary); */
  position: relative;
  overflow: hidden;
}

/* Background bokeh blobs */
#services::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

#services .section-header h2 {
  color: var(--white);
}

#services .section-header .eyebrow {
  color: var(--accent);
}

#services .section-header p {
  color: rgba(255, 248, 242, 0.919);
}

/* Gold ornament divider in header */
.services-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 10px 0;
  color: var(--accent);
  font-size: 0.9rem;
}

.services-ornament::before,
.services-ornament::after {
  content: '';
  display: block;
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--secondary);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border-color: rgba(212, 175, 55, 0.5);
}

.service-card:active {
  transform: translateY(-2px) scale(0.99);
}

/* Arch image container */
.service-img-wrap {
  padding: 20px 20px 0;
  display: flex;
  justify-content: center;
}

.service-img-arch {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  overflow: hidden;
  position: relative;
  max-width: 200px;
}

.service-img-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-img-arch .service-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

/* Floral corners */
.service-card::before {
  content: '✿';
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.9rem;
  color: var(--accent);
  opacity: 0.6;
}

.service-card::after {
  content: '✿';
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.9rem;
  color: var(--accent);
  opacity: 0.6;
}

.service-body {
  padding: 16px 20px 24px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Circle icon */
.service-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: -26px auto 12px;
  position: relative;
  z-index: 2;
  background: var(--secondary);
}

.service-gold-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 8px 0;
  color: var(--accent);
  font-size: 0.65rem;
  letter-spacing: 4px;
}

.service-gold-line::before,
.service-gold-line::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}

.service-title {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.service-desc {
  font-size: 0.78rem;
  color: rgba(255, 248, 242, 0.65);
  flex: 1;
  margin-bottom: 16px;
  line-height: 1.7;
  text-align: center;
}

.service-cta-btn {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid rgba(255, 248, 242, 0.4);
  border-radius: 50px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  transition: all 0.25s;
}

.service-card:hover .service-cta-btn {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}

/* Image gradient placeholders */
.sg-1 {
  background: linear-gradient(135deg, #8B3252, #5A1A30);
}

.sg-2 {
  background: linear-gradient(135deg, #7A5A1A, #9A7A2A);
}

.sg-3 {
  background: linear-gradient(135deg, #2A5A3A, #3A7A4A);
}

.sg-4 {
  background: linear-gradient(135deg, #1A3A6A, #2A5A8A);
}

.sg-5 {
  background: linear-gradient(135deg, #6A2A1A, #8A4A2A);
}

.sg-6 {
  background: linear-gradient(135deg, #1A4A5A, #2A6A7A);
}

.sg-7 {
  background: linear-gradient(135deg, #5A1A5A, #7A2A7A);
}

.sg-8 {
  background: linear-gradient(135deg, #4A4A1A, #6A6A2A);
}

.sg-9 {
  background: linear-gradient(135deg, #5A1A1A, #7A2A2A);
}


/* =================== WHY CHOOSE (Image 2 style) =================== */
#why {
  /* background: var(--primary); */
  position: relative;
  overflow: hidden;
}

#why::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.10) 0%, transparent 70%);
}

#why::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(166, 30, 60, 0.15) 0%, transparent 70%);
}

#why .section-header h2 {
  color: var(--white);
}

#why .section-header .eyebrow {
  color: var(--accent);
}

#why .section-header p {
  color: rgba(255, 248, 242, 0.65);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.why-card {
  background: rgba(122, 16, 34, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
  background: rgba(122, 16, 34, 0.75);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-color: rgba(212, 175, 55, 0.45);
}

.why-card:active {
  transform: translateY(-1px) scale(0.99);
}

.why-card-icon-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px;
  transition: background 0.3s;
}

.why-card-icon-wrap img {
  width: 98%;
  height: 98%;
  object-fit: contain;
  border-radius: 100%;
}

.why-card:hover .why-card-icon-wrap {
  background: rgba(212, 175, 55, 0.25);
}

.why-card-gold-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 10px 0 12px;
  color: var(--accent);
  font-size: 0.6rem;
  letter-spacing: 3px;
}

.why-card-gold-line::before,
.why-card-gold-line::after {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}

.why-card-title {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 600;
}

.why-card-text {
  font-size: 0.8rem;
  color: rgba(255, 248, 242, 0.65);
  line-height: 1.75;
  text-align: center;
}


/* =================== GALLERY (Image 3 style) =================== */
#gallery {
  background: var(--ivory);
  position: relative;
  overflow: visible;
}

#gallery::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  height: 100px;
  background: var(--primary);
  clip-path: ellipse(55% 100% at 50% 0%);
  pointer-events: none;
  z-index: 1;
}

#gallery .section-header h2 {
  color: var(--primary);
}

/* Filter tabs */
.gallery-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.gallery-filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: 1.5px solid rgba(90, 15, 26, 0.25);
  color: var(--primary);
  background: transparent;
  transition: all 0.2s;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--accent-light);
}

.gallery-filter-btn:active {
  transform: scale(0.95);
}

/* Featured card */
.gallery-featured {
  background: var(--ivory);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  margin-bottom: 28px;
  min-height: 200px;
  border: 1px solid transparent;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(135deg, #D4AF37, #8B1A2E, #D4AF37, #8B1A2E, #D4AF37) border-box;
}

.gallery-featured-info {

  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gallery-featured-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery-featured-label::before,
.gallery-featured-label::after {
  content: '→';
  font-size: 0.8rem;
}

.gallery-featured-info h3 {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.2;
}

.gallery-featured-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.gallery-featured-meta-item {
  font-size: 0.78rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 5px;
}

.gallery-featured-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
  pointer-events: none;
}

.gallery-featured-img {
  overflow: hidden;
  position: relative;
}

.gallery-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-featured-img .gallery-placeholder-featured {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, #8B3252, #5A1A30);
}

/* Grid of category cards */
.gallery-cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.gallery-cat-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid transparent;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(135deg, #D4AF37, #8B1A2E, #D4AF37, #8B1A2E, #D4AF37) border-box;
}

.gallery-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(90, 15, 26, 0.18);
}

.gallery-cat-card:active {
  transform: translateY(-1px) scale(0.99);
}

.gallery-cat-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.gallery-cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-cat-card:hover .gallery-cat-img img {
  transform: scale(1.05);
}

.gallery-cat-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.gallery-cat-footer {
  background: var(--white);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gallery-cat-body {
  text-align: center;
  padding: 8px 16px 16px;
  background: var(--secondary);
  border-radius: 0 0 16px 16px;
}

.gallery-cat-name {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 2px;
}

.gallery-cat-sub {
  font-size: 0.72rem;
  color: var(--cream);
}

.gallery-cat-link {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}

.gallery-cat-card:hover .gallery-cat-link {
  gap: 8px;
}


/* =================== PROCESS (Image 5 style) =================== */
#process {
  /* background: var(--ivory); */
  position: relative;
  overflow: hidden;
}

/* Curvy wavy bottom border between sections */
.section-wave {
  position: relative;
  z-index: 1;
}

.section-wave::after {
  content: '';
  position: absolute;
  bottom: -48px;
  left: 0;
  right: 0;
  height: 96px;
  z-index: 2;
  pointer-events: none;
}

#process .section-header h2 {
  color: var(--primary);
}

.process-ornament {
  text-align: center;
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 4px;
  margin: 8px 0 16px;
}

/* Horizontal timeline with circle images */
.process-timeline {
  display: flex;
  align-items: flex-start;
  position: relative;
  gap: 0;
}

/* Curvy vine connector line */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 90px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(212, 175, 55, 0.3), var(--accent), rgba(212, 175, 55, 0.3), var(--accent));
  z-index: 0;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

/* Circular image */
.process-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 0;
  border: 3px solid var(--accent);
  box-shadow: 0 8px 30px rgba(90, 15, 26, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  /* background: var(--cream); */
}

.process-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-step:hover .process-circle {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(90, 15, 26, 0.25);
}

/* Number badge */
.process-num-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--white);
  box-shadow: 0 4px 16px rgba(90, 15, 26, 0.3);
  margin: -21px auto 16px;
  position: relative;
  z-index: 3;
}

.process-gold-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 6px 0 8px;
  color: var(--accent);
  font-size: 0.6rem;
  letter-spacing: 3px;
}

.process-gold-line::before,
.process-gold-line::after {
  content: '';
  display: block;
  width: 14px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}

.process-title {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--accent);
  margin-bottom: 10px;
  font-weight: 600;
}

.process-desc {
  font-size: 0.77rem;
  color: var(--white);
  line-height: 1.7;
  max-width: 160px;
  margin: 0 auto 12px;
}


/* CTA quote banner at bottom of process */
.process-quote-banner {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  border-radius: 24px;
  overflow: hidden;
  min-height: 180px;
  box-shadow: 0 12px 40px rgba(90, 15, 26, 0.15);
}

.process-quote-photos {
  display: flex;
  overflow: hidden;
}

.process-quote-photo {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.process-quote-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: rotate(-3deg) scale(1.1);
}

.process-quote-photo:nth-child(2) img {
  transform: rotate(3deg) scale(1.1);
}

.process-quote-photo:nth-child(3) img {
  transform: rotate(-3deg) scale(1.1);
}

.process-quote-text {
  background: var(--primary);
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.process-quote-mark {
  font-family: var(--ff-display);
  font-size: 4rem;
  color: var(--accent);
  line-height: 0.6;
  margin-bottom: 16px;
  opacity: 0.8;
}

.process-quote-content {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--accent-light);
  line-height: 1.55;
}

.process-quote-content .quote-end {
  color: var(--accent);
}

.process-quote-divider {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 0.7rem;
  letter-spacing: 4px;
}

.process-quote-divider::before,
.process-quote-divider::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}