/* naampje Website Styles */

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/dmsans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/dmsans-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/playfairdisplay-400italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/playfairdisplay-700.woff2') format('woff2');
}

:root {
  --color-cream:    #fdf8f3;
  --color-blush:    #f2c4b8;
  --color-sage:     #8fad9a;
  --color-dusty:    #c9b8c4;
  --color-deep:     #2d2420;
  --color-warm:     #9b6b5a;
  --color-gold:     #c8a97a;
  --color-card-bg:  #fff9f5;
  --color-boy-blue: #89b4d8;
  --bg-primary:   var(--color-cream);
  --bg-card:      var(--color-card-bg);
  --fg-primary:   var(--color-deep);
  --fg-secondary: var(--color-warm);
  --fg-tertiary:  var(--color-dusty);
  --accent-primary: var(--color-sage);
  --border-subtle: rgba(201, 184, 196, 0.3);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--fg-primary);
  overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 243, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 184, 196, 0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--fg-primary);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--fg-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--fg-primary); }

.nav-cta {
  background: var(--accent-primary);
  color: white !important;
  padding: 10px 24px;
  border-radius: 100px;
  transition: opacity 0.2s;
}

.nav-cta:hover { opacity: 0.85; }

/* ===== HERO ===== */
.hero {
  padding: 80px 32px 120px;
  background: linear-gradient(180deg, var(--bg-primary) 0%, #f5f0eb 100%);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--fg-primary);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--color-warm);
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 18px;
  color: var(--fg-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Phone Mockup */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-mockup { display: none; }

/* ===== MATCH MOCKUP (hero) ===== */
.match-mockup {
  width: 270px;
  height: 560px;
  background: #F2F2F7;
  border-radius: 48px;
  box-shadow: 0 40px 80px rgba(45, 36, 32, 0.15);
  position: relative;
  overflow: hidden;
}

.mm-island {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 28px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
}

.mm-statusbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  padding: 18px 24px 0;
}

.mm-time {
  font-family: -apple-system, sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #000;
  display: block;
  text-align: center;
}

.mm-screen {
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  padding: 58px 20px 44px;
}

.mm-header {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--fg-primary);
  text-align: center;
  margin-bottom: 20px;
}

.mm-card-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mm-card {
  width: 100%;
  background: var(--bg-card);
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(45, 36, 32, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 52px 24px;
  gap: 6px;
  position: relative;
}

.mm-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-blush);
}

.mm-name {
  font-family: var(--font-serif);
  font-size: 46px;
  font-weight: 700;
  color: var(--fg-primary);
  line-height: 1.05;
  margin-top: 8px;
}

.mm-lastname {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--fg-primary);
  margin-top: -4px;
  margin-bottom: 8px;
}

.mm-origin {
  font-family: var(--font-sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--fg-secondary);
  margin-top: 4px;
}

.mm-meaning {
  font-family: var(--font-sans);
  font-size: 11px;
  font-style: italic;
  color: #7a6660;
  margin-top: 2px;
}

/* Hearts */
.mm-hearts {
  position: absolute;
  inset: -60px;
  pointer-events: none;
  overflow: visible;
  z-index: 5;
}

.mm-heart {
  position: absolute;
  animation: mm-float 4s ease-in-out infinite;
  opacity: 0;
}

@keyframes mm-float {
  0%   { opacity: 0; transform: translateY(0) scale(0.4) rotate(0deg); }
  15%  { opacity: 1; }
  85%  { opacity: 0.8; }
  100% { opacity: 0; transform: translateY(-220px) scale(1) rotate(15deg); }
}

.mm-heart:nth-child(1)  { left: 10%; bottom: 20%; animation-delay: 0s; }
.mm-heart:nth-child(2)  { left: 25%; bottom: 30%; animation-delay: 0.4s; }
.mm-heart:nth-child(3)  { left: 40%; bottom: 25%; animation-delay: 0.8s; }
.mm-heart:nth-child(4)  { left: 55%; bottom: 35%; animation-delay: 1.2s; }
.mm-heart:nth-child(5)  { left: 70%; bottom: 28%; animation-delay: 1.6s; }
.mm-heart:nth-child(6)  { left: 85%; bottom: 22%; animation-delay: 0.6s; }
.mm-heart:nth-child(7)  { left: 15%; bottom: 32%; animation-delay: 1.8s; }
.mm-heart:nth-child(8)  { left: 80%; bottom: 26%; animation-delay: 1s; }
.mm-heart:nth-child(9)  { left: 35%; bottom: 24%; animation-delay: 2.2s; }
.mm-heart:nth-child(10) { left: 65%; bottom: 31%; animation-delay: 2.6s; }
.mm-heart:nth-child(11) { left: 20%; bottom: 27%; animation-delay: 3s; }
.mm-heart:nth-child(12) { left: 75%; bottom: 33%; animation-delay: 0.2s; }

.mm-homebar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 6px;
  z-index: 20;
}

.mm-bar {
  width: 100px;
  height: 4px;
  border-radius: 100px;
  background: rgba(0,0,0,0.2);
}

.phone-mockup {
  width: 300px;
  height: 620px;
  background: #F2F2F7;
  border-radius: 48px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(45, 36, 32, 0.15);
  position: relative;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 28px;
  background: #1a1008;
  border-radius: 20px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 28px;
}

.mockup-card {
  width: 100%;
  background: var(--bg-card);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(45, 36, 32, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-blush);
}

.mockup-name {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--fg-primary);
  margin-top: 8px;
}

.mockup-lastname {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--fg-primary);
  margin-top: -4px;
}

.mockup-origin {
  font-family: var(--font-sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--fg-secondary);
  margin-top: 12px;
}

.mockup-meaning {
  font-family: var(--font-sans);
  font-size: 11px;
  font-style: italic;
  color: #7a6660;
  margin-top: 2px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  cursor: pointer;
  border: none;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-primary  { background: var(--accent-primary); color: white; }
.btn-secondary { background: transparent; color: var(--fg-secondary); border: 1px solid var(--border-subtle); }
.btn-gold     { background: var(--color-gold); color: white; }

/* Store badge links */
.store-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.store-badges a {
  display: inline-block;
  transition: opacity 0.15s, transform 0.15s;
}

.store-badges a:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #7a6875;
  text-align: center;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--fg-primary);
  text-align: center;
  margin-bottom: 64px;
}

.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--color-warm);
}

/* ===== FEATURES ===== */
.features { background: white; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 12px rgba(45, 36, 32, 0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 36, 32, 0.08);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg-primary);
  margin-bottom: 10px;
}

.feature-text {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--fg-secondary);
  line-height: 1.65;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--bg-primary); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 2px 12px rgba(45, 36, 32, 0.06);
}

.testimonial-text {
  font-family: var(--font-sans);
  font-size: 16px;
  font-style: italic;
  color: var(--fg-primary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-author {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-secondary);
}

/* ===== PREMIUM ===== */
.premium {
  background: linear-gradient(135deg, #f5f0eb 0%, #ebe3db 100%);
  padding: 100px 32px;
}

.premium-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.premium-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--fg-primary);
  margin-bottom: 16px;
}

.premium-subtitle {
  font-family: var(--font-sans);
  font-size: 18px;
  color: var(--fg-secondary);
  margin-bottom: 48px;
}

.premium-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
  text-align: left;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.premium-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--fg-primary);
}

/* ===== DOWNLOAD ===== */
.download {
  background: white;
  padding: 100px 32px;
}

.download-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--fg-primary);
  text-align: center;
  margin-bottom: 16px;
}

.download-subtitle {
  font-family: var(--font-sans);
  font-size: 18px;
  color: var(--fg-secondary);
  text-align: center;
  margin-bottom: 48px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-warm);
  color: white;
  padding: 48px 32px 24px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 32px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.footer-tagline {
  font-family: var(--font-sans);
  font-size: 15px;
  color: white;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-column a {
  font-family: var(--font-sans);
  font-size: 15px;
  color: white;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-column a:hover { opacity: 0.75; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  text-align: center;
  font-family: var(--font-sans);
  font-size: 14px;
  color: white;
}

/* ===== NAV HAMBURGER ===== */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-primary);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .hero-visual { display: none; }
  .mobile-mockup { display: flex; justify-content: center; padding: 0 0 48px; }
  .mobile-mockup .match-mockup { zoom: 0.815; }
  .nav { position: relative; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(253, 248, 243, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 32px 24px;
    flex-direction: column;
    gap: 20px;
    border-bottom: 1px solid rgba(201, 184, 196, 0.2);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .hero { padding: 48px 24px 72px; }
  .phone-mockup { width: 240px; height: 500px; }
  .features-grid { grid-template-columns: 1fr; }
  .store-badges { flex-direction: column; align-items: center; }
  .section-container { padding: 64px 24px; }
  .premium { padding: 72px 24px; }
  .download { padding: 72px 24px; }
}
