@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Jost:wght@300;400;500&display=swap');

:root {
  --bg: #0d1117;
  --bg2: #141d2b;
  --bg3: #1a2535;
  --accent: #4ECFAA;
  --accent-dim: rgba(78,207,170,0.12);
  --text: #F0F4F8;
  --text-muted: #8899AA;
  --border: #1e3a5f;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ─── HEADER / NAV ─── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13,17,23,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.logo span { color: var(--accent); }

nav { display: flex; gap: 2rem; align-items: center; }

nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
}
nav a:hover { color: var(--accent); }

.lang-toggle { display: flex; gap: 4px; margin-left: 1.5rem; }

.lang-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 1px;
  padding: 0.22rem 0.55rem;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.2s;
  font-family: 'Jost', sans-serif;
}
.lang-btn.active, .lang-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #0d1117;
  font-weight: 500;
}

/* ─── HERO ─── */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 0 2rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(13,17,23,0.25) 0%, rgba(13,17,23,0.88) 100%),
    url('IMG_2445.JPG') center/cover no-repeat;
  z-index: 0;
}

.hero-content { position: relative; z-index: 1; }

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
}

.hero h1 span { color: var(--accent); }

.hero p {
  max-width: 520px;
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: var(--accent);
  color: #0d1117;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-primary:hover { opacity: 0.82; transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--accent-dim); }

/* ─── SCROLL HINT ─── */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.scroll-hint span { font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); }
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollAnim 1.8s ease-in-out infinite;
}
@keyframes scrollAnim { 0%,100%{ opacity:0.3; } 50%{ opacity:1; } }

/* ─── SECTIONS ─── */
.section-wrap { max-width: 1200px; margin: 0 auto; padding: 6rem 2rem; }
.section-wrap.border-top { border-top: 1px solid var(--border); }

.section-label {
  font-size: 0.68rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 1rem;
}

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 300;
  font-size: 1rem;
}

/* ─── GALLERY ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.75rem;
  margin-top: 3rem;
}

.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--bg2);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.photo-card:hover img { transform: scale(1.06); }

.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,17,23,0.92) 0%, rgba(13,17,23,0.1) 60%);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.photo-card:hover .photo-overlay { opacity: 1; }

.photo-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.photo-buy {
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ─── PRICING ─── */
.pricing-intro { color: var(--text-muted); max-width: 560px; font-weight: 300; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.price-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  position: relative;
  transition: border-color 0.3s, transform 0.2s;
}
.price-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.price-card.featured { border-color: var(--accent); }

.price-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0d1117;
  font-size: 0.62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.2rem 0.9rem;
  border-radius: 20px;
  font-weight: 500;
  white-space: nowrap;
}

.price-tier {
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.price-amount sup { font-size: 1rem; vertical-align: super; }

.price-sublabel {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.price-features {
  list-style: none;
  margin-bottom: 2rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.price-features li {
  font-size: 0.83rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.price-features li::before { content: '✓'; color: var(--accent); flex-shrink: 0; margin-top: 1px; }

.paypal-btn {
  display: block;
  width: 100%;
  padding: 0.8rem;
  background: var(--accent);
  color: #0d1117;
  border: none;
  border-radius: 4px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.2s, transform 0.2s;
  font-family: 'Jost', sans-serif;
}
.paypal-btn:hover { opacity: 0.82; transform: translateY(-1px); }

/* ─── MODAL ─── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,17,23,0.92);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  max-width: 520px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem; right: 1.25rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}
.modal-close:hover { color: var(--text); }

.modal h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.modal-photo {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 4px;
  margin: 1.25rem 0;
}

.modal-licenses { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin: 1rem 0 1.5rem; }

.lic-btn {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 0.75rem;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s;
  font-family: 'Jost', sans-serif;
  color: var(--text);
}
.lic-btn:hover, .lic-btn.selected { border-color: var(--accent); background: var(--accent-dim); }
.lic-btn .lic-name { font-size: 0.78rem; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); }
.lic-btn .lic-price { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700; margin-top: 0.2rem; }

.checkout-notice {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--accent-dim);
  border: 1px solid rgba(78,207,170,0.3);
  border-radius: 4px;
  padding: 0.75rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* ─── FOOTER ─── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 3.5rem 2rem;
  text-align: center;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.footer-logo span { color: var(--accent); }

.footer-tagline {
  font-size: 0.68rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }

.footer-copy { font-size: 0.72rem; color: #334455; }

/* ─── LEGAL PAGES ─── */
.legal-content {
  max-width: 780px;
  margin: 7rem auto 5rem;
  padding: 0 2rem;
}
.legal-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  letter-spacing: -1px;
}
.legal-sub {
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 3rem;
  display: block;
}
.legal-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--text);
  margin: 2.5rem 0 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.5px;
}
.legal-content h3 {
  font-size: 0.9rem;
  color: var(--accent);
  margin: 1.5rem 0 0.4rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.legal-content p { color: var(--text-muted); margin-bottom: 0.9rem; font-size: 0.88rem; line-height: 1.85; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 0.9rem; }
.legal-content ul li { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 0.35rem; }
.legal-content a { color: var(--accent); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }

.placeholder {
  background: rgba(78,207,170,0.1);
  border: 1px dashed var(--accent);
  border-radius: 3px;
  padding: 0.1rem 0.5rem;
  color: var(--accent);
  font-weight: 500;
  font-style: normal;
}

.info-box {
  background: var(--bg2);
  border-left: 3px solid var(--accent);
  border-radius: 0 4px 4px 0;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}
.info-box p { margin: 0; }

/* ─── LANGUAGE TOGGLE ─── */
.lang-de, .lang-en { }
body.lang-en .lang-de { display: none !important; }
body:not(.lang-en) .lang-en { display: none !important; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav a { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .modal-licenses { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  header { padding: 1rem 1.25rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .modal-licenses { grid-template-columns: 1fr; }
}
