/* ============================================================
   LUXURY WINE SPAIN · Coming Soon
   style.css — Dark Premium Theme
   ============================================================ */

/* ── Reset & base ──────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold:       #c9a84c;
  --gold-light: #e8c97a;
  --white:      #f5f0e8;
  --off-white:  rgba(245,240,232,0.72);
  --black:      #000000;
  --bg-dark:    #080808;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Montserrat', Helvetica, Arial, sans-serif;
}

html, body {
  width: 100%;
  min-height: 100%;
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Background layer ──────────────────────────────────────── */
.bg-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.bg-image {
  position: absolute;
  inset: 0;
  background-image: url('Background.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  opacity: 0;
  animation: bgFadeIn 2.4s ease forwards 0.2s;
  filter: brightness(0.45) saturate(0.6);
}

/* Radial vignette — edges fully black, center transparent */
.bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 75% 75% at 50% 50%,
    transparent 0%,
    rgba(0,0,0,0.5) 55%,
    rgba(0,0,0,0.86) 80%,
    rgba(0,0,0,0.97) 100%
  );
}

@keyframes bgFadeIn {
  to { opacity: 1; }
}

/* ── Canvas particles ──────────────────────────────────────── */
#particles {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* ── Page wrapper ──────────────────────────────────────────── */
.page-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  min-height: 100vh;         /* fallback */
  padding: clamp(28px, 7vw, 64px) clamp(20px, 5vw, 48px);
  text-align: center;
  gap: clamp(12px, 2.8vw, 22px);
}

/* ── Reveal animation utility ──────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(22px);
  animation: revealUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Domain tag ────────────────────────────────────────────── */
.domain-tag {
  font-family: var(--font-sans);
  font-size: clamp(9px, 2.2vw, 12px);
  font-weight: 400;
  letter-spacing: 0.28em;
  color: var(--off-white);
  opacity: 0;                 /* controlled by reveal-up */
}

/* ── Logo ──────────────────────────────────────────────────── */
.logo-wrap {
  margin-top: 4px;
}

.logo {
  width: clamp(90px, 22vw, 200px);
  height: auto;
  filter: drop-shadow(0 0 18px rgba(201,168,76,0.18));
  animation: logoGlow 4s ease-in-out infinite alternate 2s;
}

@keyframes logoGlow {
  from { filter: drop-shadow(0 0 12px rgba(201,168,76,0.12)); }
  to   { filter: drop-shadow(0 0 28px rgba(201,168,76,0.35)); }
}

/* ── Main heading ──────────────────────────────────────────── */
.heading-main {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(2.8rem, 13vw, 8rem);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--white);
  text-shadow: 0 0 60px rgba(201,168,76,0.08);
  opacity: 0;               /* reveal-up */
}

/* ── Sub-heading ───────────────────────────────────────────── */
.heading-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.2rem, 5vw, 2.6rem);
  color: var(--gold-light);
  letter-spacing: 0.02em;
  opacity: 0;
}

/* ── Decorative gold divider ───────────────────────────────── */
.divider {
  width: clamp(40px, 12vw, 80px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 2px auto;
  opacity: 0;
}

/* ── Tagline ───────────────────────────────────────────────── */
.tagline {
  font-family: var(--font-sans);
  font-size: clamp(9px, 2.6vw, 13px);
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--off-white);
  opacity: 0;
}

.tagline .accent {
  color: var(--gold);
}

/* ── CTA section ───────────────────────────────────────────── */
.cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
  opacity: 0;
}

.cta-label {
  font-size: clamp(10px, 2.4vw, 12px);
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--off-white);
  text-transform: uppercase;
}

/* WhatsApp button */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: clamp(12px, 3vw, 16px) clamp(28px, 6vw, 44px);
  border: 1.5px solid rgba(245,240,232,0.55);
  border-radius: 60px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: clamp(14px, 3.6vw, 18px);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.35s ease, border-color 0.35s ease,
              box-shadow 0.35s ease, transform 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}

.whatsapp-btn:hover,
.whatsapp-btn:focus-visible {
  background: rgba(245,240,232,0.09);
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(201,168,76,0.22);
  transform: translateY(-2px);
  outline: none;
}

.whatsapp-btn:active {
  transform: translateY(0);
}

.icon-wa {
  width: clamp(18px, 4vw, 22px);
  height: clamp(18px, 4vw, 22px);
  flex-shrink: 0;
  color: #4ad36a;   /* WhatsApp green accent */
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  opacity: 0;
}

.footer-link,
.footer-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: clamp(12px, 2.8vw, 14px);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--off-white);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--gold-light);
  transform: translateX(2px);
  outline: none;
}

.icon-social {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.75;
}

/* ── Responsive tweaks ─────────────────────────────────────── */
@media (max-width: 480px) {
  .heading-main {
    letter-spacing: 0.02em;
  }
  .whatsapp-btn {
    padding: 13px 28px;
  }
}

/* ── Subtle shimmer on heading (optional luxury touch) ──────── */
@keyframes shimmer {
  0%   { background-position: -400% center; }
  100% { background-position: 400% center; }
}
