/* ===== SAKPAS VERBLYF — Coming Soon ===== */

:root {
  --accent: #e8622c;
  --accent-light: #f59e0b;
  --accent-glow: rgba(232, 98, 44, 0.35);
  --bg-dark: #0f1117;
  --bg-card: #161821;
  --text-main: #f8f8f2;
  --text-soft: rgba(248, 248, 242, 0.7);
  --text-muted: rgba(248, 248, 242, 0.45);
  --radius: 1rem;
}

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

html,
body {
  height: 100%;
}

body {
  font-family: "DM Sans", "Segoe UI", sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ===== LAYOUT ===== */

/* ===== FULL HERO LAYOUT ===== */
.hero-full {
  min-height: 100vh;
  width: 100vw;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1400&q=80")
    center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 17, 23, 0.82) 0%,
    rgba(15, 17, 23, 0.18) 60%,
    rgba(232, 98, 44, 0.10) 100%
  );
  z-index: 1;
}

.hero-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  width: 100%;
  transform: translateY(-6vh);
  transition: transform 280ms ease;
}

/* ===== LEFT — HERO IMAGE ===== */
.hero-image {
  position: relative;
  background:
    url("https://images.unsplash.com/photo-1596394516093-501ba68a0ba6?auto=format&fit=crop&w=1400&q=80")
    center / cover no-repeat;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 17, 23, 0.78) 0%,
    rgba(15, 17, 23, 0.12) 40%,
    rgba(232, 98, 44, 0.10) 100%
  );
}

.image-tag {
  position: relative;
  z-index: 2;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
}

/* ===== RIGHT — CONTENT ===== */


/* Badge */
.viewer-count {
  font-size: clamp(0.86rem, 1.4vw, 1rem);
  font-weight: 500;
  color: var(--text-soft);
  margin-bottom: 0.75rem;
  animation: fadeSlideUp 700ms ease-out both;
}

.viewer-number {
  color: var(--accent-light);
  font-weight: 700;
}

.badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  margin-bottom: 1.8rem;
  animation: fadeSlideUp 700ms ease-out both;
}

/* Brand name */
.brand-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  animation: fadeSlideUp 700ms 120ms ease-out both;
}

.brand-name span {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Tagline */
.tagline {
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 26rem;
  margin-bottom: 1.8rem;
  animation: fadeSlideUp 700ms 240ms ease-out both;
}

/* Divider */
.divider {
  width: 3.5rem;
  height: 3px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  margin-bottom: 2rem;
  animation: fadeSlideUp 700ms 340ms ease-out both;
}

/* ===== EMAIL FORM ===== */
.notify-form {
  display: flex;
  gap: 0.6rem;
  animation: fadeSlideUp 700ms 440ms ease-out both;
}

.notify-form input {
  flex: 1;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.notify-form input::placeholder {
  color: var(--text-muted);
}

.notify-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.notify-form button {
  padding: 0.85rem 1.6rem;
  border: none;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}

.notify-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-glow);
}

.notify-form button:active {
  transform: translateY(0);
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  animation: fadeSlideUp 700ms 540ms ease-out both;
}

/* Footer */
.footer {
  margin-top: auto;
  padding-top: 3rem;
  position: relative;
  z-index: 1;
}

.footer p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  from {
    opacity: 0.5;
    transform: scale(1);
  }
  to {
    opacity: 1;
    transform: scale(1.08);
  }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 860px) {
  .hero-full {
    min-height: 100vh;
    padding: 0;
  }
  .hero-center {
    padding: 2.2rem 1.2rem 2rem;
    transform: translateY(-3vh);
  }
  .brand-name {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }
}

@media (max-width: 480px) {
  .page {
    grid-template-rows: 38vh 1fr;
  }

  .hero-image {
    min-height: 38vh;
  }

  .content {
    padding: 1.8rem 1.2rem 1.5rem;
  }

  .brand-name {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .hero-center {
    transform: translateY(-1.5vh);
  }
}
