﻿/* =============================================
   BELAA - Launching Soon | styles.css
   ============================================= */

/* ---- Melfira ---- */
@font-face {
  font-family: 'Melfira';
  src: url('fonts/melfira/melfira-light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Melfira';
  src: url('fonts/melfira/melfira-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Melfira';
  src: url('fonts/melfira/melfira-medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Melfira';
  src: url('fonts/melfira/melfira-semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Melfira';
  src: url('fonts/melfira/melfira-bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---- Zalando Sans Expanded (variable font — covers all weights) ---- */
@font-face {
  font-family: 'Zalando Sans Expanded';
  src: url('fonts/Zalando Sans Expanded/Zalando_Sans_Expanded/ZalandoSansExpanded-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Zalando Sans Expanded';
  src: url('fonts/Zalando Sans Expanded/Zalando_Sans_Expanded/ZalandoSansExpanded-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* ---- Static weights as fallbacks ---- */
@font-face {
  font-family: 'Zalando Sans Expanded';
  src: url('fonts/Zalando Sans Expanded/Zalando_Sans_Expanded/static/ZalandoSansExpanded-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Zalando Sans Expanded';
  src: url('fonts/Zalando Sans Expanded/Zalando_Sans_Expanded/static/ZalandoSansExpanded-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Zalando Sans Expanded';
  src: url('fonts/Zalando Sans Expanded/Zalando_Sans_Expanded/static/ZalandoSansExpanded-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* -- Page wrapper -- */
.page {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: #e8ddd3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -- Background image -- */
.bg-layer {
  position: absolute;
  inset: 0;
  background-image: url("bg.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* -- Content layer -- */
.content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0;
  padding: 0 24px;
  width: 100%;
}

/* -- Headline "Launching soon!" -- */
.headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.95;
  margin-bottom: 40px;
}

.headline-line {
  font-family: 'Melfira', serif;
  font-style: normal;
  font-weight: 300;
  font-size: clamp(72px, 10.5vw, 148px);
  color: #1a1410;
  display: block;
  text-align: center;
  letter-spacing: -0.01em;
}

/* -- Subtitle -- */
.subtitle {
  font-family: 'Zalando Sans Expanded', sans-serif;
  font-weight: 200;
  font-size: clamp(15px, 1.55vw, 22px);
  line-height: 1.55;
  text-align: center;
  letter-spacing: 0.02em;
  color: #1a1410;
  margin-bottom: 44px;
  max-width: 520px;
}

.subtitle strong {
  font-weight: 400;
}

/* -- CTA Button -- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 52px;
  background: #FFFFFF;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 28px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  font-family: 'Zalando Sans Expanded', sans-serif;
  font-weight: 400;
  font-size: clamp(11px, 0.9vw, 14px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1a1410;
}

.cta-btn:hover {
  background: #1a1410;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(26, 20, 16, 0.15);
}

/* -- Tagline -- */
.tagline {
  font-family: 'Zalando Sans Expanded', sans-serif;
  font-weight: 200;
  font-size: clamp(12px, 0.95vw, 15px);
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-align: center;
  color: #3a302a;
}

/* -- Entrance animations -- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.headline { animation: fadeUp 1s ease 0.1s both; }
.subtitle { animation: fadeUp 1s ease 0.4s both; }
.cta-btn  { animation: fadeUp 1s ease 0.65s both; }
.tagline  { animation: fadeUp 1s ease 0.85s both; }
