/* ==========================================================
   MAJÉ SPORTSWEAR — Coming Soon Stylesheet
   Palette inspired by brand aesthetic: Blush Rose & Charcoal
   ========================================================== */

:root {
  --color-bg-base: #fcf6f7;
  --color-bg-accent: #f7e6e9;
  --color-rose-light: #faecef;
  --color-rose-mid: #eecad1;
  --color-rose-dark: #cca1a8;
  --color-text-main: #181818;
  --color-text-muted: #6b6365;
  --color-white: #ffffff;
  --color-gold-accent: #d8a47f;
  --font-sans: 'Montserrat', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-quote: 'Cormorant Garamond', serif;
  --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg-base);
  color: var(--color-text-main);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow-x: hidden;
  padding: 2.5rem 1rem;
}

/* ================= Ambient Background Shapes ================= */
.bg-shape {
  position: fixed;
  border-radius: 50%;
  filter: blur(75px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.65;
}

.shape-1 {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, #f3d4d9 0%, rgba(243, 212, 217, 0) 70%);
  top: -80px;
  left: -100px;
  animation: floatSlow 14s ease-in-out infinite alternate;
}

.shape-2 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, #fce8eb 0%, rgba(252, 232, 235, 0) 70%);
  bottom: -120px;
  right: -100px;
  animation: floatSlow 18s ease-in-out infinite alternate-reverse;
}

.shape-3 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, #ecd0d6 0%, rgba(236, 208, 214, 0) 70%);
  top: 45%;
  left: 55%;
  transform: translate(-50%, -50%);
  animation: pulseScale 10s ease-in-out infinite alternate;
}

.bg-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.35) 0%, rgba(253, 245, 246, 0.85) 100%);
  z-index: 0;
  pointer-events: none;
}

@keyframes floatSlow {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(40px, 30px) rotate(15deg); }
}

@keyframes pulseScale {
  0% { transform: scale(0.9); opacity: 0.4; }
  100% { transform: scale(1.15); opacity: 0.7; }
}

/* ================= Main Container ================= */
.page-container {
  width: 100%;
  max-width: 720px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.card-wrapper {
  width: 100%;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(238, 202, 209, 0.65);
  border-radius: 32px;
  padding: 3.8rem 2.8rem;
  box-shadow: 
    0 24px 60px rgba(189, 142, 150, 0.14),
    0 4px 12px rgba(0, 0, 0, 0.03);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ================= Logo Section ================= */
.logo-container {
  position: relative;
  margin-bottom: 2rem;
  display: inline-block;
}

.brand-logo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(238, 202, 209, 0.85);
  box-shadow: 0 12px 32px rgba(220, 170, 178, 0.38);
  transition: var(--transition-smooth);
}

.brand-logo:hover {
  transform: scale(1.03) rotate(1deg);
  box-shadow: 0 16px 42px rgba(220, 170, 178, 0.48);
}

.logo-glow {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238, 202, 209, 0.65) 0%, transparent 70%);
  z-index: -1;
  animation: pulseScale 4s ease-in-out infinite alternate;
}

/* ================= Header & Copy ================= */
.badge {
  display: inline-block;
  padding: 0.4rem 1.3rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7a4e55;
  background-color: #fce8eb;
  border: 1px solid rgba(238, 202, 209, 0.8);
  border-radius: 50px;
  margin-bottom: 1.1rem;
}

.main-title {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-text-main);
  line-height: 1.15;
  margin-bottom: 0.7rem;
}

.tagline {
  font-family: var(--font-quote);
  font-size: 1.65rem;
  font-style: italic;
  font-weight: 600;
  color: #75464e;
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}

.tagline .heart {
  display: inline-block;
  color: #c96577;
  font-style: normal;
  animation: heartBeat 2s ease-in-out infinite;
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}

.description {
  max-width: 520px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 0 auto 2.8rem;
  font-weight: 400;
}

/* ================= Countdown Section ================= */
.countdown-section {
  width: 100%;
  margin-bottom: 2.8rem;
}

.countdown-label {
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8c646b;
  margin-bottom: 1.4rem;
}

.countdown-label strong {
  color: var(--color-text-main);
  border-bottom: 2px solid var(--color-rose-mid);
  padding-bottom: 2px;
}

.countdown-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: nowrap;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.time-box {
  background: #ffffff;
  border: 1px solid rgba(238, 202, 209, 0.75);
  box-shadow: 0 8px 24px rgba(215, 172, 179, 0.2);
  border-radius: 20px;
  width: 92px;
  height: 98px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.time-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(215, 172, 179, 0.32);
  border-color: var(--color-rose-mid);
}

.time-box .number {
  font-family: var(--font-sans);
  font-size: 2.45rem;
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1;
}

.countdown-item .label {
  margin-top: 0.65rem;
  font-size: 0.74rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-text-muted);
}

.separator {
  font-size: 2rem;
  font-weight: 300;
  color: var(--color-rose-dark);
  align-self: flex-start;
  margin-top: 1.6rem;
}

.countdown-finished {
  padding: 2rem;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--color-rose-mid);
  color: var(--color-text-main);
}

.countdown-finished h2 {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
  color: #834752;
}

.hidden {
  display: none !important;
}

/* ================= Connect Section ================= */
.connect-prompt {
  margin-bottom: 1.2rem;
}

.connect-prompt p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

/* ================= Footer Section ================= */
.footer-section {
  width: 100%;
  border-top: 1px solid rgba(238, 202, 209, 0.5);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  color: #4a3e40;
  border: 1px solid rgba(238, 202, 209, 0.75);
  box-shadow: 0 4px 14px rgba(215, 172, 179, 0.18);
  text-decoration: none;
  font-size: 1.2rem;
  transition: var(--transition-smooth);
}

.social-btn:hover {
  background-color: #1a1a1a;
  color: #ffffff;
  border-color: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.copyright {
  font-size: 0.76rem;
  color: #8c8284;
  letter-spacing: 0.05em;
}

/* ================= Responsive Styles ================= */
@media (max-width: 640px) {
  body {
    padding: 1.5rem 0.8rem;
  }

  .card-wrapper {
    padding: 2.5rem 1.2rem;
    border-radius: 24px;
  }

  .brand-logo {
    width: 140px;
    height: 140px;
  }

  .main-title {
    font-size: 2.3rem;
  }

  .tagline {
    font-size: 1.3rem;
  }

  .description {
    font-size: 0.9rem;
    margin-bottom: 2.2rem;
  }

  .countdown-grid {
    gap: 0.4rem;
  }

  .time-box {
    width: 68px;
    height: 74px;
    border-radius: 14px;
  }

  .time-box .number {
    font-size: 1.7rem;
  }

  .countdown-item .label {
    font-size: 0.65rem;
  }

  .separator {
    font-size: 1.4rem;
    margin-top: 1.2rem;
  }
}
