/* --- style.css --- */
/* ENTHÄLT: Variablen, Reset, Header, Nav, Footer, Buttons, Dark Mode */

:root {
  /* Konstanten */
  --ukraine-blue: #0057b7;
  --ukraine-yellow: #ffdd00;
  --accent-red: #e63946;

  /* Light Mode (Standard) */
  --bg-body: #ffffff;
  --bg-nav: rgba(255, 255, 255, 0.98);
  --bg-light-section: #f9f9f9;
  --bg-card: #ffffff;
  --text-main: #1a1a1a;
  --text-body: #4a4a4a;
  --text-muted: #666;
  --border-color: #eee;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --shadow-strong: rgba(0, 0, 0, 0.15);
  --overlay-bg: rgba(0, 0, 0, 0.6);
  --btn-text: #ffffff;
  --nav-link-color: #2c2c2c;

  /* TopBar */
  --topbar-bg: #e6f2ff;
  --topbar-text: #0057b7;
  --track-bg: #cbdcea;
}
/* --- CUSTOM SCROLLBAR (Blau mit gelbem Rand & Linie) --- */

/* --- WIDE CUSTOM SCROLLBAR (Fixe Breite) --- */

/* 1. Breite erzwingen */
::-webkit-scrollbar {
  width: 1% !important; /* 30px ist sehr breit. Falls zu breit, mach 20px draus */
  height: auto !important; /* Für horizontales Scrollen */
}

/* 2. Hintergrund (Track) */
::-webkit-scrollbar-track {
  background: #f4f4f4;
  border-left: 0.5% solid var(--border-color);
}

/* 3. Schieberegler (Thumb) */
::-webkit-scrollbar-thumb {
  background-color: var(--ukraine-blue); /* Blau */

  /* Gelber Rand */
  border: 3px solid var(--ukraine-yellow); /* Etwas dickerer Rand für Sichtbarkeit */

  /* Starke Rundung */
  border-radius: 20px;

  /* Die gelbe Linie in der Mitte */
  background-image: linear-gradient(
    to right,
    transparent 46%,
    var(--ukraine-yellow) 46%,
    var(--ukraine-yellow) 54%,
    transparent 54%
  );

  background-clip: padding-box;
}

/* 4. Hover-Effekt */
::-webkit-scrollbar-thumb:hover {
  background-color: #004494;
  border-color: #ffd700;
}

/* Hinweis: Firefox unterstützt leider keine benutzerdefinierte Breite in Pixeln, 
   dort wird es "dünn" oder "auto" sein. Das ist eine Browser-Limitierung. */
@supports (scrollbar-color: auto) {
  * {
    scrollbar-width: auto; /* Firefox Standard */
    scrollbar-color: var(--ukraine-blue) #f4f4f4;
  }
}
textarea {
  resize: none;
  color: #cccccc;
 
}
/* Dark Mode Overrides */
body.dark-mode {
  --bg-body: #121212;
  --bg-nav: rgba(18, 18, 18, 0.98);
  --bg-light-section: #1e1e1e;
  --bg-card: #252525;
  --text-main: #f0f0f0;
  --text-body: #cccccc;
  --text-muted: #999;
  --border-color: #333;
  --shadow-color: rgba(0, 0, 0, 0.5);
  --shadow-strong: rgba(0, 0, 0, 0.7);
  --overlay-bg: rgba(0, 0, 0, 0.8);
  --btn-text: #ffffff;
  --nav-link-color: #e0e0e0;

  /* TopBar Dark */
  --topbar-bg: #1a2a3a;
  --topbar-text: #4da3ff;
  --track-bg: #2c3e50;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Manrope", sans-serif;
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease, margin-top 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* --- HELPER CLASSES --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.serif-italic {
  font-family: "Merriweather", serif;
  font-style: italic;
  font-weight: 300;
}

/* --- BUTTONS (Global) --- */
.btn {
  display: inline-block;
  padding: 16px 32px;
  background: var(--ukraine-blue);
  color: var(--btn-text);
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 2px solid var(--ukraine-blue);
}
.btn:hover {
  background: transparent;
  color: var(--ukraine-blue);
}
.btn-yellow {
  background: var(--ukraine-yellow);
  color: #1a1a1a !important;
  border-color: var(--ukraine-yellow);
}
.btn-yellow:hover {
  background: #e6c200;
  border-color: #e6c200;
}
.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 2px solid var(--text-main);
}
.btn-outline:hover {
  background: var(--text-main);
  color: var(--bg-body);
}

/* --- TOP BAR --- */
#ukraine-top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--topbar-bg);
  color: var(--topbar-text);
  border-bottom: 2px solid var(--ukraine-yellow);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 40px 10px 20px;
  box-shadow: 0 4px 10px var(--shadow-color);
  font-size: 0.9rem;
  flex-wrap: wrap;
  gap: 20px;
  transition: background-color 0.3s;
}

.bar-content-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.donation-progress-container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Arial, sans-serif;
}

.progress-track {
  width: 200px;
  height: 12px;
  background-color: var(--track-bg);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.progress-fill {
  height: 100%;
  background-color: var(--ukraine-yellow);
  width: 20%;
  border-right: 1px solid #c9ae00;
}

.progress-labels {
  color: var(--text-main);
}

.ukraine-bar-close {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  color: var(--text-muted);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.ukraine-bar-close:hover {
  opacity: 1;
  color: var(--text-main);
}

/* --- NAVIGATION --- */
nav {
  padding: 20px 0;
  position: sticky;
  top: 0;
  background: var(--bg-nav);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 20px var(--shadow-color);
  transition: top 0.3s ease, background-color 0.3s ease;
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-text {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.logonav {
  height: 60px;
  width: auto;
}

.nav-contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 30px;
  margin-right: auto;
  font-size: 0.85rem;
  border-left: 1px solid var(--border-color);
  padding-left: 20px;
}
.nav-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-body);
  margin: 2px 0;
  transition: color 0.3s;
  font-weight: 600;
}
.nav-contact-link:hover {
  color: var(--ukraine-blue);
}
.nav-contact-link i {
  color: var(--ukraine-blue);
  width: 15px;
  text-align: center;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--nav-link-color);
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-links a:hover {
  color: var(--ukraine-blue);
}

.nav-icons-group {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 10px;
  border-left: 1px solid var(--border-color);
  padding-left: 20px;
}

.nav-icon {
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.nav-icon:hover {
  color: var(--ukraine-blue);
  transform: scale(1.1);
}

/* Dark Mode Toggle */
.theme-toggle-btn {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--text-main);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  margin-left: 15px;
}
.theme-toggle-btn:hover {
  background-color: var(--ukraine-blue);
  border-color: var(--ukraine-blue);
  color: white;
  transform: rotate(15deg);
}

/* --- FOOTER --- */
footer {
  background: #111;
  color: #aaa;
  padding: 60px 0 0;
  font-size: 0.9rem;
  margin-top: auto;
  border-top: 5px solid var(--ukraine-blue);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
}
.footer-col h4 {
  color: #ffffff;
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--ukraine-yellow);
}

.footer-bottom {
  border-top: 1px solid #333;
  background: #0d0d0d;
  padding: 15px 0;
}
.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

/* Made with Love Element */
.made-with-love {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  position: relative;
  cursor: pointer;
  padding: 10px;
}
.heart-icon {
  color: #e63946;
  font-size: 1.3rem;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.made-with-love:hover .heart-icon {
  transform: scale(1.3);
}

/* MEDIA QUERIES für Header/Footer */
@media (max-width: 1050px) {
  .nav-contact-info {
    display: none;
  }
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
}
@media (max-width: 768px) {
  #ukraine-top-bar {
    flex-direction: column;
    text-align: center;
    padding-bottom: 15px;
  }
  .bar-content-wrapper {
    flex-direction: column;
    gap: 10px;
  }
  .progress-track {
    width: 100%;
    max-width: 250px;
  }
  .theme-toggle-btn {
    position: absolute;
    right: 20px;
    top: 25px;
  }
.hero-image-stack{
  display:none;
}
}
/* --- KONTAKTFORMULAR STYLES --- */

.contact-section-wrapper {
  /* Dunkler Hintergrund wie im Screenshot, aber passend zum Theme */
  background-color: #2c2c2c; 
  color: #fff;
  padding: 80px 0;
  position: relative;
}

/* Im Dark Mode nutzen wir deine existierende Variable */
body.dark-mode .contact-section-wrapper {
  background-color: #1a1a1a;
}

.contact-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 50% / 50% Aufteilung */
  gap: 60px;
  align-items: flex-start;
}

/* Linke Spalte Styles */
.contact-info-col h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.contact-subtext {
  color: #ccc;
  margin-bottom: 40px;
}

.info-block h3 {
  margin-bottom: 20px;
  color: var(--ukraine-blue); /* Deine Brand Color */
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.info-item i {
  color: var(--ukraine-yellow);
  width: 20px;
  text-align: center;
}

.info-item a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.info-item a:hover {
  color: var(--ukraine-blue);
}

/* Rechte Spalte (Formular) Styles */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #ddd;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 4px;
  border: 1px solid #444;
  background-color: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ukraine-blue);
  box-shadow: 0 0 0 3px rgba(0, 87, 183, 0.2);
}

.btn-submit {
  width: 100%;
  border: none;
  cursor: pointer;
  background-color: var(--ukraine-blue);
  color: #fff;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-submit:hover {
  background-color: #004494; /* Etwas dunkleres Blau */
}

/* Responsive: Untereinander auf Handy */
@media (max-width: 768px) {
  .contact-grid-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}