@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Lora:wght@400;700&display=swap');

/* Farbvariablen */
:root {
  --gold: #D4AF37;
  --rose: #C9996B;
  --white: #FFFFFF;
  --black: #111111;
  --gray: #F7F7F7;
}

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

body {
  font-family: 'Lora', serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}

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

/* Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.nav-logo span {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--black);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

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

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--black);
  border-radius: 2px;
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-links.open {
    max-height: 400px;
  }
  .nav-toggle {
    display: flex;
  }
}

/* Hero */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
  background: radial-gradient(circle at center, var(--gold) 0%, var(--rose) 70%, var(--white) 100%);
  color: var(--white);
  position: relative;
}
#hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 0;
}
#hero > * {
  position: relative;
  z-index: 1;
}
#hero h1 {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  margin: 0.5rem 0;
}
#hero h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  color: var(--gold);
}
#hero p {
  max-width: 700px;
  margin: 0.5rem auto 1.5rem;
  font-size: 1.2rem;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Button styles */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 8px;
  transition: background 0.3s ease, color 0.3s ease;
}
.btn:hover {
  background: var(--gold);
  color: var(--black);
}
.btn-filled {
  background: var(--gold);
  color: var(--black);
}
.btn-filled:hover {
  background: var(--black);
  color: var(--white);
}

/* Intro Section */
#intro {
  padding: 4rem 2rem;
  background: var(--gray);
  text-align: center;
}
#intro h1 {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
#intro h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--gold);
}
#intro p {
  max-width: 600px;
  margin: 0.5rem auto 1rem;
  font-size: 1.1rem;
}

/* Sections */
section {
  padding: 4rem 2rem;
}

/* Pillars */
#pillars {
  background: var(--white);
  text-align: center;
}
#pillars h2 {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.pillar-card {
  padding: 2rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff6e5 0%, #fdf7f1 100%);
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.pillar-card:hover {
  transform: translateY(-5px);
}
.pillar-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.pillar-card p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Session Section */
#session {
  background: var(--black);
  color: var(--white);
  text-align: center;
}
#session h2 {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  margin-bottom: 0.3rem;
}
.session-tagline {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
#session p {
  max-width: 800px;
  margin: 0.5rem auto 1rem;
  font-size: 1.1rem;
}
.session-highlight {
  width: 120px;
  height: auto;
  display: block;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 0 8px rgba(0,0,0,0.3));
}

/* Community Section */
#community {
  background: var(--rose);
  color: var(--black);
  text-align: center;
}
#community h2 {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
#community p {
  max-width: 700px;
  margin: 0.5rem auto 1rem;
  font-size: 1.1rem;
}

/* Others Page */
#others {
  padding-top: 6rem;
  text-align: center;
}
#others h1 {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
#others p {
  max-width: 600px;
  margin: 0 auto 1rem;
  font-size: 1.1rem;
}
.link-card {
  margin: 1.5rem auto;
  padding: 2rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff6e5 0%, #fdf7f1 100%);
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  max-width: 600px;
  text-align: left;
}
.link-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--gold);
}
.link-card p {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.link-card a {
  color: var(--gold);
  font-weight: 600;
}

/* Footer */
footer {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 2rem;
}
footer a {
  color: var(--gold);
  font-weight: 600;
}

/* Quiz Page Styles */
.quiz-page {
  padding: 6rem 2rem;
}
.quiz-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--gray);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
.progress-bar {
  width: 100%;
  height: 10px;
  background: var(--white);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 1rem;
}
#quiz-progress {
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 5px;
  transition: width 0.3s ease;
}
#quiz-question {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
#quiz-answers {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.quiz-answer-btn {
  display: block;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gold);
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  font-family: 'Cinzel', serif;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.quiz-answer-btn:hover {
  background: var(--gold);
  color: var(--black);
}
#quiz-results {
  text-align: center;
}
#quiz-results h2 {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}
#quiz-results p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.result-summary {
  text-align: left;
  margin: 0 auto;
  max-width: 600px;
  font-size: 0.95rem;
  white-space: pre-wrap;
}
.cta-buttons {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}