/* ========================================
   懿中人艺术策划 · Wedding
   暖白香槟主题 — Warm Champagne
   ======================================== */

/* Override dark body bg from style.css */
html {
  scroll-snap-type: y proximity;
}

body {
  background: #f8f4ee !important;
}

/* ---- Wedding Hero ---- */
.wedding-hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, #f8f4ee 0%, #f0e8d8 40%, #f8f4ee 100%);
  overflow: hidden;
  scroll-snap-align: start;
}
.wedding-hero::before {
  content: '';
  position: absolute;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,168,110,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.wedding-hero-content { position: relative; z-index: 2; }
.wedding-badge {
  font-size: 12px; letter-spacing: 6px; color: #b89a5a;
  margin-bottom: 24px; font-weight: 400;
}
.wedding-hero h1 {
  font-size: 56px; line-height: 1.2; margin-bottom: 32px; color: #2a2a2a;
}
.wedding-hero .gold {
  background: linear-gradient(135deg, #c4a86e, #a8884a);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.mobile-only { display: none; }

.hero-tags {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 36px;
}
.hero-tags span {
  padding: 8px 18px; background: rgba(196,168,110,0.1);
  border: 1px solid rgba(196,168,110,0.2); border-radius: 20px;
  font-size: 14px; color: #8a7a50; letter-spacing: 0.5px;
}
.hero-cta {
  display: inline-block; padding: 12px 36px;
  background: linear-gradient(135deg, #c4a86e, #a8884a);
  color: #fff; border-radius: 30px; font-size: 15px;
  letter-spacing: 2px; text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}
.hero-cta:hover {
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(196,168,110,0.3);
}

/* ---- Brand + Philosophy ---- */
.wedding-brand {
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  background: #fffdfa;
  scroll-snap-align: start;
  overflow-y: auto;
}
.wedding-brand .section-title { color: #2a2a2a; }
.brand-desc {
  max-width: 640px; margin: 16px auto 10px; font-size: 15px; color: #666; line-height: 1.8;
}
.brand-desc strong { color: #c4a86e; }
.brand-tags {
  display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin: 24px 0 0;
}
.brand-tags span {
  padding: 6px 18px; border: 1px solid rgba(196,168,110,0.3);
  border-radius: 20px; font-size: 13px; color: #b89a5a;
  background: rgba(196,168,110,0.06); letter-spacing: 1px;
}
.phil-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px;
}
.phil-card {
  background: #fff; border: 1px solid rgba(196,168,110,0.12);
  border-radius: 16px; padding: 40px 28px; text-align: center;
  transition: all 0.35s; box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.phil-card:hover {
  border-color: rgba(196,168,110,0.3); transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(196,168,110,0.1);
}
.phil-icon { font-size: 36px; margin-bottom: 20px; }
.phil-card h3 { font-size: 18px; color: #2a2a2a; margin-bottom: 12px; }
.phil-card p { font-size: 14px; color: #777; line-height: 1.7; }

/* ---- Process ---- */
.wedding-process {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f4ee;
  text-align: center;
  scroll-snap-align: start;
  overflow-y: auto;
}
.wedding-process .section-title { color: #2a2a2a; }
.process-steps {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0; margin-top: 40px;
}
.step {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.step-num {
  font-size: 20px; font-weight: 700; color: #c4a86e; font-family: serif;
}
.step-text { font-size: 13px; color: #666; white-space: nowrap; }
.step-line {
  width: 32px; height: 1px; background: rgba(196,168,110,0.2); margin: 0 8px;
}

/* ---- Cases (override main dark theme for light theme) ---- */
#cases.wedding-cases,
section#cases.wedding-cases {
  padding: 100px 0; text-align: center; background: #fffdfa;
}
.wedding-cases .section-title { color: #2a2a2a; }

/* Filter buttons */
.wedding-cases .cases-filter-row {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 8px;
}
.wedding-cases .cf-btn {
  padding: 7px 18px; border: 1px solid rgba(196,168,110,0.2);
  background: transparent; border-radius: 20px;
  font-size: 13px; color: #8a7a50; cursor: pointer;
  transition: all 0.3s; letter-spacing: 0.5px;
}
.wedding-cases .cf-btn:hover { border-color: #c4a86e; color: #b89a5a; }
.wedding-cases .cf-btn.active {
  background: #c4a86e; color: #fff; border-color: #c4a86e;
}

/* Grid */
.wedding-cases .cases-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px;
}

/* Card */
.wedding-cases .case-card {
  background: #fff; border: 1px solid rgba(196,168,110,0.1);
  border-radius: 14px; overflow: hidden; cursor: pointer;
  transition: all 0.35s; box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.wedding-cases .case-card:hover {
  transform: translateY(-4px); border-color: rgba(196,168,110,0.3);
  box-shadow: 0 8px 24px rgba(196,168,110,0.12);
}
.wedding-cases .case-img {
  width: 100%; aspect-ratio: 4/3; overflow: hidden;
}
.wedding-cases .case-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #ede3d0, #f5efe3);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: #b89a5a; opacity: 0.6; letter-spacing: 1px;
}
.wedding-cases .case-info {
  padding: 16px 18px 20px;
  background: #fff;
}
.wedding-cases .case-tag {
  display: inline-block;
  font-size: 12px; color: #b89a5a; letter-spacing: 1px;
  margin-bottom: 4px;
}
.wedding-cases .case-title {
  font-size: 16px; color: #2a2a2a; margin: 4px 0 6px; font-weight: 600;
}
.wedding-cases .case-meta {
  display: flex; gap: 12px; font-size: 12px; color: #999;
}
.wedding-cases .case-meta .people { color: #999; }

/* Modal light overrides */
.wedding-cases + .modal-overlay {
  background: rgba(0,0,0,0.6);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.wedding-cases + .modal-overlay .modal {
  background: #fffdfa;
  border-radius: 16px;
}
.wedding-cases + .modal-overlay .modal-header .case-tag {
  color: #b89a5a;
}
.wedding-cases + .modal-overlay .modal-title {
  color: #2a2a2a;
}
.wedding-cases + .modal-overlay .modal-meta {
  color: #888;
}
.wedding-cases + .modal-overlay .modal-desc {
  color: #666;
}
.wedding-cases + .modal-overlay .modal-img {
  border-radius: 8px;
  background: #f0e8d8;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px; color: #b89a5a; opacity: 0.6;
}

/* ---- Contact (warm tone) ---- */
section#contact.wedding-contact {
  padding: 100px 0;
  background: #f8f4ee;
}
section.wedding-contact .section-label { color: #b89a5a; }
section.wedding-contact .section-title { color: #2a2a2a; margin-bottom: 40px; }
section.wedding-contact .contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
section.wedding-contact .contact-info h3 {
  font-size: 24px; color: #2a2a2a; margin: 12px 0 8px;
}
section.wedding-contact .tagline {
  font-size: 14px; color: #b89a5a; letter-spacing: 2px; margin-bottom: 28px;
}
section.wedding-contact .contact-item {
  display: flex; align-items: center; gap: 10px; font-size: 15px; color: #555; margin-bottom: 12px;
}
section.wedding-contact .contact-item .icon { font-size: 18px; width: 28px; text-align: center; }
section.wedding-contact .contact-cta {
  background: #fff; border: 1px solid rgba(196,168,110,0.15);
  border-radius: 16px; padding: 40px 32px; text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
section.wedding-contact .contact-cta .cta-text {
  font-size: 18px; color: #b89a5a; margin-bottom: 14px; font-weight: 500;
}
section.wedding-contact .contact-cta p {
  font-size: 14px; color: #777; line-height: 1.7; margin-bottom: 24px;
}
section.wedding-contact .btn-primary {
  background: linear-gradient(135deg, #c4a86e, #a8884a); color: #fff; border: none;
}

/* ---- Footer ---- */
.wedding-contact + footer {
  background: #fffdfa; border-top: 1px solid rgba(196,168,110,0.1); color: #888;
}
footer a { color: #c4a86e; text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .phil-grid { grid-template-columns: 1fr; }
  .wedding-cases .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .wedding-cases + .modal-overlay .modal-images { grid-template-columns: repeat(2, 1fr); }
  section.wedding-contact .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .process-steps { max-width: 400px; margin: 40px auto 0; flex-direction: column; gap: 0; }
  .step { flex-direction: row; width: 100%; padding: 12px 0; gap: 12px; }
  .step-line { display: none; }
  .step-num { width: 32px; text-align: right; }
}
@media (max-width: 640px) {
  .wedding-hero h1 { font-size: 36px; }
  .mobile-only { display: block; }
  .wedding-cases .cases-grid { grid-template-columns: 1fr; }
  .wedding-cases + .modal-overlay .modal-images { grid-template-columns: 1fr; }
  .hero-tags span { font-size: 13px; padding: 6px 14px; }
}
