/* ══════════════════════════════════════════
   KC-04 XV FLORAL INFERNO — CELEBRATION INFO
   Unified Cathedral Card & Accordion Handles
   Khal Calloway Studio © 2026
   ══════════════════════════════════════════ */

#info-section {
  position: relative;
  background-color: var(--bg-obsidian);
  padding: 4rem 0;
  overflow: hidden;
}

/* Unified Celebration Card (Volcanic Crystal) */
.cathedral-card {
  background: rgba(18, 5, 5, 0.9);
  border: 1px solid rgba(255, 179, 71, 0.35);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.55), inset 0 0 20px rgba(139, 0, 0, 0.3);
  border-radius: 8px;
  max-width: 580px;
  margin: 2.5rem auto;
  position: relative;
  overflow: hidden;
  z-index: 10;
  transition: box-shadow 0.5s ease, border-color 0.5s ease;
}

/* Subtle Lava Shimmer effect on hover */
.cathedral-card:hover {
  border-color: var(--gold-kc);
  box-shadow: 0 20px 45px rgba(255, 179, 71, 0.15), 0 0 20px rgba(215, 38, 56, 0.1);
}

.cathedral-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 40%, rgba(255, 179, 71, 0.05) 50%, transparent 60%);
  background-size: 200% 200%;
  background-position: -100% 0;
  transition: background-position 0.8s ease;
  pointer-events: none;
}

.cathedral-card:hover::before {
  background-position: 100% 0;
}

/* Header & Divider */
.cathedral-card-header {
  padding: 30px 25px 20px;
  text-align: center;
}

.cathedral-card-title {
  font-family: var(--ff-hero);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.molten-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-kc) 30%, var(--rose-celestial) 50%, var(--gold-kc) 70%, transparent);
  width: 70%;
  margin: 15px auto 5px;
  box-shadow: 0 0 8px rgba(255, 179, 71, 0.4);
}

/* Body Columns split */
.cathedral-card-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 179, 71, 0.12);
  border-bottom: 1px solid rgba(255, 179, 71, 0.12);
}

.cathedral-col {
  padding: 30px 20px;
  text-align: center;
  position: relative;
  transition: background-color 0.3s ease;
}

.cathedral-col:first-child {
  border-right: 1px solid rgba(255, 179, 71, 0.12);
}

.cathedral-col:hover {
  background: rgba(81, 0, 0, 0.12);
}

.cathedral-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 6px var(--gold-kc));
}

.cathedral-label {
  font-family: var(--ff-label);
  font-size: 0.52rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--rose-blush);
  margin-bottom: 6px;
  display: block;
}

.cathedral-name {
  font-family: var(--ff-hero);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-champagne);
  margin-bottom: 6px;
}

.cathedral-time {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--gold-kc);
  font-weight: 600;
  margin-bottom: 10px;
}

/* Location details inside accordion */
.cathedral-details-accordion {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s ease;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  padding: 0 10px;
}

.cathedral-details-accordion.expanded {
  max-height: 100px;
  opacity: 1;
  padding-top: 10px;
}

.accordion-trigger {
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-family: var(--ff-label);
  font-size: 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  margin-top: 8px;
  outline: none;
  transition: color 0.2s;
}

.accordion-trigger:hover {
  color: var(--gold-kc);
}

/* Actions Bottom Row */
.cathedral-actions-row {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 20px;
  background: rgba(10, 3, 3, 0.4);
}

.molten-chip {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: rgba(42, 0, 0, 0.4);
  border: 1px solid rgba(255, 179, 71, 0.3);
  border-radius: 20px;
  color: var(--gold-kc);
  font-family: var(--ff-label);
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.molten-chip:hover {
  background: var(--gold-kc);
  color: #050202;
  border-color: var(--gold-kc);
  box-shadow: 0 0 12px rgba(255, 179, 71, 0.4);
  transform: scale(1.03);
}


/* ── DRESS CODE: MAGAZINE STAND-ALONE ── */
#dress-section {
  position: relative;
  background-color: var(--bg-obsidian);
  padding: 4rem 0;
  overflow: hidden;
}

.dress-magazine-card {
  background: rgba(18, 5, 5, 0.85);
  border: 1px solid rgba(215, 38, 56, 0.25);
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  max-width: 580px;
  margin: 0 auto;
  padding: 35px;
}

.dress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 179, 71, 0.15);
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.dress-header-label {
  font-family: var(--ff-label);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--rose-celestial);
}

.dress-header-title {
  font-family: var(--ff-hero);
  font-size: 1.4rem;
  color: var(--color-champagne);
  margin-top: 4px;
}

.dress-header-icon {
  font-size: 1.4rem;
  color: var(--gold-kc);
  filter: drop-shadow(0 0 6px var(--gold-kc));
}

.dress-body {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 25px;
  align-items: center;
}

.dress-editorial-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(255, 179, 71, 0.25);
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

.dress-editorial-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.1) brightness(0.85);
}

.dress-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dress-rule-note {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.dress-rule-note strong {
  color: var(--gold-kc);
}

.dress-swatches-title {
  font-family: var(--ff-label);
  font-size: 0.52rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}

.dress-swatches {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.dress-swatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.dress-swatch:hover {
  transform: scale(1.2);
  border-color: var(--gold-kc);
}

.dress-swatches-label {
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-style: italic;
  color: var(--text-dim);
  margin-left: 4px;
}


/* ── Advanced Mobile Logic & Compact stacked layouts ── */
@media (max-width: 580px) {
  /* Cathedral card height reduction & single stacked ecosystem */
  .cathedral-card-body {
    grid-template-columns: 1fr;
  }
  .cathedral-col {
    padding: 20px 15px;
  }
  .cathedral-col:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(255, 179, 71, 0.12);
  }
  .cathedral-card-header {
    padding: 20px 15px 10px;
  }
  .cathedral-actions-row {
    padding: 15px 10px;
  }
  .molten-chip {
    padding: 6px 14px;
    font-size: 0.52rem;
  }

  /* Dress Magazine Stacking */
  .dress-magazine-card {
    padding: 20px;
    max-width: 320px;
  }
  .dress-body {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .dress-editorial-img-wrap {
    height: 140px;
  }
}
