/* ─── Dresca RSVP WordPress Plugin Styles — Premium Edition ─── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Cormorant+Garamond:wght@300;400;600&family=Montserrat:wght@300;400;500&display=swap');

/* Reset for plugin scope */
.dresca-app * { box-sizing: border-box; margin: 0; padding: 0; }

/* ═══════════════════════════════════════════════
   LOADING SCREEN
   ═══════════════════════════════════════════════ */
.dresca-loading-screen {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #0f1f38;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease-out;
}
.dresca-loading-fadeout {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.6s ease-out, visibility 0s 0.6s;
}
.dresca-loading-content {
  text-align: center;
}
.dresca-loading-monogram {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  background: linear-gradient(90deg, #d4a44c 0%, #fce4a8 50%, #d4a44c 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: dresca-goldShimmer 2s ease-in-out infinite;
}
.dresca-loading-line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c7ad88, transparent);
  margin: 1rem auto;
  animation: dresca-lineExpand 1.2s ease-out 0.3s forwards;
}
.dresca-loading-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: rgba(199, 173, 136, 0.6);
  margin-top: 0.5rem;
  opacity: 0;
  animation: dresca-fadeUp 0.8s ease-out 0.5s forwards;
}
@keyframes dresca-lineExpand { to { width: 120px; } }
@keyframes dresca-fadeUp { to { opacity: 1; transform: translateY(0); } from { opacity: 0; transform: translateY(10px); } }

.dresca-app-hidden { opacity: 0; }
.dresca-app-visible { animation: dresca-appReveal 0.8s ease-out forwards; }
@keyframes dresca-appReveal { from { opacity: 0; } to { opacity: 1; } }

/* ═══════════════════════════════════════════════
   GOLD FOIL SHIMMER
   ═══════════════════════════════════════════════ */
.dresca-gold-foil {
  background: linear-gradient(90deg, #d4a44c 0%, #fce4a8 25%, #d4a44c 50%, #fce4a8 75%, #d4a44c 100%) !important;
  background-size: 200% 100% !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  animation: dresca-goldShimmer 4s ease-in-out infinite !important;
  text-shadow: none !important;
}
@keyframes dresca-goldShimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ═══════════════════════════════════════════════
   GLASSMORPHISM CARD
   ═══════════════════════════════════════════════ */
.dresca-glassmorphism {
  background: rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ═══════════════════════════════════════════════
   ANIMATED COUNTDOWN TIMER
   ═══════════════════════════════════════════════ */
.dresca-countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.dresca-countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 0.6rem 0.9rem;
  min-width: 58px;
}
.dresca-countdown-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff !important;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.dresca-countdown-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7) !important;
  margin-top: 4px;
}
.dresca-countdown-sep {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.5) !important;
  padding-bottom: 1rem;
}

/* ═══════════════════════════════════════════════
   VENUE LOCATION LINK
   ═══════════════════════════════════════════════ */
.dresca-hero-location {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.6rem 1.5rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  color: #fff !important;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.dresca-hero-location:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-1px);
  color: #fff !important;
  text-decoration: none;
}

/* ═══════════════════════════════════════════════
   PETAL RAIN
   ═══════════════════════════════════════════════ */
.dresca-petal-container {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 100;
  overflow: hidden;
}
.dresca-petal {
  position: absolute;
  top: -30px;
  animation: dresca-petalFall linear forwards;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
@keyframes dresca-petalFall {
  0% { transform: translateY(-30px) rotate(0deg) translateX(0); opacity: 0; }
  10% { opacity: 0.5; }
  100% { transform: translateY(105vh) rotate(720deg) translateX(80px); opacity: 0; }
}

/* ═══════════════════════════════════════════════
   CONFETTI EXPLOSION
   ═══════════════════════════════════════════════ */
.dresca-confetti-container {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 99998;
  overflow: hidden;
}
.dresca-confetti-piece {
  position: absolute;
  top: 40%;
  border-radius: 2px;
  animation: dresca-confettiBurst ease-out forwards;
}
@keyframes dresca-confettiBurst {
  0% { transform: translate(0, 0) rotate(0deg) scale(0); opacity: 1; }
  20% { transform: translate(var(--x, 50px), var(--y, -200px)) rotate(180deg) scale(1); opacity: 1; }
  100% { transform: translate(var(--x, 50px), 100vh) rotate(720deg) scale(0.5); opacity: 0; }
}
.dresca-confetti-piece:nth-child(odd) { --x: -80px; --y: -250px; }
.dresca-confetti-piece:nth-child(even) { --x: 60px; --y: -180px; }
.dresca-confetti-piece:nth-child(3n) { --x: -120px; --y: -300px; }
.dresca-confetti-piece:nth-child(4n) { --x: 100px; --y: -220px; }
.dresca-confetti-piece:nth-child(5n) { --x: -40px; --y: -280px; }
.dresca-confetti-piece:nth-child(6n) { --x: 140px; --y: -260px; }
.dresca-confetti-piece:nth-child(7n) { --x: -160px; --y: -200px; }

/* ═══════════════════════════════════════════════
   ENTRANCE ANIMATIONS
   ═══════════════════════════════════════════════ */
@keyframes dresca-fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.dresca-hero-content .dresca-logo { animation: dresca-fadeSlideUp 0.6s ease-out 0.3s both; }
.dresca-hero-main h1 { animation: dresca-fadeSlideUp 0.6s ease-out 0.4s both; }
.dresca-hero-main h2 { animation: dresca-fadeSlideUp 0.6s ease-out 0.5s both; }
.dresca-hero-details { animation: dresca-fadeSlideUp 0.6s ease-out 0.6s both; }
.dresca-hero-location { animation: dresca-fadeSlideUp 0.6s ease-out 0.7s both; }
.dresca-countdown-timer { animation: dresca-fadeSlideUp 0.8s ease-out 0.8s both; }

/* ─── LAYOUT ─── */
.dresca-layout {
  display: flex;
  min-height: 100vh;
  font-family: 'Inter', -apple-system, sans-serif;
}

/* ─── HERO (Left Side) ─── */
.dresca-hero {
  flex: 1;
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff !important;
  display: flex;
  flex-direction: column;
  padding: 3rem;
  min-height: 100vh;
}

.dresca-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.dresca-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.dresca-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: #fff !important;
}
.dresca-logo span { margin: 0 0.75rem; opacity: 0.5; }

.dresca-hero-main {
  margin: auto 0;
  text-align: center;
}

.dresca-hero-main h1 {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2.5rem, 5vw, 4rem) !important;
  font-weight: 700 !important;
  letter-spacing: 3px;
  line-height: 1.15;
  color: #fff !important;
  text-shadow: 0 2px 15px rgba(0,0,0,0.4);
}

.dresca-hero-main h2 {
  font-family: 'Inter', sans-serif !important;
  font-size: clamp(0.8rem, 1.5vw, 1rem) !important;
  font-weight: 400 !important;
  letter-spacing: 6px;
  margin-top: 1rem;
  text-transform: uppercase;
  color: #fff !important;
}

.dresca-hero-details {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.95rem !important;
  margin-top: 1rem;
  letter-spacing: 2px;
  opacity: 0.9;
  color: #fff !important;
}

/* ─── FORM SECTION (Right Side) ─── */
.dresca-form-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  background: #f5f1ec;
}

/* ─── CARD ─── */
.dresca-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 3rem 2.5rem;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  overflow: visible;
}

.dresca-card::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid #c7ad88;
  border-radius: 8px;
  pointer-events: none;
  z-index: 10;
}

/* ─── FLORAL DECORATIONS ─── */
.dresca-floral {
  position: absolute;
  width: 200px;
  height: 200px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 20;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.dresca-floral-tr { top: -40px; right: -30px; }
.dresca-floral-bl { bottom: -40px; left: -30px; }
.dresca-card-active .dresca-floral { z-index: 1; }
.dresca-card-active .dresca-floral-tr { top: -75px; right: -65px; }
.dresca-card-active .dresca-floral-bl { bottom: -75px; left: -65px; }

/* ─── CARD HEADER ─── */
.dresca-card-header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 12;
}
.dresca-card-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #1a1a2e;
  font-weight: 700;
  letter-spacing: 3px;
}

/* ─── SEARCH ─── */
.dresca-search { position: relative; z-index: 12; margin-bottom: 1.5rem; }
.dresca-search label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: #333;
  margin-bottom: 0.5rem;
}
.dresca-search-wrap {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}
.dresca-search-wrap input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  background: #fafafa;
}
.dresca-search-btn {
  padding: 0.75rem 1rem;
  background: transparent;
  border: none;
  color: #888;
  cursor: pointer;
  transition: color 0.2s;
}
.dresca-search-btn:hover { color: #0f1f38; }
.dresca-error { color: #c0392b; font-size: 0.8rem; margin-top: 0.5rem; text-align: center; }

/* ─── RSVP FORM ─── */
.dresca-rsvp-form { position: relative; z-index: 12; }
.dresca-guest-info {
  background: #f9f7f4;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.dresca-guest-info h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

/* ─── CHECKBOXES ─── */
.dresca-attendance { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.2rem; }
.dresca-separator { color: #888; margin: 0 0.25rem; }
.dresca-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #333;
}
.dresca-checkbox input[type="radio"] {
  appearance: none;
  width: 18px; height: 18px;
  border: 2px solid #aaa;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.dresca-checkbox input[type="radio"]:checked { background: #0f1f38; border-color: #0f1f38; }
.dresca-checkbox input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

/* ─── FIELDS ─── */
.dresca-field-group { margin-bottom: 1rem; }
.dresca-field-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.4rem;
}
.dresca-field-hint {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: #999;
  margin-top: 0.3rem;
}
.dresca-input {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  background: #fff;
  outline: none;
}
.dresca-input:focus { border-color: #c7ad88; }

/* ─── SUBMIT BUTTON ─── */
.dresca-submit-btn {
  width: 100%;
  padding: 1rem;
  background: #0f1f38;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  cursor: pointer;
  transition: all 0.3s;
}
.dresca-submit-btn:hover { background: #1a2e4a; transform: translateY(-2px); }
.dresca-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; }

/* ─── CONFIRMATION ─── */
.dresca-confirmation { text-align: center; position: relative; z-index: 12; padding: 2rem 0; }
.dresca-confirmation h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #8b1a1a;
  margin-bottom: 1rem;
}
.dresca-confirmation p {
  font-family: 'Inter', sans-serif;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.dresca-calendar-btn {
  width: 100%;
  padding: 0.85rem 1.5rem;
  background: #1a5c2a;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.dresca-calendar-btn:hover { background: #237a38; }
.dresca-return-btn {
  width: 100%;
  padding: 0.85rem 1.5rem;
  background: #1a1a2e;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
}
.dresca-return-btn:hover { background: #2a2a4e; }

/* ─── TABLET ─── */
@media (max-width: 1024px) {
  .dresca-hero { padding: 2rem; }
  .dresca-form-section { padding: 2rem 1.5rem; }
  .dresca-hero-main h1 { font-size: 3rem !important; }
}

/* ─── MOBILE: Single Background ─── */
@media (max-width: 768px) {
  .dresca-layout {
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    background-image: var(--dresca-hero-bg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  }

  /* Dark overlay for mobile readability */
  .dresca-layout::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 0;
    pointer-events: none;
  }
  .dresca-layout > * { position: relative; z-index: 1; }

  .dresca-hero {
    min-height: auto;
    padding: 2.5rem 1.5rem 1.5rem;
    background-image: none !important;
    background-color: transparent;
    flex: none;
    text-align: center;
  }
  .dresca-hero-overlay { display: none; }
  .dresca-hero-content { height: auto; justify-content: center; }
  .dresca-logo { font-size: 1rem; text-align: center; margin-bottom: 1rem; }
  .dresca-hero-main { text-align: center; }
  .dresca-hero-main h1 {
    font-size: 2.8rem !important;
    text-shadow: 0 2px 20px rgba(0,0,0,0.7), 0 0 40px rgba(0,0,0,0.3);
  }
  .dresca-hero-main h2 { font-size: 0.7rem !important; letter-spacing: 4px; }
  .dresca-hero-details { font-size: 0.85rem !important; }
  .dresca-hero-location { font-size: 0.7rem; }

  .dresca-form-section {
    background: transparent;
    padding: 0 1rem 2rem;
    min-height: auto;
  }
  .dresca-card {
    padding: 2rem 1.5rem;
    margin: 0 auto;
    max-width: 100%;
  }
  .dresca-card-header h2 { font-size: 1.6rem; letter-spacing: 2px; }
  .dresca-floral { width: 130px; height: 130px; }
  .dresca-floral-tr { top: -30px; right: -20px; }
  .dresca-floral-bl { bottom: -30px; left: -20px; }
  .dresca-card-active .dresca-floral-tr { top: -50px; right: -40px; }
  .dresca-card-active .dresca-floral-bl { bottom: -50px; left: -40px; }
  .dresca-attendance { flex-wrap: wrap; gap: 0.75rem; }
  .dresca-separator { display: none; }
  .dresca-checkbox { font-size: 0.8rem; }
  .dresca-submit-btn { padding: 0.85rem; font-size: 0.8rem; letter-spacing: 2px; }
  .dresca-confirmation h2 { font-size: 1.6rem; }

  .dresca-countdown-timer { gap: 0.3rem; margin-top: 1rem; }
  .dresca-countdown-unit { padding: 0.5rem 0.7rem; min-width: 50px; }
  .dresca-countdown-number { font-size: 1.3rem; }
}

/* ─── SMALL MOBILE ─── */
@media (max-width: 400px) {
  .dresca-hero { padding: 1.5rem 1rem; }
  .dresca-hero-main h1 { font-size: 2rem !important; }
  .dresca-card { padding: 1.5rem 1rem; }
  .dresca-card-header { margin-bottom: 1.5rem; }
  .dresca-card-header h2 { font-size: 1.3rem; }
  .dresca-floral { width: 100px; height: 100px; }
  .dresca-floral-tr { top: -20px; right: -15px; }
  .dresca-floral-bl { bottom: -20px; left: -15px; }
  .dresca-countdown-unit { min-width: 42px; padding: 0.4rem 0.5rem; }
  .dresca-countdown-number { font-size: 1.1rem; }
}

/* ═══════════════════════════════════════════════
   EVENT CARDS
   ═══════════════════════════════════════════════ */
.dresca-event-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #888;
  margin: -0.5rem 0 1rem;
}
.dresca-event-card {
  border: 1px solid #e8e0d5;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  background: rgba(250, 248, 245, 0.7);
  transition: all 0.3s ease;
}
.dresca-event-card:hover {
  border-color: #c7ad88;
  box-shadow: 0 2px 8px rgba(199,173,136,0.12);
}
.dresca-event-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}
.dresca-event-icon { font-size: 1.1rem; }
.dresca-event-label {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #0f1f38;
}
.dresca-event-time {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 0.75rem;
}
.dresca-event-buttons {
  display: flex;
  gap: 0.5rem;
}
.dresca-event-btn {
  flex: 1;
  padding: 0.5rem 0.75rem;
  border: 1px solid #d0c8bd;
  border-radius: 8px;
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  transition: all 0.2s ease;
}
.dresca-event-btn:hover { border-color: #c7ad88; }
.dresca-event-accept.dresca-active {
  background: #c7ad88;
  color: #fff;
  border-color: #c7ad88;
}
.dresca-event-decline.dresca-active {
  background: #f5f0eb;
  color: #999;
  border-color: #d0c8bd;
}

/* ═══════════════════════════════════════════════
   ADDITIONAL GUESTS + ADD BUTTON
   ═══════════════════════════════════════════════ */
.dresca-additional-guest {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}
.dresca-add-guest-btn {
  display: block;
  width: 100%;
  padding: 0.65rem;
  margin-top: 1rem;
  border: 2px dashed #c7ad88;
  border-radius: 10px;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #c7ad88;
  cursor: pointer;
  transition: all 0.2s ease;
}
.dresca-add-guest-btn:hover {
  background: rgba(199,173,136,0.08);
  border-color: #b8976c;
  color: #b8976c;
}

/* ═══════════════════════════════════════════════
   SCHEDULE SECTION
   ═══════════════════════════════════════════════ */
.dresca-schedule-section {
  background: linear-gradient(180deg, #0f1f38, #162847);
  padding: 3rem 0;
}
.dresca-schedule-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.dresca-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}
.dresca-section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c7ad88, transparent);
  margin: 1rem auto 2rem;
}
.dresca-schedule-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  margin: -1.5rem 0 2rem;
  letter-spacing: 0.08em;
}
.dresca-timeline {
  position: relative;
  text-align: left;
}
.dresca-timeline-item {
  position: relative;
  padding-left: 3rem;
  padding-bottom: 2rem;
}
.dresca-timeline-dot {
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: rgba(199,173,136,0.15);
  border: 1px solid rgba(199,173,136,0.3);
  border-radius: 50%;
}
.dresca-timeline-line {
  position: absolute;
  left: 0.95rem;
  top: 2.2rem;
  width: 1px;
  height: calc(100% - 2.2rem);
  background: linear-gradient(180deg, rgba(199,173,136,0.5), rgba(199,173,136,0.1));
}
.dresca-timeline-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #e8d5b7;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.dresca-timeline-detail {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.dresca-venue-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding: 1rem 1.25rem;
  background: rgba(199,173,136,0.08);
  border: 1px solid rgba(199,173,136,0.2);
  border-radius: 12px;
}
.dresca-venue-icon { font-size: 1.3rem; }
.dresca-venue-info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.dresca-venue-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #e8d5b7;
  font-weight: 500;
}
.dresca-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #c7ad88;
  text-decoration: none;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(199,173,136,0.3);
  border-radius: 6px;
  transition: all 0.2s ease;
  width: fit-content;
}
.dresca-directions-btn:hover {
  background: rgba(199,173,136,0.15);
  border-color: #c7ad88;
}

/* ═══════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════ */
.dresca-faq-section {
  background: #0f1f38;
  padding: 3rem 0 4rem;
}
.dresca-faq-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.dresca-faq-list {
  text-align: left;
}
.dresca-faq-item {
  border: 1px solid rgba(199,173,136,0.15);
  border-radius: 10px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s ease;
}
.dresca-faq-item:hover {
  border-color: rgba(199,173,136,0.4);
}
.dresca-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #e8d5b7;
}
.dresca-faq-icon {
  font-size: 0.9rem;
  color: #c7ad88;
  transition: transform 0.3s ease;
}
.dresca-faq-open .dresca-faq-icon {
  transform: rotate(90deg);
}
.dresca-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.dresca-faq-open .dresca-faq-answer {
  max-height: 200px;
  padding: 0 1.25rem 1rem;
}
.dresca-faq-answer p {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ─── Mobile adjustments for schedule/FAQ ─── */
@media (max-width: 768px) {
  .dresca-schedule-section, .dresca-faq-section {
    padding: 2.5rem 0;
  }
  .dresca-schedule-inner, .dresca-faq-inner {
    padding: 0 1.5rem;
  }
  .dresca-section-title {
    font-size: 1.6rem;
  }
}

@keyframes dresca-fadeOut { 
  from { opacity: 1; transform: translateY(0); } 
  to { opacity: 0; transform: translateY(-10px); } 
}
