/* =============================================
   Soroptimist International Club Bad Nauheim
   CI-Farben: Blau #001F5C | Gold #FFC900
   Schrift: Myriad Pro
   ============================================= */

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

:root {
  --si-blue: #001F5C;
  --si-blue-dark: #001545;
  --si-blue-light: #e8eef6;
  --si-gold: #FFC900;
  --si-gold-light: #fff8d6;
  --wly-coral: #e06356;
  --wly-coral-light: #fdf0ee;
  --wly-peach: #f5a670;
  --text: #2c2c2c;
  --text-light: #5a5a5a;
  --bg: #ffffff;
  --border: #dde3ea;
  --radius: 6px;
  --shadow: 0 2px 12px rgba(0,0,0,0.07);
  --font-body: 'Myriad Pro', 'Myriad Web Pro', 'Source Sans Pro', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-heading: 'Myriad Pro', 'Myriad Web Pro', 'Source Sans Pro', 'Segoe UI', sans-serif;
  --max-width: 1100px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.7; font-size: 16px; }
a { color: var(--si-blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--si-gold); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

/* --- Header --- */
.site-header { background: var(--bg); border-bottom: 3px solid var(--si-blue); position: sticky; top: 0; z-index: 100; box-shadow: 0 1px 6px rgba(0,0,0,0.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 0.6rem; padding-bottom: 0.6rem; }
.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.logo-img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-title { font-family: var(--font-heading); font-size: 1.05rem; color: var(--si-blue); font-weight: 600; }
.logo-subtitle { font-size: 0.8rem; color: var(--text-light); }
.nav-links { display: flex; gap: 0.2rem; }
.nav-links a { padding: 0.5rem 0.9rem; border-radius: var(--radius); font-size: 0.92rem; color: var(--text); transition: background 0.2s, color 0.2s; font-weight: 500; }
.nav-links a:hover, .nav-links a.active { background: var(--si-blue); color: #fff; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.menu-toggle span { display: block; width: 26px; height: 3px; background: var(--si-blue); border-radius: 2px; }

/* --- Hero --- */
.hero { position: relative; background: linear-gradient(135deg, var(--si-blue) 0%, var(--si-blue-dark) 100%); color: #fff; padding: 5rem 0; text-align: center; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: rgba(255,201,0,0.08); border-radius: 50%; }
.hero-content { position: relative; z-index: 1; }
.hero-tagline { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 3px; color: var(--si-gold); margin-bottom: 1rem; }
.hero h1 { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 700; margin-bottom: 1.2rem; line-height: 1.25; }
.hero-desc { max-width: 650px; margin: 0 auto 2rem; font-size: 1.1rem; line-height: 1.6; color: rgba(255,255,255,0.85); }
.hero-slogan { font-size: 1rem; color: var(--si-gold); font-weight: 600; margin-bottom: 2rem; }

/* --- Buttons --- */
.btn { display: inline-block; padding: 0.8rem 2rem; background: var(--si-gold); color: var(--si-blue); font-weight: 700; border-radius: var(--radius); font-size: 1rem; transition: background 0.2s, transform 0.2s; border: none; cursor: pointer; }
.btn:hover { background: #e6b500; color: var(--si-blue); transform: translateY(-1px); }
.btn-outline { background: transparent; border: 2px solid var(--si-blue); color: var(--si-blue); }
.btn-outline:hover { background: var(--si-blue); color: #fff; }
.btn-coral { background: var(--wly-coral); color: #fff; }
.btn-coral:hover { background: #c9534a; color: #fff; }

/* --- Sections --- */
.section { padding: 4rem 0; }
.section-accent { background: var(--si-blue-light); }
.section-title { font-family: var(--font-heading); font-size: 1.9rem; color: var(--si-blue); margin-bottom: 2rem; position: relative; padding-bottom: 0.8rem; font-weight: 700; }
.section-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 3px; background: var(--si-gold); border-radius: 2px; }
.text-center .section-title::after { left: 50%; transform: translateX(-50%); }
.text-center { text-align: center; }

/* --- Page Header --- */
.page-header { background: var(--si-blue); color: #fff; padding: 3rem 0; text-align: center; }
.page-header h1 { font-family: var(--font-heading); font-size: 2.2rem; margin-bottom: 0.5rem; font-weight: 700; }
.page-header p { color: rgba(255,255,255,0.75); font-size: 1.05rem; }

/* --- Grid --- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }

/* --- Cards --- */
.card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem; transition: box-shadow 0.2s, transform 0.2s; }
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card-date { font-size: 0.8rem; color: var(--si-gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.5rem; }
.card-title { font-family: var(--font-heading); font-size: 1.15rem; color: var(--si-blue); margin-bottom: 0.6rem; font-weight: 700; }
.card-link { display: inline-block; margin-top: 0.8rem; font-weight: 600; font-size: 0.9rem; color: var(--si-blue); }
.card-link:hover { color: var(--si-gold); }

/* --- Info Card --- */
.info-card { background: var(--si-blue-light); border-left: 4px solid var(--si-gold); border-radius: var(--radius); padding: 1.5rem 1.8rem; }
.info-card h3 { font-family: var(--font-heading); color: var(--si-blue); margin-bottom: 0.8rem; font-weight: 700; }
.info-card ul li { padding: 0.35rem 0; padding-left: 1.2rem; position: relative; color: var(--text); }
.info-card ul li::before { content: '•'; color: var(--si-gold); font-weight: bold; position: absolute; left: 0; }

/* --- Stat Card --- */
.stat-card { padding: 2rem 1rem; }
.stat-number { display: block; font-family: var(--font-heading); font-size: 2.4rem; color: var(--si-blue); font-weight: 700; margin-bottom: 0.3rem; }
.stat-label { color: var(--text-light); font-size: 0.95rem; }

/* --- Member List --- */
.member-list-item { display: flex; align-items: baseline; padding: 0.6rem 0; border-bottom: 1px solid var(--border); }
.member-list-item:last-child { border-bottom: none; }
.member-list-name { font-weight: 600; color: var(--si-blue); min-width: 220px; font-size: 0.95rem; }
.member-list-profession { color: var(--text-light); font-size: 0.9rem; }

/* --- Events --- */
.event-item { display: flex; gap: 1.5rem; padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.event-item:last-child { border-bottom: none; }
.event-date-box { flex-shrink: 0; width: 70px; text-align: center; background: var(--si-blue); color: #fff; border-radius: var(--radius); padding: 0.8rem 0.5rem; }
.event-day { display: block; font-size: 1.6rem; font-weight: bold; line-height: 1; }
.event-month { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 0.2rem; }
.event-info h3 { font-family: var(--font-heading); color: var(--si-blue); font-size: 1.1rem; margin-bottom: 0.3rem; font-weight: 700; }
.event-meta { font-size: 0.85rem; color: var(--text-light); margin-bottom: 0.3rem; }

/* --- Kontaktformular --- */
.contact-form { max-width: 600px; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.3rem; font-size: 0.9rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.7rem 1rem; border: 1px solid var(--border); border-radius: var(--radius); font-family: var(--font-body); font-size: 0.95rem; transition: border-color 0.2s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--si-blue); box-shadow: 0 0 0 3px rgba(0,31,92,0.1); }
.form-group textarea { min-height: 140px; resize: vertical; }

/* --- Legal --- */
.legal-content { max-width: 800px; }
.legal-content h2 { font-family: var(--font-heading); font-size: 1.3rem; color: var(--si-blue); margin-top: 2rem; margin-bottom: 0.6rem; font-weight: 700; }
.legal-content p { margin-bottom: 0.8rem; }
.legal-content ul { margin: 0.5rem 0 1rem 1.5rem; }
.legal-content ul li { list-style: disc; margin-bottom: 0.3rem; }

/* --- Work.Life.You. --- */
.wly-hero { position: relative; background: linear-gradient(135deg, var(--wly-coral) 0%, var(--wly-peach) 100%); color: #fff; padding: 5rem 0; text-align: center; overflow: hidden; }
.wly-hero::before { content: ''; position: absolute; top: -30%; left: -10%; width: 500px; height: 500px; background: rgba(255,255,255,0.08); border-radius: 50%; }
.wly-hero .hero-content { position: relative; z-index: 1; }
.wly-hero h1 { font-family: var(--font-heading); font-size: 3rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1.15; }
.wly-hero .hero-subtitle { font-size: 1.15rem; color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto 2rem; line-height: 1.6; }
.wly-badge { display: inline-block; background: rgba(255,255,255,0.2); color: #fff; font-size: 0.8rem; font-weight: 600; padding: 0.35rem 1rem; border-radius: 20px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.5rem; }
.wly-section-accent { background: var(--wly-coral-light); }
.wly-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem; text-align: center; transition: box-shadow 0.2s, transform 0.2s; }
.wly-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.wly-card-icon { font-size: 2.2rem; margin-bottom: 0.8rem; }
.wly-card h3 { font-family: var(--font-heading); color: var(--wly-coral); font-size: 1.05rem; margin-bottom: 0.5rem; font-weight: 700; }
.wly-card p { font-size: 0.9rem; color: var(--text-light); }
.wly-event-box { background: #fff; border: 2px solid var(--wly-coral); border-radius: var(--radius); padding: 2.5rem; max-width: 700px; margin: 0 auto; }
.wly-event-box h3 { font-family: var(--font-heading); color: var(--wly-coral); font-size: 1.5rem; margin-bottom: 1rem; }
.wly-event-detail { display: flex; align-items: center; gap: 0.6rem; padding: 0.4rem 0; font-size: 0.95rem; }
.wly-event-detail strong { min-width: 70px; }
.wly-highlight { background: var(--wly-coral); color: #fff; padding: 0.2rem 0.6rem; border-radius: 4px; font-weight: 600; font-size: 0.85rem; }

/* --- Artikel --- */
.article-wrapper { max-width: 800px; margin: 0 auto; }
.article-meta { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.article-meta-date { font-size: 0.9rem; color: var(--si-gold); font-weight: 700; }
.article-meta-category { display: inline-block; background: var(--si-blue-light); color: var(--si-blue); font-size: 0.8rem; font-weight: 600; padding: 0.25rem 0.75rem; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.article-hero-image { width: 100%; aspect-ratio: 16/9; background: var(--si-blue-light); border: 2px dashed var(--border); border-radius: var(--radius); display: flex; flex-direction: column; align-items: center; justify-content: center; margin-bottom: 2rem; color: var(--text-light); font-size: 0.9rem; }
.article-hero-image svg { width: 64px; height: 64px; margin-bottom: 0.8rem; opacity: 0.4; }
.article-hero-image span { opacity: 0.6; }
.article-caption { font-size: 0.8rem; color: var(--text-light); text-align: center; margin-top: -1.5rem; margin-bottom: 2rem; font-style: italic; }
.article-body p { margin-bottom: 1.2rem; font-size: 1.02rem; line-height: 1.8; }
.article-body h2 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--si-blue); margin-top: 2.5rem; margin-bottom: 0.8rem; font-weight: 700; }
.article-body blockquote { border-left: 4px solid var(--si-gold); background: var(--si-gold-light); padding: 1.2rem 1.5rem; margin: 2rem 0; border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; }
.article-body blockquote cite { display: block; margin-top: 0.5rem; font-style: normal; font-weight: 600; font-size: 0.9rem; color: var(--si-blue); }
.article-inline-caption { font-size: 0.8rem; color: var(--text-light); text-align: center; margin-top: -1.5rem; margin-bottom: 2rem; font-style: italic; }
.article-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.article-tag { background: var(--si-blue-light); color: var(--si-blue); font-size: 0.8rem; padding: 0.3rem 0.8rem; border-radius: 20px; font-weight: 500; }
.article-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); gap: 1rem; }
.article-nav a { font-size: 0.9rem; font-weight: 600; color: var(--si-blue); }
.article-nav a:hover { color: var(--si-gold); }
.article-nav .nav-label { display: block; font-size: 0.75rem; color: var(--text-light); font-weight: 400; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.2rem; }
.article-nav .nav-next { text-align: right; margin-left: auto; }

/* --- Footer --- */
.site-footer { background: var(--si-blue-dark); color: #fff; padding-top: 3rem; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; padding-bottom: 2rem; }
.footer-col h4 { font-family: var(--font-heading); font-size: 1rem; margin-bottom: 0.8rem; color: var(--si-gold); font-weight: 700; }
.footer-col a { display: block; color: rgba(255,255,255,0.7); padding: 0.25rem 0; font-size: 0.9rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding: 1.2rem 0; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.5); text-align: center; }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; text-decoration: none; }
.footer-logo img { width: 44px; height: 44px; border-radius: 50%; }

/* --- Yellow Line (CI Gestaltungselement) --- */
.si-yellow-line { height: 3px; background: var(--si-gold); margin: 0; border: none; }

/* --- Responsive --- */
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); flex-direction: column; padding: 1rem; border-bottom: 3px solid var(--si-blue); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
  .nav-links.open { display: flex; }
  .hero h1, .wly-hero h1 { font-size: 1.8rem; }
  .hero, .wly-hero { padding: 3rem 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .event-item { flex-direction: column; gap: 0.8rem; }
  .event-date-box { width: auto; display: flex; gap: 0.5rem; align-items: center; justify-content: center; padding: 0.5rem 1rem; }
  .page-header h1 { font-size: 1.6rem; }
  .member-list-item { flex-direction: column; gap: 0.1rem; }
  .member-list-name { min-width: auto; }
  .article-nav { flex-direction: column; align-items: stretch; }
  .article-nav .nav-next { text-align: left; margin-left: 0; }
  .wly-event-box { padding: 1.5rem; }
}
