/* =========================================================
   sunshine on you — Coming Soon Single-Screen
   Brand Colors: #2B0600 (text) | #F5944B (accent) | #FBF6F1 (cream)
   Fonts: Playfair Display (display) + Montserrat (body)
   ========================================================= */

/* ---------- 1. FONTS (lokal, DSGVO-konform) ---------- */
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/PlayfairDisplay-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/PlayfairDisplay-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- 2. CSS VARIABLES ---------- */
:root {
  --c-text:        #2B0600;
  --c-text-soft:   #4a1a13;
  --c-accent:      #F5944B;
  --c-accent-dark: #d97a32;
  --c-bg:          #FBF6F1;

  --f-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --f-body:    'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --sp-1:  0.5rem;
  --sp-2:  1rem;
  --sp-3:  1.5rem;
  --sp-4:  2rem;

  --t-fast: 180ms ease-out;
}

/* ---------- 3. RESET ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--f-body);
  font-size: clamp(1rem, 1vw + 0.75rem, 1.1875rem);
  line-height: 1.55;
  color: var(--c-text);
  background: var(--c-bg);
  min-height: 100vh;
  min-height: 100svh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; height: auto; display: block; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast), opacity var(--t-fast);
}
a:hover, a:focus-visible { color: var(--c-accent-dark); }

:focus-visible {
  outline: 2px solid var(--c-accent-dark);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- 4. BACKGROUND IMAGE ---------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url('../assets/bg-sunshine.jpg') center center / cover no-repeat;
  pointer-events: none;
}

/* ---------- 5. LAYOUT: SINGLE-SCREEN HERO ---------- */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100vh;
  height: 100svh;
  padding: clamp(var(--sp-2), 2.5vh, var(--sp-4)) clamp(1.5rem, 3vw, 3rem) var(--sp-2);
  position: relative;
  text-align: center;
  overflow: hidden;
}

/* COMING SOON */
.coming-soon {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.25rem, 2.2vw + 0.5rem, 2.5rem);
  letter-spacing: 0.22em;
  color: var(--c-text);
  position: relative;
  z-index: 5;
  flex-shrink: 0;
}

/* ---------- 6. SUN STAGE ---------- */
.sun-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: auto 0;
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
}

/* ---------- 6.1 TEXT COLUMNS ---------- */
.text-left,
.text-right {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: clamp(1.1875rem, 1vw + 0.75rem, 1.4375rem);
  line-height: 1.6;
  color: var(--c-text);
  width: clamp(250px, 25vw, 380px);
  position: relative;
  z-index: 3;
  padding: var(--sp-1) 0;
  text-shadow:
    0 0 12px rgba(251, 246, 241, 0.9),
    0 0 28px rgba(251, 246, 241, 0.6);
}

.text-left {
  text-align: left;
  position: absolute;
  left: 5.55%;     /* 80px / 1440 */
  top: 27.8%;      /* 250px / 900 */
}

.text-right {
  text-align: left;
  position: absolute;
  left: 76.4%;     /* 1100px / 1440 */
  top: 27.8%;      /* 250px / 900 */
}

.text-left strong,
.text-right strong {
  font-weight: 700;
}

/* ---------- 7. BRAND TYPOGRAPHY (centered in sun area) ---------- */
.sun {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sun-glow { display: none; }

.brand {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.8rem, 8vw + 0.5rem, 7.5rem);
  line-height: 0.95;
  color: var(--c-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.02em;
  position: relative;
  z-index: 4;
  letter-spacing: -0.025em;
  text-rendering: optimizeLegibility;
}

.brand span { display: block; }

.brand span:nth-child(2) {
  font-style: italic;
  font-weight: 400;
  font-size: 0.62em;
  margin: 0.05em 0;
  letter-spacing: 0;
}

/* ---------- 8. FOOTER ---------- */
.site-footer {
  padding: var(--sp-2) var(--sp-3);
  text-align: center;
  font-family: var(--f-body);
  flex-shrink: 0;
  position: relative;
  z-index: 5;
}

.footer-nav {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-2);
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  font-weight: 500;
  color: var(--c-text);
  margin-bottom: var(--sp-1);
}

.footer-nav .sep { opacity: 0.4; }

.footer-copy {
  font-size: 0.75rem;
  color: var(--c-text-soft);
  opacity: 0.7;
}

/* ---------- 9. RESPONSIVE: TABLET ---------- */
@media (max-width: 1100px) {
  .sun-stage {
    flex-direction: column;
    gap: 120px;
  }

  .text-left,
  .text-right {
    position: static;
    text-align: center;
    width: min(80vw, 380px);
    margin: 0;
  }

  .brand {
    font-size: clamp(2.5rem, 10vw, 5.5rem);
  }

  .hero {
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
  }
}

/* ---------- 10. RESPONSIVE: MOBILE ---------- */
@media (max-width: 600px) {
  .hero {
    padding: var(--sp-2);
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
  }

  .coming-soon {
    letter-spacing: 0.16em;
    font-size: clamp(1rem, 4vw, 1.5rem);
  }

  .sun-stage { gap: 120px; }

  .text-left,
  .text-right {
    font-size: 1rem;
    width: min(85vw, 340px);
  }

  .brand {
    font-size: clamp(2rem, 12vw, 3.8rem);
  }

  .footer-nav {
    gap: 0.4rem;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
  }
}
