/* Global Styles */
:root {
  --primary-color: #2c3e50;
  --secondary-color: #7f60ec;
  --tertiary-color: #dee0f9;
  --accent-color: #5e3ebd;
  --light-color: #ecf0f1;
  --dark-color: #1a252f;
  --white-color: #ffffff;
  --striking-purple: #870be7;
  --faq-purple: #6610a8;
  --date-past: #666666;
  --shadow-sm: 0 5px 15px rgba(0,0,0,0.1);
  --shadow-lg: 0 5px 15px rgba(0,0,0,0.2);
}

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

/* START Typography - Headings */

h1,
h2,
h3,
h4 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  /* Modern system font stack */
  font-weight: 700;
  /* Bold */
  line-height: 1.2;
  /* Tight line height for headings */
  margin-top: 0.5em;
  /* Remove default top margin */
  margin-bottom: 0.5em;
  /* Consistent bottom spacing */
  /* color: #2c3e50; */
  /* Dark gray/blue for good readability */
}

/* H1 - For main page title, one only per page */
h1 {
  font-size: 2.5rem;
  /* 40px at 16px base */
  letter-spacing: -0.02em;
  /* Slightly tighter letter spacing */
  padding-bottom: 0.3em;
  /* Space for potential border */
  /* border-bottom: 2px solid #eee; */
  /* Subtle underline */
}

/* H2 - For section headings */
h2 {
  font-size: 1.875rem;
  /* 30px at 16px base */
  padding-bottom: 0.2em;
  border-bottom: 2px solid #5e3ebd;
  /* Very subtle underline */
}

/* H3 - For subsection headings */
h3 {
  font-size: 1.5rem;
  /* 24px at 16px base */
  font-weight: 600;
  /* Slightly less bold */
}

/* H4 - For sub-subsection headings */
h4 {
  font-size: 1.25rem;
  /* 20px */
  color: #7f60ec;
  font-weight: 600;
  text-transform: uppercase;
  /* Optional: for visual distinction */

  /* Slightly wider spacing for uppercase */
  margin-bottom: 0.4em;
}

/* H6 - Only used on the Start page for the BWP slogan */
h6 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, cursive;
  font-size: 2.5rem;
  font-weight: 400;
}

/* END Typography - Headings */

/* START other Typography */

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: #f9f9f9;
}

a {
  text-decoration: none;
  color: var(--striking-purple);
}

/* List styling with indentation */
ul,
ol {
  margin: 1em 0;
  /* Vertical spacing for lists */
  padding-left: 1.5em;
  /* Base indentation for the whole list */
}

li {
  margin-left: 0.5em;
  /* Additional indentation for list items */
  margin-bottom: 0.5em;
  /* Space between list items */
  line-height: 1.5;
  /* Improved readability */
  padding-left: 0.3em;
  /* Optional: extra inner spacing */
}

/* Optional: Custom bullet styling */
ul {
  list-style-type: disc;
  /* Default bullets */
}

ul li::marker {
  color: #666;
  /* Subtle bullet color */
}

/* Optional: Custom numbering for ordered lists */
ol {
  list-style-type: decimal;
}

ol li {
  padding-left: 0.2em;
  /* Adjust for numbering alignment */
}

/* Nested lists (for multi-level indentation) */
ul ul,
ol ul,
ul ol,
ol ol {
  margin-top: 0.3em;
  margin-bottom: 0.3em;
}

/* Second level indentation */
ul ul li,
ol ul li,
ul ol li,
ol ol li {
  margin-left: 1em;
  /* Additional indentation for nested items */
}

/* Third level indentation */
ul ul ul li,
ol ul ul li,
ul ol ul li,
ol ol ul li {
  margin-left: 1.5em;
}

/* END other Typography */

/* Image Styles */

img {
  max-width: 100%;
  height: auto;
}

.img-centered {
  max-width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container Styles */

.container {
  max-width: 1200px;
  margin: auto;
  padding: 5px;
}

.container-menu {
  max-width: 1200px;
  margin: auto;
  padding: 5px;
  background-color: white;
  max-height: fit-content;
}

/* START Button Styles */

.btn {
  display: inline-block;
  background: var(--secondary-color);
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
  margin-left: 15px;
}

.btn-outline:hover,
.btn-primary {
  background: var(--secondary-color);
  color: #fff;
}

.btn-primary:hover {
  background: #c0392b;
  transform: translateY(-2px);
}

/* Show Park open/closed status */
#statusButton {
    background-color: var(--secondary-color);
    color: var(--tertiary-color);
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 400;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* END Button Styles */

/* Utility Classes */
.text-center,
.step {
  text-align: center;
}

/* START Section Styles TODO .section itself is missing? */

.section-title {
  text-align: center;
  padding-top: 10px;
  margin-bottom: 50px;
  position: relative;
}

.section-title h2 {
  font-size: 1.875rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
  color: #555;
}

.section-subtitle,
.partners-section {
  text-align: center;
  font-size: 1rem;
  color: #000000;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* START Header Section Styles */

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo span {
  color: var(--secondary-color);
}

.logoBWP {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logoBWP span {
  color: var(--secondary-color);
}

header {
  background: #fff;
  box-shadow: var(--shadow-lg);
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.95);
}

.purple-link {
  color: var(--secondary-color);
}

.purple-link:hover {
  color: var(--striking-purple); /* or whatever color you want on hover */
}

/* Header Section Navigation Styles */

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction:row;
  background-color: white;
}

/* Add this CSS for the dropdown functionality */
.nav-links .dropdown {
  position: relative;
  list-style: none; /* This removes the bullets */
}

.nav-links {
  display: flex;
  list-style: none; /* This removes the bullets */
}

.nav-links li {
  margin-left: 20px;
  margin-top: 10px;
}

.nav-links a {
  color: var(--dark-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--striking-purple);
}

.nav-links a.active {
  color: var(--striking-purple);
  font-weight: 600;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 200px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
}

.dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
}

.submenu li {
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
}

.submenu li:last-child {
  border-bottom: none;
}

.submenu li a {
  color: #333;
  text-decoration: none;
}

.submenu li a:hover {
  color: var(--striking-purple);
}

/* Start new Hamburger */

/* Base Layout */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.nav-links {
  display: flex;
  list-style: none;
}

/* Hide Hamburger by default (Desktop) */
.menu-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  transition: 0.3s;
}


/* TABLET & MOBILE STYLES */
@media screen and (max-width: 1024px) {
  .menu-toggle {
    display: flex; /* Show Hamburger */
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    right: -100%; /* Hide menu off-screen */
    top: 0;
    flex-direction: column;
    background-color: #fff;
    width: 80%; /* Width of the mobile drawer */
    height: 100vh;
    padding-top: 80px;
    transition: 0.4s;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    overflow-y: auto; /* Allow scrolling if menu is long */
  }

  .nav-links.active {
    right: 0; /* Slide menu in */
  }

  .nav-links li {
    margin: 10px 30px;
  }

  /* Submenu adjustments for mobile */
  .submenu {
    position: static;
    display: none; /* Hide submenus until clicked, or keep visible */
    box-shadow: none;
    padding-left: 10px;
  }

  .dropdown:hover .submenu {
    display: block; /* Show submenu when parent is hovered/clicked */
  }

  /* Hamburger Animation to 'X' */
  #mobile-menu.is-active .bar:nth-child(2) {
    opacity: 0;
  }
  #mobile-menu.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  #mobile-menu.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .logoBWP {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
  }

  .logoBWP span {
    color: var(--secondary-color);
  }
}

/* END Header Section Styles */

/* START Hero Section Styles */

/* START New Hero Default Styles & Mobile Image TODO CHANGE FIXED PATH FOR PRODUCTIVE!!! +++++++++++++++++++++++++++++++++++ 
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url("../assets/img/webp/small/IMG_7884-600x450-small.webp"); /* Smaller file for mobile 
  background-size: cover;
  background-position: center;
  height: 60vh;
  display: flex;
  align-items: center;
  color: #fff;
  text-align: center;
  padding-top: 100px;
}

/* 2. Tablet Version 
@media (min-width: 768px) {
  .hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
      url("../assets/img/webp/medium/IMG_7884-800x600-medium.webp");
      background-position: top; /* Aligns the image to the top 
  }
}

/* 3. Desktop Version 
@media (min-width: 1200px) {
  .hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
      url("../assets/img/webp/large/IMG_7884-1200x900-large.webp");
      background-position: center; /* Aligns the image to the center of the hero image 
  }
}
/* END New Hero Default Styles & Mobile Image 

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  color: #fff;
  text-align: center;
  padding-top: 100px;
  overflow: hidden;
}

/* TEMP DEACTIVATE 29.04.2026 test.php */
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}


/* TEMP TEST 29.04.2026 test.php WORKS
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* Dark overlay to keep text readable over the video 
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(156, 143, 143, 0.85);
  z-index: 1;
}
*/


.hero-content {
  position: relative;
  width: 100%;
}


.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--light-color);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* END Hero Section Styles */

/* START Main and Content Section Styles */

main {
  padding-top: 50px;
}

.content-section {
  padding: 20px;
  background: #fff;
  margin-bottom: 30px;
  border-radius: 10px;
  /* box-shadow: var(--shadow-lg); */
  box-shadow: none;
}

.content-section h2 {
  color: var(--primary-color);
  margin-bottom: 30px;
  font-size: 1.875rem;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-color);
}

.content-section h3 {
  color: var(--primary-color);
  margin: 40px 0 20px;
  font-size: 1.5rem;
}

.content-section p {
  margin-bottom: 10px;
  color: #555;
  line-height: 1.8;
}

/* END Main and Content Section Styles */

/* START Contact Section Styles */

.contact-section {
  background: var(--light-color);
  padding: 40px;
  border-radius: 10px;
  margin: 40px 0;
  text-align: center;
}

.contact-section h3 {
  margin-bottom: 20px;
}

.contact-info {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 30px 0;
}

.contact-item {
  text-align: center;
  padding: 20px;
}

.contact-item i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
  display: block;
}

/* END Contact Section Styles */

/* START Contact Card Info Grid */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.contact-card {
  background: var(--light-color);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-lg);
}

/* .contact-card:hover {
  transform: translateY(-5px);
} */

.contact-card i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.contact-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* END Contact Card Info Grid */

/* START Opening Hours Table */

.table-responsive {
  width: 100%;
  overflow-x: auto; 
  -webkit-overflow-scrolling: touch; 
  margin-bottom: 1rem;
}

/* Optional: Ensure the table inside doesn't shrink too much */
.table-responsive table {
  min-width: 600px; /* Forces a scrollbar on small phones */
  width: 100%;
}

.opening-hours {
  margin: 30px 0;
  overflow-x: auto;
}

.opening-hours table {
  width: 100%;
  border-collapse: collapse;
}

.opening-hours th,
.opening-hours td {
  padding: 15px;
  text-align: center;
  border: 1px solid #ddd;
}

.opening-hours th {
  background: var(--primary-color);
  color: #fff;
}

.opening-hours tr:nth-child(even) {
  background: #f2f2f2;
}

.opening-hours tr:hover {
  background: #e9e9e9;
}

 /* END Opening Hours Table */

 /* START Feiertage Table */

.opening-hours2 {
    margin: 10px 0;
    overflow-x: auto;
  }

  .opening-hours2 table {
    width: 100%;
    border-collapse: collapse;
    /* margin: 20px 0; */
  }

  .opening-hours2 th,
  .opening-hours2 td {
    font-size: 1rem;
    padding: 15px;
    text-align: center;
    border: 1px solid #ddd;
  }

  .opening-hours2 th {
    background: var(--secondary-color);
    color: #fff;
  }

  .opening-hours2 tr:nth-child(even) {
    background: #f2f2f2;
  }

  .opening-hours2 tr:hover {
    background: #e9e9e9;
  }

  /* These 3 don't work as td is defined above */

  .open{
    color: green;
  }

  .closed{
    color: red;
  }

  /* END Feiertage Table */

/* Aktuelles Section */

.aktuelles {
  padding: 10px 0;
  background: var(--tertiary-color);
}

/* START About Section */

.about {
  padding: 30px 0;
  background: #fff;
}

.about-content {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.about-img {
  flex: 1; /* Takes up available space in the flex container */
  border-radius: 10px;
  overflow: hidden; /* Ensures child (img) respects border-radius */
  box-shadow: var(--shadow-lg);
}

.about-img img {
  width: 100%; /* Stretch to full width of parent */
  height: 100%; /* Stretch to full height of parent */
  object-fit: cover; /* Fill the box while maintaining aspect ratio */
  display: block; /* Removes extra space below the image */
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.about-text p {
  margin-bottom: 20px;
  color: #555;
}

/* END About Section */

/* START Gallery Section */

.gallery {
  padding: 20px 0;
  background: var(--light-color);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  margin-bottom: 5px;
}

/* Portrait Gallery Items */

.portrait-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.portrait-gallery-item:hover {
  transform: scale(1.03);
}

.portrait-gallery-item img {
  display: block;
  width: 300%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portrait-gallery-item:hover img {
  transform: scale(1.1);
}

/* END Gallery Section */

/* START Visit Section */

.visit {
  padding: 30px 0;
  background: #fff;
}

.visit-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 20px 20px;
  justify-content: center;
}

.visit-item {
  flex: 1;
  flex-direction: column;
  text-align: center;
  padding: 30px;
  background: var(--light-color);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;

  /* Responsive logic: */
  flex: 1 1 300px; /* Grow, Shrink, and "Ideal" width of 300px */
  max-width: 400px; /* Prevents cards from getting too wide on tablets */
}

.visit-item i {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.visit-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.visit-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

/* END Visit Section */

/* START Info Card Section */

.info-icon {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.info-card {
  background: var(--white-color);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  flex: 1;
  min-width: 280px;
  /* max-width: 350px; */
  text-align: left;
  margin-top: 1.5rem;
}

.info-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.info-card ul {
  list-style: none;
}

.info-card ul li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
}

.info-card ul li strong {
  margin-right: 0.5rem;
}

.info-card .map-placeholder {
  width: 100%;
  height: 200px;
  background-color: #e0e0e0;
  border-radius: 5px;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-style: italic;
}

/* END Info Card Section */

/* START Contact Section */

.contact {
  padding: 100px 0;
  background: var(--light-color);
}

.contact-content {
  display: flex;
  gap: 50px;
}

.contact-info {
  flex: 1;
}

.contact-info-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-info-item i {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-right: 20px;
}

/* Probably unused */
.contact-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background: var(--light-color);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: var(--primary-color);
}

/* END Contact Section */

/* START Form Section */

.form-container {
  max-width: 1160px;
  margin: auto;
  padding: 30px;
  background-color: var(--tertiary-color);
  border-radius: 5px;
  box-shadow: var(--shadow-lg);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
  margin-top: 4px;
}

.checkbox-group label {
  margin-bottom: 0;
}

.checkbox-group a {
  color: var(--secondary-color);
  font-weight: 500;
}

.form-error {
  color: var(--secondary-color);
  font-size: 0.9rem;
  margin-top: 5px;
  display: none;
}

.form-success {
  background: #d4edda;
  color: #155724;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  display: none;
}

/* END Form Section */

/* START Info Boxes */

.info-box {
  background: var(--light-color);
  padding: 25px;
  border-radius: 10px;
  margin: 20px 0;
  border-left: 5px solid var(--secondary-color);
}

.info-box h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.info-box ul {
  margin-left: 20px;
}

/* END Info Boxes */

/* START Footer Styles */

footer {
  background: var(--dark-color);
  color: #fff;
  padding: 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  padding: 0px;
}

.footer-column {
  flex: 1;
  padding: 10px;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 10px;
  color: #7f60ec;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--secondary-color);
}

/* ANDY TODO Center Datenschutz and Impressum*/

.footer-column p {
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-column-centered a {
  color: var(--secondary-color);
  transition: color 0.3s ease;
}

.footer-column-centered a:hover {
  color: var(--tertiary-color);
}

.social-links {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: #fff;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #ccc;
}

.telefonzeiten {
  text-align: center;
  padding-top: 5px;
  color: #ccc;
}

/* START Footer Styles */

/* START Newsletter Section */

.newsletter {
  padding: 30px 0;
  background: #fff;
}

.newsletter-content {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.newsletter-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.newsletter-image img {
  width: 100%;
  height: auto;
  display: block;
}

.newsletter-form {
  flex: 1;
  background: var(--light-color);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
}

.newsletter-form h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.newsletter-form p {
  color: #555;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: var(--dark-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
  margin-top: 4px;
}

.checkbox-group label {
  font-weight: normal;
  margin-bottom: 0;
}

.newsletter-benefits {
  margin-top: 40px;
}

.newsletter-benefits h4 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.benefits-list {
  list-style: none;
}

.benefits-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

/* END Newsletter Section */

/* START Transport Icons */

.transport-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
  margin: 40px 0;
  padding: 20px;
}

.transport-option {
  text-align: center;
  padding: 20px;
  background: var(--light-color);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

/* .transport-option:hover {
  transform: translateY(-5px);
} */

.transport-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.transport-option h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* END Transport Icons */

/* START Map Section */

.map-section {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: column;
}

.map-container {
  width: 100%;
  max-width: 100%; /* Prevent overflow */
  aspect-ratio: 16 / 9; /* Responsive 16:9 aspect ratio */
  margin: 0 auto; /* Centers horizontally */
  overflow: hidden; /* Ensures no scrollbars */
  border-radius: 8px; /* Optional: matches your design */
}

#park-map {
  height: 100%;
  width: 100%;
  border-radius: 10px;
}

/* END Map Section */

/* START Grids */

.info-grid {
  display: block;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 10px;
}

.info-box {
  background: var(--light-color);
  padding: 25px;
  border-radius: 10px;
  margin: 20px 0;
  border-left: 5px solid var(--secondary-color);
}

.info-box h3 {
  margin-bottom: 15px;
}

.info-box ul {
  margin-left: 20px;
}

/* END Tour Cards */

/* START Sculpture Cards */

.sculpture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.sculpture-item {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertically centers content */
  align-items: center;     /* Horizontally centers content */
  text-align: center;      /* Centers text */
  padding: 30px;
  background: var(--light-color);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}


.sculpture-item:hover {
  transform: translateY(-10px);
}

.sculpture-item i {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.sculpture-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.sculpture-img {
  height: 418px;
  width: 314px;
}

.sculpture-img img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

/* END Sculpture Cards */

/* START FAQ Section */

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.faq-category {
  margin-bottom: 40px;
}

.faq-category h3 {
  background: var(--secondary-color);
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  padding: 15px 20px;
  border-radius: 5px 5px 0 0;
  margin-bottom: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-category.active h3 {
  border-radius: 5px;
}

.faq-category-content {
  display: none;
  border: 1px solid #eee;
  border-top: none;
  border-radius: 0 0 5px 5px;
}

.faq-category.active .faq-category-content {
  display: block;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--faq-purple);
  font-weight: 500;
}

.faq-answer {
  padding: 0 20px 20px;
  color: #555;
  line-height: 1.7;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question i.fa-chevron-down {
  display: none;
}

.faq-item.active .faq-question i.fa-chevron-up {
  display: inline;
}

.faq-item i.fa-chevron-up {
  display: none;
}

/* END FAQ Section */

/* START News Detail Modal */

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  overflow-y: auto;
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 30px;
  border-radius: 8px;
  max-width: 800px;
  width: 90%;
  position: relative;
}

.close-btn {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 2rem;
  cursor: pointer;
  color: #666;
}

/* END News Detail Modal */

/* START Events Section */

.events-section {
  background: #f5f5f5;
}

.event-card {
  background: #fff;
  border-radius: 8px;
  padding: 25px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 20px;
}

.event-date {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.date-box {
  background: var(--secondary-color);
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  min-width: 60px;
}

.date-box-past {
  background: var(--date-past);
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  min-width: 60px;
}

.date-day {
  font-size: 0.9rem;
  font-weight: bold;
}

.date-date {
  font-size: 1.5rem;
  font-weight: bold;
}

.date-month {
  font-size: 0.9rem;
}

/* END Events Section */

/* START Featured News */

.featured-news {
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  padding: 20px;
}

.featured-news img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top; /* This aligns the image to the top */
  border-radius: 8px 0 0 8px;
}

/* END Featured News */

/* START News Card */

.news-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s, box-shadow 0.3s;
}

/* .news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
} */

.news-img {
  height: 200px;
  overflow: hidden;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center; /* This aligns the image to the top and down by XYZ%*/
  transition: transform 0.5s;
}

.news-card:hover .news-img img {
  transform: scale(1.05);
}

.news-content {
  padding: 25px;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  color: #666;
  font-size: 0.9rem;
}

.news-date {
  display: flex;
  align-items: center;
  gap: 5px;
}

.news-category {
  display: flex;
  align-items: center;
  gap: 5px;
}

.category-tag {
  background: var(--accent-color);
  color: #fff;
  padding: 3px 8px;
  border-radius: 15px;
  font-size: 0.8rem;
}

.news-title {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.news-excerpt {
  margin-bottom: 20px;
  margin-right: 20px;
  color: #555;
}

.read-more {
  display: inline-block;
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}

.read-more:hover {
  border-bottom-color: var(--secondary-color);
}

/* END News Card */

/* News Categories */

.news-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.category-btn {
  padding: 8px 20px;
  border-radius: 25px;
  border: 1px solid #ddd;
  background: #fff;
  color: #666;
  cursor: pointer;
  transition: all 0.3s;
}

.category-btn.active,
.category-btn:hover {
  background: var(--secondary-color);
  color: #fff;
  border-color: var(--secondary-color);
}

/* News Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

/* Features Grid */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.feature-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--tertiary-color);
  border-radius: 8px;
    box-shadow: var(--shadow-lg);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card-holidays {
  text-align: center;
  padding: 30px 20px;
  background: var(--secondary-color);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card-top {
  text-align: center;
  padding: 30px 20px;
  background: var(--secondary-color);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card-holidays-white {
  color: #fff;
}

.feature-card-holidays-green {
  color: #06f00e;
}

.feature-card-holidays-red {
  color: #c70505;
}

.feature-card:hover {
  /* transform: translateY(-5px); */
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.feature-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* START Board Cards */

/* News Grid */
.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.board-member {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s, box-shadow 0.3s;
}

.board-member:hover {
  /* transform: translateY(-5px); */
  box-shadow: var(--shadow-lg);
}

.board-photo {
  display: none;
  height: 600px;
  width: auto;
  /* overflow: hidden; */
  object-fit: cover;
  border-radius: 8px;
  margin: 10px;
  transition: transform 0.3s ease;
}

.board-photo img:hover {
  transform: scale(1.03);
}

.board-info {
  background-color: #e0e0e0;
  padding: 15px;
}

.board-role {
  color: var(--primary-color);
}

/* How it works section */

.how-it-works {
  background: #f5f5f5;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}


.step-number {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

.step h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* Tour Options */

.tours-grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(500px, 1fr)); */
  gap: 10px;
  margin-top: 10px;
}

.tour-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.tour-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s;
  margin: 10px;
}

.tour-img img {
  width: fit-content;
  object-fit: cover;
  transition: transform 0.5s;
}

.tour-content {
  padding: 20px;
}

.tour-title {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.tour-duration {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: #666;
}

.tour-description {
  margin-bottom: 20px;
  color: #555;
}

.tour-price {
  font-weight: bold;
  color: var(--secondary-color);
  font-size: 1.2rem;
}

.tour-price-notes {
  font-weight: bold;
  color: var(--secondary-color);
  font-size: 1rem;
}

/* Audio Player Styles */

.audio-player {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: var(--shadow-lg);
  margin: 30px 0;
  text-align: center;
}

.audio-player h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.play-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--secondary-color);
  color: #fff;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-container {
  width: 100%;
  max-width: 500px;
  height: 5px;
  background: #ddd;
  border-radius: 5px;
  margin: 20px 0;
  cursor: pointer;
}

.progress-bar {
  height: 100%;
  background: var(--secondary-color);
  border-radius: 5px;
  width: 0%;
}

.time-display {
  display: flex;
  justify-content: space-between;
  color: #666;
  font-size: 0.9rem;
}

/* Testimonials */

.testimonials {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  margin: 60px 0;
}

.testimonial-slider {
  position: relative;
}

.testimonial {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  text-align: center;
  padding: 20px;
}

.testimonial-quote {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.testimonial-author {
  font-weight: bold;
  color: var(--park-blue);
}

.testimonial-role {
  color: #666;
  font-size: 0.9rem;
}

.testimonial.active {
  display: block;
  opacity: 1;
}

.slider-nav {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.slider-nav button {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--park-blue);
  cursor: pointer;
  margin: 0 15px;
  transition: color 0.3s;
}

.slider-nav button:hover {
  color: var(--secondary-color);
}

/* Optional: Style for slider dots */

.slider-dots {
  text-align: center;
  margin-top: 20px;
}

.slider-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
}

.slider-dot.active {
  background-color: #333;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  color: var(--primary-color);
}

.author-info p {
  color: #666;
  font-size: 0.9rem;
}

/* START Pricing Table */

.pricing-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.pricing-card {
  background: #fff;
  border-radius: 8px;
  padding: 30px 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
}

.pricing-card.featured {
  border-top: 4px solid var(--secondary-color);
  transform: scale(1.05);
}

.pricing-title {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.pricing-period {
  color: #666;
  margin-bottom: 20px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 25px;
}

.pricing-features li {
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li:before {
  content: "✓";
  color: var(--success-color);
  font-weight: bold;
}

/* END Pricing Table */

/* START Transport How to Get There */

.transport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.transport-card {
  background: white;
  border-radius: 8px;
  padding: 30px;
  text-align: left;
  box-shadow: var(--shadow-lg);
}

.transport-icon {
  font-size: 2.5rem;
  color: var(--visit-green);
  margin-bottom: 20px;
}

/* END Transport How to Get There */

/* START Map Section */

.location-map {
  width: 100%;
  height: 400px;
  border-radius: 4px;
  border: 1px solid #ddd;
}

/* Tips Section */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.tip-card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: var(--shadow-lg);
}

.tip-card h4 {
  color: var(--visit-green);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* END Map Section */

/* START Price Tables */

.price-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
  padding: 10px;
}

.price-card {
  background: var(--light-color);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.price-card.featured {
  border-top: 4px solid var(--secondary-color);
  background: #fff;
}

.price-title {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.price-amount {
  font-size: 2rem;
  color: var(--secondary-color);
  font-weight: 700;
  margin: 15px 0;
}

.price-subtitle {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
}

.price-features {
  text-align: left;
  margin: 20px 0;
}

.price-features li {
  list-style: none;
  padding: 5px 0;
  position: relative;
  padding-left: 25px;
}

.price-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.price-features li.unavailable:before {
  content: "✗";
  color: #ccc;
}

/* END Price Tables */

/* START Membership Benefits */

/* Membership Section */

.membership-section {
  /* background: linear-gradient(rgba(52, 152, 219, 0.1), rgba(52, 152, 219, 0.1)); */
  background: #dcdef7;
  border: 1px solid var(--verein-blue);
  border-radius: 8px;
  padding: 40px;
  margin: 60px 0;
  text-align: center;
}

.membership-section h2 {
  color: var(--verein-blue);
  margin-bottom: 20px;
}

.membership-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 5px;
  margin: 20px 0;
  text-align: left;
}

.membership-benefits li {
  text-align: left;
  font-size: 1rem;
  margin-left: 10px;
  margin-bottom: 0px;;
  padding: 0px;
  text-decoration: dotted;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
}

.benefit-icon {
  color: var(--verein-blue);
  font-size: 1.5rem;
  margin-right: 15px;
  margin-top: 5px;
}

.benefit-content h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.benefit-content p li {
  font-size: 0.95rem;
  margin-right: 20px;
}

/* END Membership Benefits */

/* START Membership Tables */

.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.membership-card {
  background: var(--light-color);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.membership-card.featured {
  border-top: 4px solid var(--secondary-color);
  background: #fff;
}

.membership-card h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.membership-price {
  font-size: 1.5rem;
  color: var(--secondary-color);
  font-weight: 700;
  margin: 15px 0;
}

.membership-card li {
  list-style: none;
  padding: 5px;
  position: relative;
}

.membership-icon {
  color: var(--secondary-color);
}

/* END Membership Tables */

/* START Partnership Section  */

.partners-section {
  /* background: #DCDEF7; */
  background: var(--light-color);
  border-radius: 8px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 40px 0;
  align-items: center;
}

.partner-logo {
  height: 80px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.partner-logo:hover {
  opacity: 1;
}

/* END Partnership Section  */

/* START Donation Section */

.donation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.donation-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s;
}

.donation-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.donation-card-content {
  padding: 25px;
}

.donation-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.donation-card p {
  margin-bottom: 20px;
  color: #666;
}

.donation-amount {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--secondary-color);
  margin: 15px 0;
}

/* END Donation Section */

/* START Image Gallery DUPLICATE???? */

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.image-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.image-gallery img:hover {
  transform: scale(1.03);
}

.image-gallery-taller img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.image-gallery-taller img:hover {
  transform: scale(1.03);
}

.image-gallery-ma img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position:top; /* This aligns the image */
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.image-gallery-ma img:hover {
  transform: scale(1.03);
}

/* END Image Gallery DUPLICATE???? */

/* START Timeline Section */

.timeline {
  position: relative;
  margin: 40px 0;
  padding-left: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
  padding-left: 20px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--secondary-color);
}

.timeline-year {
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 5px;
}

/* END Timeline Section */

/* WAVE DIVIDER GENERAL ??? */

.wave-divider {
  width: 100%;
  height: 50px;
  /* Adjust height */
  margin: 0;
  display: block;
}

/* CTA Section */
.cta-section {
  color: rgb(3, 3, 3);
  text-align: center;
  padding: 20px 20px;
  margin: 60px 0 0;
}

.cta-section h2 {
  font-size: 1.875rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* START Rooms Grid */

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.room-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s;
}

.room-image {
  height: 250px;
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.room-card:hover .room-image img {
  transform: scale(1.05);
}

.room-content {
  padding: 25px;
}

.room-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.room-capacity {
  color: var(--secondary-color);
  font-weight: bold;
  margin-bottom: 10px;
}

.room-description {
  color: #666;
  margin-bottom: 15px;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.feature-tag {
  background: var(--light-color);
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  color: #666;
}

/* END Rooms Grid */

/* Fortschrittsbalken */
.fortschritt {
  margin-bottom: 30px;
}

.fortschritt-titel {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-weight: 500;
}

.fortschritt-balken {
  height: 10px;
  background: #eee;
  border-radius: 5px;
  overflow: hidden;
}

.fortschritt-wert {
  height: 100%;
  background: var(--accent-color);
  border-radius: 5px;
}

/* Spenden Fortschritt */
.spenden-fortschritt {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 40px;
}

.fortschritt-diagramm {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.fortschritt-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.fortschritt-bar {
  flex: 1;
  height: 10px;
  background: #eee;
  border-radius: 5px;
  overflow: hidden;
}

.fortschritt-fill {
  height: 100%;
  border-radius: 5px;
}

/* Spenden Grid */
.spenden-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.spende-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s;
  text-align: center;
  padding: 30px 20px;
}

.spende-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.spende-title {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.spende-beschreibung {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Spendenformular */
.spenden-formular {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  max-width: 800px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: var(--primary-color);
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.radio-group {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.radio-option {
  display: flex;
  align-items: center;
}

.radio-option input {
  margin-right: 8px;
}

/* Zahlungsmethoden */
.zahlungsmethoden {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin: 30px 0;
}

.zahlungsmethode {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
}

.zahlungsmethode:hover {
  border-color: var(--primary-color);
}

.zahlungsmethode input {
  margin-right: 10px;
}

/* Fortschrittsbalken */
.fortschritt {
  margin-bottom: 30px;
}

.fortschritt-titel {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-weight: 500;
}

.fortschritt-balken {
  height: 10px;
  background: #eee;
  border-radius: 5px;
  overflow: hidden;
}

.fortschritt-wert {
  height: 100%;
  background: var(--success-color);
  border-radius: 5px;
}

/* Job Cards */
.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.job-card {
  background: var(--light-color);
  border-radius: 10px;
  padding: 30px;
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.job-card.featured {
  border-top: 4px solid var(--secondary-color);
}

.job-type {
  display: inline-block;
  background: var(--secondary-color);
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  margin-bottom: 15px;
}

.job-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.job-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  color: #666;
  font-size: 0.9rem;
}

.job-description {
  margin-bottom: 20px;
  color: #555;
  line-height: 1.7;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0;
}

.job-tag {
  background: rgba(44, 62, 80, 0.1);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  color: var(--primary-color);
}

/* Info Boxes */
.info-box {
  background: var(--light-color);
  padding: 25px;
  border-radius: 10px;
  margin: 20px 0;
  border-left: 5px solid var(--secondary-color);
}

.info-box h3 {
  margin-bottom: 15px;
}

.info-box ul {
  margin-left: 20px;
}

/* Volunteer Section */
.volunteer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.volunteer-card {
  text-align: center;
  padding: 30px;
  background: var(--light-color);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.volunteer-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

/* Application Form */
.application-form {
  background: var(--light-color);
  padding: 30px;
  border-radius: 10px;
  margin: 30px 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: var(--primary-color);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.file-upload {
  border: 2px dashed #ccc;
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.file-upload:hover {
  border-color: var(--secondary-color);
  background: rgba(231, 76, 60, 0.05);
}

.file-upload input {
  display: none;
}

/* Links Section */
.links {
  padding: 20px 0;
  background: #fff;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.link-card {
  background: var(--light-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
  height: 100%;
}

.link-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.link-card p {
  color: #555;
  margin-bottom: 20px;
}

.link-card a {
  display: inline-block;
  margin-top: 15px;
  color: var(--secondary-color);
  font-weight: 600;
}

.link-card a:hover {
  text-decoration: underline;
}

/* Parkregeln Section */
.parkregeln {
  background: #f5f5f5;
  padding: 40px;
  border-radius: 8px;
  margin: 40px 0;
}

.parkregeln h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  text-align: center;
}

.regel-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  gap: 15px;
}

.regel-icon {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-top: 2px;
}

/* Turnstile logo */

.cf-turnstile {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: column;
  margin: 20px;
}

.responsive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Mobile: Stack columns vertically */
@media (max-width: 768px) {
  .responsive-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* This makes the page scroll smoothly instead of jumping */
html {
  scroll-behavior: smooth;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 35px;
  padding: 12px 18px;
  background-color: #7f60ec;
  color: white !important;
  text-decoration: none;
  border-radius: 50px; /* Makes it pill-shaped */
  box-shadow: var(--shadow-lg);
  z-index: 1000;
}

.back-to-top:hover {
  background-color: #555; /* Lighter color when hovering */
}

/* RESPONSIVE DESIGN SECTION =========================================== */

/* --- TABLET STYLES (768px to 992px) --- */
@media screen and (max-width: 992px) {
  h1 {
    font-size: 2.25rem; /* Reduced from 2.5rem */
  }

  h2 {
    font-size: 1.7rem; /* Reduced from 1.875rem */
  }

  h3 {
    font-size: 1.35rem; /* Reduced from 1.5rem */
  }

  h4 {
    font-size: 1.15rem; /* Reduced from 1.25rem */
  }

  h6 {
    font-size: 2.5rem; /* Reduced from 3rem */
  }

  body {
    line-height: 1.55; /* Slightly tighter for smaller displays */
  }

  /* TEST */
  .footer-column {
    padding: 10px;
  } 


  .submenu {
    position: static;
    width: 100%;
    box-shadow: none;
    display: none;
  }

  .dropdown:hover .submenu {
    display: block;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title h2 {
    font-size: 1.7rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .content-section {
    padding: 40px 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .featured-news {
    grid-template-columns: 1fr;
  }

  .featured-news img {
    border-radius: 8px 8px 0 0;
  }

  .logoBWP {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
  }

  .logoBWP span {
    color: var(--secondary-color);
  }

  .tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 10px;
    margin-top: 10px;
  }

}

/* Responsive Design over 992 px DESKTOP ================================ */

.tours-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 10px;
  margin-left: auto; /* Center horizontally */
  margin-right: auto; /* Center horizontally */
  max-width: 100%; /* Ensures grid doesn't stretch full width */
  /* max-inline-size: min(100%, 1000px); /* Optional: Limits max width */
  justify-content: center; /* Centers the entire grid */
  padding: 10px; /* Optional: Prevent touching screen edges */
}

.tour-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s;
  /* margin: 10px; */
}

/* --- Museum Carousel CSS Styles --- */
.museum-carousel-wrapper {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.museum-carousel-container {
  overflow: hidden;
  width: 100%;
  background-color: #24313e;
  padding: 5px 50px 10px 5px;
  border-radius: 15px;
}

.museum-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  margin: 0;
  padding: 0.3em;
  list-style: none;
}

.museum-card {
  /* Default: 5 items visible (100% / 5 = 20%) */
  flex: 0 0 20%;
  max-width: 20%;
  box-sizing: border-box;
  padding: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.museum-logo {
  width: 100%;
  max-width: 120px;
  height: 80px;
  object-fit: contain;
  display: block;
  margin-bottom: 10px;
  transition: filter 0.3s, transform 0.3s;
}

.museum-card:hover .museum-logo {
  transform: scale(1.1);
}

.museum-link {
  font-size: 14px;
  color: #cccccc;
  text-decoration: none;
  font-weight: normal;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.museum-link:hover {
  border-color: #333;
}

.wichtige-hinweise-link {
  font-size: 1em;
  color: #ffffff;
  text-decoration: none;
  font-weight: normal;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

/* Navigation Arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
  padding: 10px;
  color: #cccccc;
  transition: opacity 0.3s;
}

.carousel-btn:hover {
  opacity: 0.8;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Responsive adjustments for the carousel */
@media (max-width: 1200px) {
  .museum-card {
    flex: 0 0 25%; /* Show 4 items */
    max-width: 25%;
  }
}

@media (max-width: 992px) {
  .museum-card {
    flex: 0 0 33.33%; /* Show 3 items */
    max-width: 33.33%;
  }
}

@media (max-width: 768px) {
  .museum-card {
    flex: 0 0 50%; /* Show 2 items */
    max-width: 50%;
  }

  .museum-carousel-container {
    padding: 5px 40px 10px 5px;
  }

  .museum-logo {
    max-width: 100px;
    height: 60px;
  }

  .museum-link {
    font-size: 12px;
  }
}

/* DO WE NEED THIS ??? TODO */
@media (max-width: 576px) {
  .museum-card {
    flex: 0 0 100%; /* Show 1 item */
    max-width: 100%;
  }

  .museum-carousel-container {
    padding: 5px 30px 10px 5px;
  }

  .carousel-btn {
    padding: 5px;
  }

  .carousel-btn svg {
    width: 20px;
    height: 20px;
  }
}

/* --- MOBILE STYLES (Under 768px) --- */

@media screen and (max-width: 767px) {

  
  h1 {
    font-size: 1.85rem; /* Scale down for mobile screens */
    letter-spacing: -0.01em;
    line-height: 1.1;
  }

  h2 {
    font-size: 1.4rem;
    padding-bottom: 0.15em;
  }

  h3 {
    font-size: 1.25rem;
  }

  h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3em;
  }

  h6 {
    font-size: 2rem;
  }

  body {
    line-height: 1.5;
    font-size: 15px; /* Adjusting base readability if needed */
  }

  /* Adjust lists for smaller screens to save horizontal space */
  ul,
  ol {
    padding-left: 1.2rem;
  }

  li {
    margin-left: 0.2em;
    padding-left: 0.2em;
  }

  /* Nested lists reduction */
  ul ul li,
  ol ul li,
  ul ol li,
  ol ol li {
    margin-left: 0.5em;
  }

  /* TEST */
  .footer-column {
    padding: 10px;
  } 


  .submenu {
    position: static;
    width: 100%;
    box-shadow: none;
    display: none;
  }

  .dropdown:hover .submenu {
    display: block;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title h2 {
    font-size: 1.4rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .content-section {
    padding: 40px 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .featured-news {
    grid-template-columns: 1fr;
  }

  .featured-news img {
    border-radius: 8px 8px 0 0;
  }

  .logoBWP {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
  }

  .logoBWP span {
    color: var(--secondary-color);
  }

  /* Tour Options */

  .tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 10px;
    margin-top: 10px;
  }
  
  .tour-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(40px, 1fr));
    gap: 10px;
    margin: 40px 0;
  }

  .tour-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s;
    margin-left: 25px;
    width: 350px;
  }

  .tour-img img {
    width: fit-content;
    object-fit: cover;
    transition: transform 0.5s;
  }

  .tour-content {
    padding: 10px;
  }

  .tour-title {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 15px;
  }

  .tour-duration {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #666;
  }

  .tour-description {
    margin-bottom: 10px;
    color: #555;
  }

  .tour-price {
    font-weight: bold;
    color: var(--secondary-color);
    font-size: 1rem;
  }

  .tour-price-notes {
    font-weight: bold;
    color: var(--secondary-color);
    font-size: 1rem;
  }

  /* Membership Options */

  .membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }

  .membership-card {
    background: #dcdef7;
    border-radius: 10px;
    /* overflow: hidden; */
    padding: 10px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
    /* margin: 10px; */
    /* width:440px; */
  }

  .about-content {
    display: grid;
    gap: 20px;
    align-items: center;
  }

  .newsletter {
    background: #fff;
  }

  .newsletter-content {
    display: flex;
    gap: 0px;
    align-items: flex-start;
  }

  .newsletter-image {
    flex: 0;
  }

  .newsletter-image img {
    display: none;
  }

  .visit-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 20px 20px;
    justify-content: center;
  }

  /* Mobile Tweak: Ensure cards take full width on very small screens */
  @media (max-width: 480px) {
    .visit-item {
      flex: 1 1 100%;
    }
  }

  .content-section {
    padding: 30px;
    background: #fff;
    margin-bottom: 10px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
  }

  .content-section h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.4rem;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
  }

  .content-section h3 {
    color: var(--primary-color);
    margin: 20px 0 20px;
    font-size: 1.1rem;
  }

  .content-section p {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.8;
  }

  /* START Sculpture Cards */

  .sculpture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 10px;
    margin-top: 20px;
  }

  .sculpture-item {
    flex: 1;
    text-align: center;
    padding: 10px;
    background: var(--light-color);
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
  }

  .sculpture-item:hover {
    transform: translateY(-10px);
  }

  .sculpture-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
  }

  .sculpture-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
  }


  /* END Sculpture Cards */
}

/* ── CHATBOT CONTAINER ── */
.chatbot-container {
    position: fixed;
    bottom: 100px;
    right: 35px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

/* ── TOGGLE BUTTON AT THE BOTTOM RIGHT ── */
.chat-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border: none;
    padding: 14px 22px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(102,126,234,0.5);
    transition: transform 0.2s, box-shadow 0.2s;
}

.chat-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(102,126,234,0.6);
}

.chat-icon {
    font-size: 1.3rem;
}

/* ── CHAT WINDOW ── */
.chat-window {
    display: none;
    flex-direction: column;
    width: 300px;
    height: 600px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

.chat-window.open {
    display: flex;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── CHAT HEADER ── */
.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bot-avatar {
    font-size: 2rem;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-header h3 {
    font-size: 1rem;
    font-weight: 700;
}

.status {
    font-size: 0.78rem;
    opacity: 0.85;
    color: #a0ffb0;
}

.chat-close-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    font-size: 1rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
}

.chat-close-btn:hover {
    background: rgba(255,255,255,0.35);
}

/* ── MESSAGES AREA ── */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #f9f9fb;
}

.chat-messages::-webkit-scrollbar { width: 5px; }
.chat-messages::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }

/* ── MESSAGE BUBBLES ── */
.message {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.message.user {
    flex-direction: row-reverse;
}

.message-avatar {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.message-bubble {
    max-width: 75%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 0.88rem;
    line-height: 1.55;
    word-break: break-word;
}

.message.bot .message-bubble {
    background: #fff;
    color: #333;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.07);
}

.message.user .message-bubble {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border-bottom-right-radius: 4px;
}

/* ── TYPING INDICATOR ── */
.typing-indicator {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.typing-dots {
    background: #fff;
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    padding: 12px 16px;
    display: flex;
    gap: 5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.07);
}

.typing-dots span {
    width: 8px;
    height: 8px;
    background: #bbb;
    border-radius: 50%;
    animation: bounce 1.2s infinite;
}

.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
    0%, 80%, 100% { transform: translateY(0); }
    40%           { transform: translateY(-8px); }
}

/* ── QUICK REPLIES ── */
.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 8px 14px;
    background: #f9f9fb;
    border-top: 1px solid #eee;
}

.quick-replies button {
    background: #fff;
    border: 1.5px solid #667eea;
    color: #667eea;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    font-weight: 600;
}

.quick-replies button:hover {
    background: #667eea;
    color: #fff;
}

/* ── INPUT AREA ── */
.chat-input-area {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    background: #fff;
    border-top: 1px solid #eee;
    gap: 8px;
}

.chat-input-area input {
    flex: 1;
    border: 1.5px solid #e0e0e0;
    border-radius: 22px;
    padding: 10px 16px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
    background: #f9f9fb;
}

.chat-input-area input:focus {
    border-color: #667eea;
    background: #fff;
}

.send-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}

.send-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(102,126,234,0.4);
}

/* ── RESPONSIVE ── TODO */
@media (max-width: 420px) {
    .chat-window {
        width: calc(100vw - 20px);
        height: 70vh;
        right: 10px;
        bottom: 80px;
    }
    .chatbot-container {
        right: 10px;
        bottom: 80px;
    }
}

