/* =============================================================
   Nadine & Maui — Save the Date
   Eigenständiges Stylesheet, unabhängig von style.css
   ============================================================= */

:root {
  --ozean: #1a6b8a;
  --tiefsee: #0d3d52;
  --sand: #d6cdbb;
  --seegras: #2d8a6e;
  --koralle: #e8a87c;
  --white: #ffffff;
  --text: #1c2b33;
  --text-soft: #4a5d68;

  --shadow-sm: 0 2px 8px rgba(13, 61, 82, 0.08);
  --shadow-md: 0 8px 24px rgba(13, 61, 82, 0.15);
  --shadow-lg: 0 16px 48px rgba(13, 61, 82, 0.25);

  --radius: 16px;
  --radius-lg: 24px;

  --font-script: 'Pacifico', cursive;
  --font-body: 'Raleway', system-ui, -apple-system, sans-serif;
}

/* =============================================================
   RESET
   ============================================================= */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  background: url('imgs/IMG_9011.jpeg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  color: var(--white);
  padding: 5rem 2rem 4rem;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 61, 82, 0.88) 0%,
    rgba(13, 61, 82, 0.30) 45%,
    rgba(13, 61, 82, 0.00) 70%
  );
}

.hero__header {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem 3rem 2rem;
}

.hero__eyebrow {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--koralle);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero__title {
  font-family: var(--font-script);
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero__amp {
  color: var(--koralle);
  display: inline-block;
  transform: scale(1.1);
}

.hero__date {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero__tag {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic;
  max-width: 560px;
  margin: 0 auto 2rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero__cta {
  display: inline-block;
  padding: 1rem 2.4rem;
  background: var(--koralle);
  color: var(--tiefsee);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s, box-shadow 0.25s;
}

.hero__cta:hover {
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: var(--shadow-lg);
}

/* Wave divider (für spätere Erweiterung) */
.wave-divider {
  position: absolute;
  left: 0; right: 0;
  width: 100%;
  height: 80px;
  display: block;
  z-index: 2;
}

.wave-divider--bottom { bottom: -1px; }

/* =============================================================
   KALENDER-ICONS
   ============================================================= */
.cal-icons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2rem;
}

.cal-icon {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-decoration: none;
  transition: background 0.25s, transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  min-width: 64px;
}

.cal-icon svg {
  width: 28px;
  height: 28px;
  display: block;
  flex-shrink: 0;
}

.cal-icon__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

.cal-icon:hover {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.65);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(13, 61, 82, 0.35);
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
   
@media (max-width: 480px) {
  .hero {
    padding: 3.5rem 1rem 2.5rem;
  }

  .hero__content {
    padding: 1.8rem 1.4rem 1.5rem;
  }

  .cal-icons {
    gap: 0.8rem;
  }

  .cal-icon {
    min-width: 56px;
    padding: 0.6rem 0.75rem;
  }
}

@media (max-width: 375px) {
  .hero {
    padding: 3.5rem 1rem 1.5rem;
  }

  .hero__content {
    padding: 1.2rem 1.2rem 1rem;
  }

  .hero__date {
    margin-bottom: 0.5rem;
  }

  .hero__tag {
    margin: 0 auto 1rem;
  }

  .cal-icons {
    gap: 0.8rem;
  }

  .cal-icon {
    min-width: 56px;
    padding: 0.6rem 0.75rem;
  }
}