/* ============================================================
   AnkerSepp – Custom CSS
   Nautical Luxury · Navy · Teak · Signal Orange
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy:       #0a1f44;
  --navy-light: #122a5e;
  --navy-dark:  #060f22;
  --orange:     #f4631e;
  --orange-dim: #c04d16;
  --teal:       #0097a7;
  --white:      #f8f5f0;
  --cream:      #ede8df;
  --teak:       #b5813a;
  --teak-light: #d4a55a;
  --text-muted: #8a9ab5;
  --card-bg:    rgba(255,255,255,0.04);
  --border:     rgba(255,255,255,0.08);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--navy-dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---- Utility ---- */
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
}

.section-title span {
  color: var(--teak-light);
  font-style: italic;
}

.divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--teak-light));
  border-radius: 2px;
  margin: 1.5rem 0 2rem;
}

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  background: transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: rgba(6, 15, 34, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white) !important;
}

.navbar-brand .brand-dot {
  color: var(--orange);
}

.lang-switcher {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.lang-btn {
  background: none;
  border: 1px solid transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.55rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}

.lang-btn:hover { color: var(--white); border-color: var(--border); }
.lang-btn.active { color: var(--orange); border-color: var(--orange); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 15, 34, 0.85) 0%,
    rgba(10, 31, 68, 0.65) 50%,
    rgba(0, 0, 0, 0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 0 5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(244, 99, 30, 0.15);
  border: 1px solid rgba(244, 99, 30, 0.4);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease both;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
  animation: fadeInUp 0.8s 0.1s ease both;
}
.highlight {
  color: var(--teak-light);
  font-style: italic;
}

.hero-title .highlight {
  /* kept for specificity in case hero-title needs different behaviour */
  color: var(--teak-light);
  font-style: italic;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  color: rgba(248,245,240,0.82);
  margin-top: 1.25rem;
  max-width: 520px;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-cta {
  margin-top: 2.5rem;
  animation: fadeInUp 0.8s 0.3s ease both;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--orange), var(--orange-dim));
  color: var(--white);
  border: none;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 8px 28px rgba(244, 99, 30, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(244, 99, 30, 0.5);
  color: var(--white);
}

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-outline-custom:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeIn 1s 1s ease both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollDrop 1.8s ease infinite;
}

@keyframes scrollDrop {
  0%   { opacity: 1; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ---- Stats Bar ---- */
.stats-bar {
  background: var(--navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

.stat-item {
  text-align: center;
  padding: 0.5rem 1rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--teak-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* ---- Product Section ---- */
.product-section {
  background: var(--navy-dark);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.product-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,151,167,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.product-image-wrapper {
  position: relative;
}

.product-image-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px var(--border),
    0 40px 80px rgba(0,0,0,0.5),
    0 0 60px rgba(0,151,167,0.1);
}

.product-image-frame img {
  width: 100%;
  border-radius: 16px;
  transition: transform 0.6s ease;
}

.product-image-frame:hover img {
  transform: scale(1.03);
}

.product-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(0,151,167,0.15), transparent 70%);
  pointer-events: none;
  border-radius: 24px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: rgba(0,151,167,0.3);
  background: rgba(0,151,167,0.05);
  transform: translateX(4px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, rgba(0,151,167,0.2), rgba(0,151,167,0.05));
  border: 1px solid rgba(0,151,167,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--teal);
}

.feature-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.feature-text span {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* ---- How It Works ---- */
.how-section {
  background: var(--navy);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.how-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(244,99,30,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.step-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  position: relative;
}

.step-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, rgba(190, 178, 159, 0.5), rgba(181,129,58,0.5));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.step-icon-circle {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(244,99,30,0.15), rgba(244,99,30,0.03));
  border: 1px solid rgba(244,99,30,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.25rem;
  transition: all 0.3s ease;
}

.step-card:hover .step-icon-circle {
  background: linear-gradient(135deg, rgba(244,99,30,0.3), rgba(244,99,30,0.1));
  border-color: var(--orange);
  transform: scale(1.1);
}

.step-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-connector {
  position: absolute;
  top: 50%;
  right: -10%;
  width: 20%;
  height: 1px;
  background: linear-gradient(90deg, var(--border), transparent);
}

/* ---- Waitlist Section ---- */
.waitlist-section {
  background: var(--navy-dark);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.waitlist-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(10,31,68,0.8) 0%, rgba(244,99,30,0.04) 50%, transparent 70%);
  pointer-events: none;
}

.waitlist-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.waitlist-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--teak-light), var(--teal));
}

.waitlist-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.form-label-custom {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.form-control-custom {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--white);
  padding: 0.8rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  width: 100%;
  transition: all 0.2s ease;
  outline: none;
}

.form-control-custom::placeholder { color: rgba(138,154,181,0.5); }

.form-control-custom:focus {
  border-color: var(--teal);
  background: rgba(0,151,167,0.05);
  box-shadow: 0 0 0 3px rgba(0,151,167,0.12);
}

.form-control-custom:focus-visible { outline: none; }

.success-message {
  text-align: center;
  padding: 2rem;
  animation: fadeInUp 0.5s ease;
}

.success-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: successPop 0.5s ease;
}

@keyframes successPop {
  0%   { transform: scale(0); }
  70%  { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.alert-custom {
  background: rgba(244,99,30,0.1);
  border: 1px solid rgba(244,99,30,0.3);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: #f4a88e;
  margin-bottom: 1rem;
}

/* ---- Footer ---- */
.footer {
  background: var(--navy-dark);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.5rem;
}

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

.footer-link {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-link:hover { color: var(--white); }

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: rgba(138,154,181,0.5);
}

/* ---- Impressum ---- */
.impressum-page {
  padding: 8rem 0 5rem;
  min-height: 100vh;
}

.impressum-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3rem;
  max-width: 700px;
}

.impressum-card p, .impressum-card address {
  color: rgba(248,245,240,0.75);
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: normal;
}

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .step-connector { display: none; }
  .waitlist-card { padding: 2rem 1.5rem; }
  .hero-title { font-size: 3rem; }
}
