/* =========================================
   COMPONENTS — components.css
   ─────────────────────────────────────────
   Self-contained UI pieces. Each section is
   clearly delimited and independently editable.

   Sections:
   1. Badge
   2. Headline & Tagline
   3. Countdown
   4. Notify Form
   5. Features Strip
   6. Contact Chips (Footer)
   ========================================= */

/* ─────────────────────────────────────────
   1. BADGE
   ───────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 0.45rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  animation: fadeSlideDown 0.9s ease both;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

/* ─────────────────────────────────────────
   2. HEADLINE & TAGLINE
   ───────────────────────────────────────── */
.headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  line-height: 1;
  animation: fadeSlideUp 1s ease 0.2s both;
}

.headline-magic {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.08em;
  opacity: 0.85;
}

  .headline-happening {
    font-family: 'Playfair Display', serif;
    font-size: clamp(5rem, 14vw, 11rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 0.9;
    background: linear-gradient(
      135deg,
      var(--cream)       0%,
      var(--gold-light)  40%,
      var(--gold)        65%,
      var(--cream)       100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 24px rgba(201, 168, 76, 0.3));
    position: relative;
  }

/* Shimmer sweep */
.headline-happening::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent          20%,
    rgba(255,255,255,0.25) 50%,
    transparent          80%
  );
  background-size: 200% 100%;
  animation: shimmer 4s linear 1.5s infinite;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.82);
  max-width: 520px;
  animation: fadeSlideUp 1s ease 0.4s both;
}

.tagline em {
  color: var(--gold-light);
  font-style: italic;
}

/* ─────────────────────────────────────────
   3. COUNTDOWN
   ───────────────────────────────────────── */
.countdown-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: fadeSlideUp 1s ease 0.55s both;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 1.1rem 1.6rem;
  min-width: 88px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.countdown-item:hover {
  border-color: rgba(201, 168, 76, 0.55);
  box-shadow: var(--shadow-glow);
}

.cd-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  min-width: 2ch;
  text-align: center;
  transition: transform 0.15s ease;
}

.cd-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
}

.countdown-sep {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.5;
  padding-bottom: 1.2rem;
  animation: blinkSep 1s step-end infinite;
}

/* ─────────────────────────────────────────
   4. NOTIFY FORM
   ───────────────────────────────────────── */
.notify-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  animation: fadeSlideUp 1s ease 0.7s both;
}

.notify-label {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(245, 240, 232, 0.55);
  text-transform: uppercase;
}

.notify-form {
  display: flex;
  align-items: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  border-radius: 999px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.notify-form:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.18), var(--shadow-soft);
}

.notify-input {
  background: transparent;
  border: none;
  outline: none;
  padding: 0.85rem 1.5rem;
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  width: 260px;
  caret-color: var(--gold);
}

.notify-input::placeholder {
  color: rgba(245, 240, 232, 0.35);
}

.notify-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a0f00;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  padding: 0.85rem 1.5rem;
  border-radius: 0 999px 999px 0;
  transition: opacity 0.25s ease, transform 0.2s ease;
  white-space: nowrap;
}

.notify-btn:hover  { opacity: 0.9; transform: translateX(2px); }
.notify-btn:active { transform: scale(0.97); }

.notify-success {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--gold-light);
  font-style: italic;
  min-height: 1.4em;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.notify-success.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────
   5. FEATURES STRIP
   ───────────────────────────────────────── */
.features-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  max-width: 680px;
  animation: fadeSlideUp 1s ease 0.85s both;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.88);
  letter-spacing: 0.02em;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  cursor: default;
}

.feature-pill:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.35);
  color: var(--gold-light);
}

.feature-icon {
  font-size: 1rem;
}

/* ─────────────────────────────────────────
   6. CONTACT CHIPS (Footer)
   ───────────────────────────────────────── */
.contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.contact-chip {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  text-decoration: none;
  color: var(--cream);
  min-width: 220px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-chip:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.2);
}

.contact-chip--whatsapp:hover {
  border-color: var(--whatsapp);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.2);
}

.contact-chip-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--gold-light);
  flex-shrink: 0;
}

.contact-chip--whatsapp .contact-chip-icon {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.25);
  color: var(--whatsapp);
}

.contact-chip-text {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.contact-chip-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.45);
}

.contact-chip-value {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--cream);
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(245, 240, 232, 0.28);
  letter-spacing: 0.06em;
  text-align: center;
}
