/* ================================
   🎨 Layout & Grundfarben
=================================== */
body, .main-content, .wrapper, .content {
  background-color: #ffffff !important;
  border-radius: 0 !important;
}

/* ================================
   📦 Karten / Boxen / Hosting-Pakete
=================================== */
.card-columns {
  background-color: transparent !important;
  border-radius: 0 !important;
}

.card-columns .card,
.card-columns .card.mb-3 {
  background-color: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none !important;
  overflow: visible !important;
}

.card-columns .card-body {
  background-color: #ffffff !important;
  border: 2px solid #8CC63F !important; /* EcoHosting-Grün */
  border-radius: 12px !important;
  padding: 2rem 1.5rem !important;
  box-shadow: none !important;
  transition: all 0.2s ease-in-out;
  color: #333 !important;
}

.card-columns .card-body:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* ================================
   🧭 Navigation & Logo
=================================== */
#navbar ul.nav {
  justify-content: center;
  gap: 30px;
  padding-top: 10px;
}

.navbar-header img {
  max-height: 120px;
  margin-bottom: 10px;
}

/* ================================
   📌 Buttons (z. B. Bestellen)
=================================== */
.btn-outline-primary {
  color: #8CC63F !important;
  border: 2px solid #8CC63F !important;
  background-color: white !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: #8CC63F !important;
  color: white !important;
  border-color: #8CC63F !important;
}

/* ================================
   📝 Überschriften
=================================== */
h2.text-center {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #2a2a2a;
  position: relative;
  margin-bottom: 2.5rem;
}

h2.text-center::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #8CC63F;
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* ================================
   🌱 Philosophie / Akkordeon-Balken
=================================== */
.philosophie-container {
  width: 100%;
  margin-bottom: 0.5rem;
}

.philosophie-bar {
  background-color: #8CC63F;
  color: white;
  font-weight: 600;
  padding: 1rem 1.5rem;
  cursor: pointer;
  text-align: center;
  position: relative;
}

.philosophie-bar:hover {
  background-color: #76b636;
}

/* Pfeil im Balken */
.philosophie-bar .arrow {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.rotate-up {
  transform: translateY(-50%) rotate(180deg);
}

/* ================================
   📂 Inhalte unterhalb der Balken
=================================== */
.philosophie-content {
  display: none;
  background-color: #f6fef4;
  border: 1px solid #8CC63F;
  padding: 1.5rem;
  animation: slideDown 0.4s ease forwards;
}

.philosophie-content.open {
  display: block !important;
}

.philosophie-content .inner {
  max-width: 900px;
  margin: 0 auto;
  color: #333;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
}

/* ================================
   🌿 Statischer Hinweis-Balken
=================================== */
.philosophie-bar.static {
  cursor: default;
  background-color: #8BC34A;
  color: white;
  font-weight: bold;
  text-align: center;
  padding: 10px 0;
  border-top: 2px solid #7CB342;
  border-bottom: 2px solid #7CB342;
}

/* ================================
   📉 Animationen
=================================== */
@keyframes slideDown {
  from {
    opacity: 0;
    height: 0;
  }
  to {
    opacity: 1;
    height: auto;
  }
}

/* ================================
   ↕️ Abstand zwischen Bereichen
=================================== */
.philosophie-spacer {
  height: 0.25rem;
  margin: 0;
  padding: 0;
}
/* Logo etwas größer */
.navbar-brand img {
    height: 90px;
}

/* Menü-Schrift größer und mit mehr Abstand */
.navbar .nav > li > a {
    font-size: 16px;
    padding: 15px 20px;
    font-weight: 500;
}

/* Dropdown-Menü lesbarer */
.navbar .dropdown-menu > li > a {
    font-size: 15px;
    padding: 10px 20px;
}

/* Bessere vertikale Ausrichtung */
.navbar {
    padding-top: 10px;
    padding-bottom: 10px;
}
