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

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

:root {
  --black:       #050608;
  --deep:        #0d0b14;
  --card-bg:     #110e1c;
  --card-border: rgba(124, 58, 237, 0.18);

  --violet:      #7c3aed;
  --violet-light:#a855f7;
  --magenta:     #c026d3;
  --blue-e:      #3b82f6;
  --gold:        #d4a847;
  --gold-light:  #f0cc6e;
  --orange:      #e8621a;

  --text:        #f8f4ff;
  --muted:       #c4b8d8;
  --subtle:      #8b7fa8;

  --radius-btn:  24px;
  --radius-card: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--black);
  line-height: 1.7;
}

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

/* ── Utility ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
  border: none;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--violet), var(--magenta));
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover { background: rgba(212,168,71,.08); }

/* ── Navigation ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5,6,8,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(124,58,237,.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 108px;
  gap: 16px;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 96px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .15s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--muted);
  border-radius: 2px;
}

/* ── Hero ── */
#hero {
  background: var(--black);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(124,58,237,.22) 0%, transparent 65%);
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -50px; left: 100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(192,38,211,.1) 0%, transparent 65%);
  pointer-events: none;
}

/* hero-bg-logo removed – now .hero-visual-logo */

.hero-inner {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.hero-text { flex: 1; }

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-text h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero-text h1 em {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1em;
  background: linear-gradient(90deg, var(--violet-light), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 20px;
  letter-spacing: .02em;
}

.hero-text p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 480px;
  font-weight: 300;
}

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

.hero-visual {
  flex-shrink: 0;
  position: relative;
  width: 500px;
  height: 500px;
}

.hero-visual-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  pointer-events: none;
  user-select: none;
  display: block;
}

.hero-image-ring {
  position: absolute;
  width: 270px;
  height: 270px;
  /* YS center: 50% horizontal, ~34% vertical in logo */
  left: 50%;
  top: 34%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--violet), var(--magenta), var(--gold));
  z-index: 2;
}

.hero-image-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: var(--deep);
}

.hero-image-inner img { width: 100%; height: 100%; object-fit: cover; }

/* ── Über mich ── */
#about {
  background: var(--deep);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '';
  position: absolute;
  top: 50%; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,168,71,.06) 0%, transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
}

.about-inner {
  display: flex;
  gap: 72px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.about-image {
  flex-shrink: 0;
  width: 260px;
  height: 340px;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--card-border);
}

.about-image img { width: 100%; height: 100%; object-fit: cover; }

.about-text { flex: 1; }

.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.about-text h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: 28px;
}

.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--violet-light);
  border-left: 2px solid var(--violet);
  padding: 12px 20px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.about-text p {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 28px;
}

.about-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.tag {
  font-size: 0.75rem;
  letter-spacing: .06em;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(124,58,237,.1);
  border: 1px solid rgba(124,58,237,.25);
  color: var(--violet-light);
}

/* ── Projekte ── */
#projects {
  background: var(--black);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

#projects::after {
  content: '';
  position: absolute;
  bottom: 0; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(192,38,211,.07) 0%, transparent 70%);
  pointer-events: none;
}

.projects-group {
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}
.projects-group:last-child { margin-bottom: 0; }

.projects-group-header {
  margin-bottom: 32px;
}

.projects-group-header h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.projects-group-sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: .04em;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.project-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .2s, transform .2s;
}
.project-card:hover {
  border-color: rgba(124,58,237,.4);
  transform: translateY(-2px);
}

.project-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  overflow: hidden;
  background: #1a1a2e;
  flex-shrink: 0;
}

.project-logo img { width: 100%; height: 100%; object-fit: contain; }

.project-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: .05em;
}

.project-card p {
  font-size: 0.82rem;
  color: var(--muted);
  flex: 1;
  font-weight: 300;
  line-height: 1.6;
}

.project-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: .05em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: opacity .15s;
}
.project-link:hover { opacity: .75; }

.link-orange  { color: var(--orange); }
.link-violet  { color: var(--violet-light); }
.link-gray    { color: #888; }
.link-green   { color: #4aaa78; }
.link-magenta { color: #d946ef; }

.project-card--coming-soon {
  border-color: rgba(192,38,211,.2);
  background: linear-gradient(145deg, rgba(124,58,237,.08), rgba(192,38,211,.06));
}

.coming-soon-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(192,38,211,.12);
  color: #d946ef;
  border: 1px solid rgba(192,38,211,.3);
}

/* ── Zitat ── */
#quote {
  background: var(--deep);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(124,58,237,.12) 0%, transparent 65%);
  pointer-events: none;
}

.quote-inner {
  position: relative;
  z-index: 1;
}

.quote-inner blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--text);
  max-width: 760px;
  margin: 0 auto 20px;
  line-height: 1.55;
}

.quote-inner cite {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: .15em;
  text-transform: uppercase;
  font-style: normal;
  font-family: 'Montserrat', sans-serif;
}

/* ── Für wen? ── */
#forwho {
  background: var(--black);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

#forwho::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(212,168,71,.05) 0%, transparent 70%);
  pointer-events: none;
}

.forwho-heading {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.forwho-heading h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.forwho-heading .section-sub {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 300;
}

.forwho-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}

.forwho-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  transition: border-color .2s, transform .2s;
}
.forwho-card:hover {
  border-color: rgba(212,168,71,.3);
  transform: translateY(-2px);
}

.forwho-card .icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.forwho-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 10px;
}

.forwho-card p {
  font-size: 0.83rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
}

/* ── Kontakt ── */
#contact {
  background: var(--deep);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

#contact::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,.1) 0%, transparent 70%);
  pointer-events: none;
}

.contact-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-inner h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.contact-sub {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 56px;
}

/* E-Mail Block */
.contact-email-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 72px;
}

.btn-lg {
  padding: 18px 48px;
  font-size: 1rem;
  letter-spacing: .12em;
}

.contact-email-hint {
  color: var(--subtle);
  font-size: .8rem;
  letter-spacing: .04em;
}

/* Social Block */
.contact-social-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.contact-social-label {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  color: var(--subtle);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-social-label::before,
.contact-social-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--card-border);
}
.contact-social-label span { white-space: nowrap; }

.social-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
  margin-top: 8px;
}

.social-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--card-border);
  margin-bottom: 4px;
}

.social-card-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

.social-card-title {
  font-family: 'Cinzel', serif;
  font-size: .8rem;
  letter-spacing: .06em;
  color: var(--text);
  text-transform: uppercase;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--muted);
  text-decoration: none;
  transition: color .15s;
}
.social-link i { font-size: 1.1rem; flex-shrink: 0; }

.social-link--instagram { color: #e1306c; }
.social-link--instagram:hover { color: #ff6b9d; }

.social-link--youtube { color: #ff4444; }
.social-link--youtube:hover { color: #ff7070; }

.social-link--facebook { color: #4a90d9; }
.social-link--facebook:hover { color: #74b3ff; }

@media (max-width: 700px) {
  .social-cards { grid-template-columns: repeat(2, 1fr); }
}

/* ── Footer ── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(124,58,237,.12);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

footer p {
  font-size: 0.8rem;
  color: var(--subtle);
}

.footer-links { display: flex; gap: 24px; }

.footer-links a {
  font-size: 0.8rem;
  color: var(--subtle);
  transition: color .15s;
}
.footer-links a:hover { color: var(--muted); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: rgba(5,6,8,.96);
    border-bottom: 1px solid rgba(124,58,237,.15);
    padding: 20px 28px 28px;
    gap: 16px;
    justify-content: flex-start;
  }

  .hero-inner {
    flex-direction: column-reverse;
    gap: 48px;
    text-align: center;
  }
  .hero-buttons { justify-content: center; }
  .hero-visual { width: 320px; height: 320px; }
  .hero-image-ring { width: 175px; height: 175px; }

  .about-inner { flex-direction: column; gap: 32px; }
  .about-image { width: 100%; height: 240px; }

  .footer-inner { flex-direction: column; text-align: center; }
}
