/* ===============================
   Farbvariablen für konsistentes Design
================================== */
:root {
  /* Elfenbeinküste Nationalfarben */
  --cote-orange: #F77F00;
  --cote-white: #FFFFFF;
  --cote-green: #009E60;

  /* ASEC Mimosas Vereinsfarben */
  --asec-yellow: #FFD700; /* Goldgelb */
  --asec-yellow-strong: #FFCC00; /* Kräftiger Gelbton */
  --asec-black: #000000;

  /* Kombinierte Akzente */
  --highlight-border: var(--asec-yellow);
  --flag-gradient: linear-gradient(to right, var(--cote-orange), var(--cote-white), var(--cote-green));
}

body.elfenbeinküste {
  background-color: var(--cote-white);
  color: var(--asec-black);
  font-family: 'Orbitron', sans-serif;
}

.elfenbeinküste-header {
  background: linear-gradient(to right, var(--cote-orange), var(--cote-white), var(--cote-green));
  padding: 10px 0;
  text-align: center;
}

.elfenbeinküste-logo {
  width: 100px;
  margin-top: 10px;
  border-radius: 8px;
  border: 5px solid var(--asec-black);
}

.elfenbeinküste-nav {
  background-image: url('../img/elfenbeinkueste/muster-elfenbeinkueste.png'); /* dein Musterbild */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 10px 0;
  text-align: center;
}

.elfenbeinküste-nav ul {
  color: var(--cote-white);
  text-shadow: var(--asec-yellow) 0 0 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 20px;
}

.elfenbeinküste-nav img {
  width: 32px;
  height: auto;
  vertical-align: middle;
  border-radius: 4px;
  margin-right: 6px;
  border-color: #4a1c1c;
}

.elfenbeinküste-nav a {
  color: var(--cote-white);
  text-shadow: var(--asec-yellow) 0 0 10px;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.elfenbeinküste-nav a:hover {
  color: #ec9b22;
}

/* ===============================
   Dropdown-Menü
================================== */
.dropdown {
  position: relative;
}

.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  opacity: 0;
  visibility: hidden;
  background-color: var(--cote-orange); /* oder deine Wunschfarbe */
  border-radius: 4px;
  padding: 5px 0;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  border: 1px solid var(--cote-green);
  min-width: 220px;
  transition: opacity 0.3s ease;
}

.dropdown-menu a {
  color: var(--cote-white);
  text-decoration: none;
  display: block;
  padding: 10px 15px;
}

.dropdown-menu a:hover {
  background-color: var(--cote-green);
  color: var(--text);
}

.elfenbeinküste-nav li a.active {
  border: 2px solid #00BFFF;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 191, 255, 0.5);
}

/* ===============================
   Kapitelcontainer
================================== */
.kapitel.elfenbeinküste {
  background-color: var(--cote-white);
  border-left: 6px solid var(--cote-orange);
  box-shadow: 0 4px 12px rgba(179, 0, 0, 0.1);
  padding: 40px;
  margin: 40px auto;
  max-width: 900px;
  border-radius: 8px;
  animation: fadeInUp 0.8s ease-out;
}

.kapitel-block {
  text-align: center;
  color: var(--cote-orange);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===============================
   Kapitel-Toggle
================================== */
.kapitel-block {
  margin-bottom: 30px;
}

.kapitel-toggle {
  background: linear-gradient(to right, var(--cote-orange), var(--cote-green));
  color: var(--cote-white);
  font-size: 1.1em;
  font-weight: bold;
  padding: 12px 20px;
  border: none;
  width: 100%;
  text-align: center;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.kapitel-toggle:hover {
  background-color: var(--cote-orange);
}

.kapitel-content {
  max-height: 0;
  color: var(--cote-white);
  text-align: center;
  overflow: hidden;
  transition: max-height 0.5s ease;
  background-color: var(--cote-green);
  border-radius: 0 0 8px 8px;
}

.kapitel-content.open {
  max-height: 2000px;
  padding: 20px 0;
}

.prolog-text {
  padding: 20px;
  font-style: italic;
  color: var(--cote-white);
}

/* ===============================
   Scroll-to-Top Button
================================== */
#scrollToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--cote-orange);
  color: var(--asec-black);
  border: 2px solid var(--asec-yellow);
  border-radius: 50%;
  padding: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

#scrollToTopBtn:hover {
  background-color: var(--cote-orange);
  transform: scale(1.1);
}

/* ===============================
   Scroll-to-Top Button
================================== */
#scrollToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--cote-orange);
  color: var(--cote-white);
  border: 2px solid var(--asec-yellow-strong);
  border-radius: 50%;
  padding: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

#scrollToTopBtn:hover {
  background-color: var(--cote-orange);
  transform: scale(1.1);
}

/* ===============================
   footer
================================== */
.footer-elfenbeinküste {
  background-color: var(--cote-orange);
  color: var(--cote-white);
  text-align: center;
  padding: 20px;
  font-size: 0.95em;
  font-style: italic;
  position: relative;
  border-top: 2px solid var(--cote-orange);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
}

/* ===============================
   abschließender Link
================================== */
.kapitel-next {
  margin-top: 3em;
  padding-top: 2em;
  text-align: center;
  background: linear-gradient(to right, #f5c518 0%, #000 100%);
  border-radius: 8px;
  color: #fff;
}
.kapitel-divider {
  border: none;
  height: 2px;
  background: #fff;
  margin-bottom: 1em;
}
.kapitel-abschluss-text p {
  font-size: 1.1em;
  font-style: italic;
  margin-bottom: 1em;
}
.kapitel-link {
  display: inline-block;
  padding: 0.6em 1.2em;
  background-color: #000;
  color: #f5c518;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #f5c518;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.kapitel-link:hover {
  background-color: #f5c518;
  color: #000;
}