/* Combined CSS */

/* Farbpalette */
:root {
  --primary-color: #353B3C;
  /* Prussian Blue - Eleganz & Professionalität */
  --secondary-color: #FFFFFF;
  /* Reinweiß - Klarheit & Minimalismus */
  --accent-color: #B8860B;
  /* Dunkelgold - Luxus & Exklusivität */
  --neutral-papaya: #FFEFD3;
  /* Papaya Whip - Subtile Hintergründe */
  --neutral-gray: #FFFFFF;
  /* French Gray - Neuer Standard-Hintergrund */
}

/* Globale Schriftarten */
body,
h1,
h2,
h3,
h4,
h5,
h6,
.btn {
  font-family: 'Montserrat', sans-serif;
  color: #001B2E;
}

p,
.text-body {
  font-family: 'Open Sans', sans-serif;
  color: #001B2E;
}

/* Überschriften */
h1,
h2,
h3 {
  font-weight: 700;
}

h4,
h5,
h6 {
  font-weight: 600;
}

/* Primärer Button */
.btn-primary-custom {
  background-color: #d1a600;
  /* Overridden by hero.css */
  border-color: #d1a600;
  /* Added from hero.css */
  color: var(--secondary-color);
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: #b08e00;
  /* Overridden by hero.css */
  border-color: #b08e00;
  /* Added from hero.css */
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Sekundärer Button */
.btn-secondary-custom {
  background-color: var(--neutral-gray);
  /* Vorher #F0F0F0 → Jetzt #ADB6C4 */
  color: #222222;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
  background-color: #9aaabf;
  /* Helleres French Gray für Hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #343a40;
  border-radius: 0.5rem;
  color: var(--secondary-color);
}

/* Hero Section from newstyle.css, if different from the above .hero-section */
.angebote {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 20px;
}

.hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  /* Adjust this value (0.0 to 1.0) for desired opacity */
  transition: opacity 0.3s ease-in-out;
}

/* Updated content wrapper to correctly position text and button */
.hero-content-wrapper {
  position: absolute;
  top: 0;
  /* Align to the top of the hero-section */
  left: 0;
  width: 100%;
  height: 100%;
  /* Make it fill the hero-section */
  z-index: 2;
  padding: 1rem;
  /* Add some overall padding to keep content off the edges */
  box-sizing: border-box;
  /* Include padding in width/height calculation */
  /* Use flexbox to align content within this wrapper */
  display: flex;
  flex-direction: column;
  /* Stack items vertically */
  justify-content: center;
  /* Vertically center the stacked items */
  align-items: center;
  /* Horizontally center the items */
  text-align: center;
  /* Ensure text is centered */
}

/* Ensure your text and buttons are visible and styled correctly */
.hero-content-wrapper h1,
.hero-content-wrapper p {
  color: white;
  margin-bottom: 0.5rem;
  /* Add some space between text elements */
}

/* Specific styling for the H1 if needed to match screenshot */
.hero-content-wrapper h1 {
  /* If "LIKEWOLF" should appear higher, you might need a negative margin-top */
  /* margin-top: -3rem; */
  /* Example, adjust as needed */
}

/* Example of how to change opacity on hover (optional) */
.hero-image-container:hover .hero-background-image {
  opacity: 0.8;
}


/* Footer */
.footer-main {
  background-color: var(--primary-color);
}

/* Abstände */
.section-spacing {
  padding-top: 2rem;
  padding-bottom: 3rem;
  /* Vorher 4rem → jetzt 3rem */
}

/* Container mit French Gray Hintergrund */
.container-fluid.section-spacing {
  background-color: var(--neutral-gray);
}

/* Navbar in Oxford Blue */
.navbar-dark.bg-dark {
  background-color: var(--primary-color) !important;
}

.card {
  margin-bottom: 2rem;
}

/* Zusätzliche Styles für die Timeline basierend auf dem bestehenden Design */
    .timeline {
      position: relative;
      padding: 20px 0;
    }
    .timeline-item {
      padding: 20px;
      border-left: 3px solid var(--accent-color, #B8860B);
      margin-left: 20px;
      position: relative;
      margin-bottom: 20px;
    }
    .timeline-item::before {
      content: '';
      position: absolute;
      left: -9px;
      top: 24px;
      width: 15px;
      height: 15px;
      border-radius: 50%;
      background: var(--accent-color, #B8860B);
      border: 3px solid var(--secondary-color, #fff);
    }
    .timeline-year {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      color: var(--accent-color, #B8860B);
      font-size: 1.1rem;
    }

/* Gradient Social Media Buttons */
.btn-gradient-custom {
  background-image: linear-gradient(90deg, #6A687A, #84828F);
  color: #FFFFFF;
  border-radius: 5px;
  padding: 0.4rem 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  border: none;
}

.btn-gradient-custom:hover {
  background-image: linear-gradient(90deg, #3A708C, #2F6175);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .btn-gradient-custom {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .custom-card-text-list p {
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
    line-height: 1.8rem;
  }
}

/* ============================================================
   NEW CSS FOR KUNSTMARKT BLOG
   ============================================================ */

/* Pullquote / Highlight Block */
.quote {
  border-left: 4px solid var(--accent-color);
  padding: 1rem 1rem;
  background-color: #fffbf0;
  font-style: italic;
  color: #3a3a3a;
  margin: 1.5rem 0;
  border-radius: 0 6px 6px 0;
  box-sizing: border-box;
  max-width: 100%;
}

/* Stat Cards Row */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
  box-sizing: border-box;
  width: 100%;
}
.stat-card {
  background: linear-gradient(135deg, var(--primary-color) 0%, #4a5254 100%);
  color: #fff;
  border-radius: 10px;
  padding: 1.2rem 1rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}
.stat-card .stat-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1.1;
}
.stat-card .stat-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.78rem;
  color: #dde3e6;
  margin-top: 0.3rem;
}

/* Horizontal bar chart (pure CSS) */
.bar-chart { margin: 1.5rem 0; }
.bar-row {
  display: flex;
  align-items: center;
  margin-bottom: 0.7rem;
  gap: 0.8rem;
}
.bar-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  width: 80px;
  flex-shrink: 0;
  color: #333;
}
.bar-track {
  flex: 1;
  background: #e8ecef;
  border-radius: 4px;
  height: 22px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-color), #d4a017);
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding-left: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  transition: width 1s ease;
}

/* Section label chip */
.section-chip {
  display: inline-block;
  background-color: var(--accent-color);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  margin-bottom: 0.4rem;
}

/* Highlight box (dark) */
.highlight-box {
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 10px;
  padding: 1.2rem 1rem;
  margin: 1.5rem 0;
  box-sizing: border-box;
  max-width: 100%;
  overflow-x: hidden;
}
.highlight-box h4 { color: var(--accent-color); margin-bottom: 0.5rem; }
.highlight-box p { color: #dde3e6; font-family: 'Open Sans', sans-serif; margin-bottom: 0; font-size: 0.95rem; }

/* Region table */
.region-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.88rem;
  margin: 1rem 0;
}
.region-table th {
  background: var(--primary-color);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 0.6rem 0.75rem;
  text-align: left;
}
.region-table td {
  padding: 0.55rem 0.75rem;
  border-bottom: 1px solid #e5e9ec;
}
.region-table tr:nth-child(even) td { background-color: #f7f9fb; }
.region-table tr:hover td { background-color: #fffbef; }
.region-table .change-pos { color: #1a7f4e; font-weight: 600; }
.region-table .change-neg { color: #c0392b; font-weight: 600; }

@media (max-width: 575.98px) {
  .region-table .col-detail { display: none; }
  .region-table th,
  .region-table td { padding: 0.4rem 0.5rem; font-size: 0.8rem; }
}

/* Hero gradient overlay for dark text contrast */
.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}
.hero-content-wrapper { z-index: 2; }

/* Cookie alert */
.cookiealert {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #212529;
  color: #fff;
  z-index: 9999;
  border-radius: 0;
  padding: 0.8rem 1rem;
  font-size: 0.85rem;
}

/* Source note */
.source-note {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.75rem;
  color: #888;
  font-style: italic;
  margin-top: 0.25rem;
}

/* Hero SVG fallback background */
.hero-bg-art {
  background: linear-gradient(135deg, #1a1f20 0%, #353B3C 50%, #2c3133 100%);
}

/* Inline icon badge */
.icon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #f0f4f7;
  border: 1px solid #dce2e8;
  border-radius: 20px;
  padding: 0.2rem 0.7rem;
  font-size: 0.8rem;
  font-family: 'Open Sans', sans-serif;
  color: #444;
  margin: 0.15rem;
}

/* Trend arrows */
.trend-up { color: #1a7f4e; font-weight: 700; }
.trend-down { color: #c0392b; font-weight: 700; }

/* Marker chip in timeline */
.timeline-tag {
  display: inline-block;
  background: var(--neutral-papaya);
  color: var(--primary-color);
  font-size: 0.72rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 0.15rem 0.6rem;
  border-radius: 12px;
  margin-left: 0.5rem;
  border: 1px solid var(--accent-color);
}

/* Responsive hero padding */
@media (max-width: 768px) {
  .hero-section { padding-top: 2rem; padding-bottom: 2rem; }
}

/* FAQ accordion custom styling */
.accordion-button:not(.collapsed) {
  background-color: #fffbf0;
  color: var(--primary-color);
  font-weight: 600;
  border-bottom: 2px solid var(--accent-color);
}
.accordion-button:focus { box-shadow: 0 0 0 0.2rem rgba(184,134,11,0.25); }

/* Scroll reveal animation helper */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }