/* ============================================
   ATEMKUNST – Stylesheet
   Farben: warme Erdtöne, ruhig & einladend
   ============================================ */

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

:root {
  --sand:     #f5f0e8;
  --warm:     #ede4d3;
  --stone:    #c8b99a;
  --earth:    #8b7355;
  --deep:     #3d2f1e;
  --accent:   #7a9e7e;   /* ruhiges Salbeigrün */
  --text:     #3d2f1e;
  --light:    #faf7f2;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--light);
  color: var(--text);
  line-height: 1.7;
}

/* ── NAVIGATION ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--light);
  border-bottom: 1px solid var(--warm);
  padding: 0 2rem;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 44px;
  width: auto;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--deep);
  letter-spacing: 0.04em;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--earth);
  transition: color 0.2s;
}

nav a:hover,
nav a.active {
  color: var(--accent);
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--earth);
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, var(--sand) 0%, var(--warm) 100%);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(122,158,126,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(139,115,85,0.10) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 720px;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--deep);
  margin-bottom: 1rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero .tagline {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 2.5rem;
}

.hero .quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--earth);
  margin-top: 2.5rem;
  opacity: 0.85;
}

.hero .quote cite {
  display: block;
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.4rem;
  color: var(--stone);
}

/* ── HINWEIS-BANNER ── */
.notice-banner {
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 0.75rem 2rem;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  line-height: 1.5;
}

.notice-banner:empty { display: none; }

/* ── HAUPTINHALT ── */
main {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--deep);
  margin-bottom: 0.5rem;
}

.page-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--warm);
}

/* ── KARTEN / ABSCHNITTE ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0;
}

.card {
  background: #fff;
  border: 1px solid var(--warm);
  border-radius: 4px;
  padding: 2rem;
  transition: box-shadow 0.2s;
}

.card:hover { box-shadow: 0 4px 20px rgba(61,47,30,0.08); }

.card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 0.3rem;
}

.card .time {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
}

.card p { font-size: 0.95rem; color: #5a4a38; }

/* ── STUNDENPLAN ── */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.schedule-table th {
  background: var(--earth);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.8rem 1.2rem;
  text-align: left;
}

.schedule-table td {
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid var(--warm);
  font-size: 0.95rem;
}

.schedule-table tr:nth-child(even) td { background: var(--sand); }
.schedule-table tr:hover td { background: var(--warm); transition: background 0.15s; }

.schedule-table .kurs { font-weight: 500; color: var(--deep); }
.schedule-table .leiter { color: var(--stone); font-size: 0.85rem; }

/* ── FOTO ── */
.photo-block {
  margin: 2.5rem 0;
  border-radius: 4px;
  overflow: hidden;
}

.photo-block img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.photo-row img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 4px;
}

/* ── PERSON-PROFIL ── */
.profile {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
  margin: 2rem 0;
}

.profile img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.profile-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 1rem;
}

.profile-text p { margin-bottom: 1rem; font-size: 0.95rem; }

/* ── ADRESSE / INFO-BOX ── */
.info-box {
  background: var(--sand);
  border-left: 3px solid var(--accent);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border-radius: 0 4px 4px 0;
}

.info-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  color: var(--deep);
}

.info-box p, .info-box address {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.9;
}

.info-box a { color: var(--accent); text-decoration: none; }
.info-box a:hover { text-decoration: underline; }

/* ── KONTAKTFORMULAR ── */
.contact-form {
  background: #fff;
  border: 1px solid var(--warm);
  border-radius: 4px;
  padding: 2.5rem;
  margin-top: 2rem;
}

.contact-form h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--stone);
  border-radius: 3px;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: var(--deep);
  background: var(--light);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

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

.btn {
  display: inline-block;
  padding: 0.75rem 2.5rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 3px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.btn:hover { background: var(--earth); }

.form-success {
  display: none;
  color: var(--accent);
  font-size: 0.95rem;
  margin-top: 1rem;
}

/* ── FOOTER ── */
footer {
  background: var(--deep);
  color: var(--stone);
  text-align: center;
  padding: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

footer a { color: var(--stone); text-decoration: none; }
footer a:hover { color: var(--warm); }

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  nav ul { display: none; flex-direction: column; }
  nav ul.open {
    display: flex;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--light);
    border-bottom: 1px solid var(--warm);
    padding: 1.5rem 2rem;
    gap: 1.2rem;
  }
  .menu-toggle { display: flex; }

  .profile {
    grid-template-columns: 1fr;
  }
  .profile img { max-width: 200px; }

  .photo-row { grid-template-columns: 1fr; }
}
