/* ---------- Basics ---------- */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fbf6ef;
  color: #2b2620;
}

h1, h2, h3 {
  margin-top: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Header / Navigation ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(14px);
  color: #fbf6ef;
  border-bottom: 1px solid #ffffff22;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.logo {
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.nav a {
  margin-left: 20px;
  font-size: 0.9rem;
  color: #f1e6d9;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #f3cfa0;
  transition: width 0.2s ease-out;
}

.nav a:hover::after {
  width: 100%;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  border: 1px solid #d2c1aa;
  cursor: pointer;
  font-size: 0.95rem;
  background: transparent;
}

.btn.primary {
  background: #2b2620;
  color: #fdf8f2;
}

.btn.ghost {
  color: #2b2620;
  background: #fdf8f2;
}

/* ---------- Hero ---------- */

.hero {
  padding: 70px 0 60px;
  background: radial-gradient(circle at top, #f1e1cf 0, #fbf6ef 55%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-copy {
  max-width: 480px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: #a1733f;
  margin-bottom: 8px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 12px;
}

.hero-text {
  color: #5c5145;
  font-size: 0.98rem;
}

.hero-buttons {
  margin-top: 18px;
  display: flex;
  gap: 10px;
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* ---------- Sections ---------- */

.section {
  padding: 60px 0;
}

.section-alt {
  background: #f6ebdd;
}

.section h2 {
  margin-bottom: 8px;
  font-size: 1.7rem;
}

.section-intro {
  color: #5c5145;
  max-width: 520px;
  font-size: 0.98rem;
}

/* ---------- Angebot ---------- */

.offer-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.offer-card {
  background: #fdf6ec;
  border-radius: 16px;
  padding: 18px 18px 16px;
  border: 1px solid #decdb8;
  font-size: 0.95rem;
}

/* letzte Karte (Concerts) bleibt normal, Pricing ist separate Section */

.offer-card:nth-child(5) {
  /* keine Spezialbehandlung nötig hier */
}

/* ---------- Preise ---------- */

.pricing-card {
  margin-top: 26px;
  max-width: 640px;
  background: #fdf6ec;
  border-radius: 18px;
  border: 1px solid #decdb8;
  padding: 20px 22px;
  font-size: 0.96rem;
}

.pricing-card p {
  margin: 0 0 10px;
}

.pricing-card p:last-child {
  margin-bottom: 0;
}

.pricing-hint {
  color: #7b6a59;
  font-size: 0.9rem;
}

/* ---------- Portfolio (WEISS) ---------- */

.portfolio-section {
  background: #ffffff;
}

.portfolio-section .section-intro {
  color: #4a433c;
}

.grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.grid-item {
  background: #fdf6ec;
  border-radius: 16px;
  padding: 8px;
  border: 1px solid #decdb8;
}

.grid-item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* ---------- Über mich ---------- */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.about-list {
  margin-top: 10px;
  padding-left: 18px;
}

.about-photo img {
  display: block;
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  max-height: 420px;
}

/* ---------- Kontakt ---------- */

.contact-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 4px;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  border: 1px solid #c9b7a1;
  background: #fdf8f2;
  color: #2b2620;
  font-family: inherit;
  font-size: 0.95rem;
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-info {
  font-size: 0.96rem;
  color: #5c5145;
}

.contact-info a {
  text-decoration: underline;
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid #decdb8;
  padding: 18px 0;
  font-size: 0.85rem;
  color: #7b6a59;
  background: #f2e6d7;
}

.footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .header-inner {
    justify-content: center;
  }

  .nav {
    display: none;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-inner,
  .about-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media {
    margin-top: 20px;
  }

  .offer-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}