/* --- COLOR VARIABLES --- */
:root {
  --primary-accent: #C65D26;   /* Burnt Orange */
  --background: #1E1B18;       /* Deep Espresso Brown */
  --text: #F8F5F0;             /* Ivory */
  --secondary-accent: #D4AF37; /* Gold */
  --highlight: #B6A38A;        /* Warm Taupe */
  --bg-darker: #151311;        /* Deep Black-Brown */
}

/* --- GLOBAL STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Lato', Arial, sans-serif; 
}

html, body {
  height: auto;
  min-height: 100%;
  background-color: var(--background);
  color: var(--text);
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Link Reset */
a, a:visited, a:active {
  text-decoration: none;
  color: var(--text);
  transition: 0.3s;
}

/* --- EDUCATIONAL NOTICE BAR (FIXED) --- */
.edu-notice {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px; 
    background-color: var(--primary-accent); 
    color: #fff;
    /* Entferne justify-content: center, das stört bei der Laufschrift */
    display: block; 
    overflow: hidden; 
    font-size: 0.8rem;
    z-index: 1000;
    line-height: 30px; /* Zentriert den Text vertikal perfekt */
    white-space: nowrap; /* Verhindert den Zeilenumbruch, den man im Screenshot sieht */
}

.edu-notice-scroll {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-banner 90s linear infinite;
}


/* Die Animation */
@keyframes scroll-banner {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

/* --- HEADER & NAVIGATION --- */
.main-header {
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3rem;
  background-color: rgba(30, 27, 24, 0.98);
  position: sticky;
  top: 0px; /* Geändert von 0 auf 30px (Höhe des Banners) */
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.logo a, .logo a:visited {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--secondary-accent) !important;
  font-family: 'Libre Baskerville', serif;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.main-nav ul li a, .main-nav ul li a:visited {
    color: var(--text) !important;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 5px;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0; height: 1px; bottom: 0; left: 0;
    background-color: var(--secondary-accent);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover { color: var(--secondary-accent) !important; }
.main-nav ul li a:hover::after { width: 100%; }

.btn-reserve, .btn-reserve:visited {
    padding: 0.7rem 1.5rem;
    border: 1px solid var(--secondary-accent);
    color: var(--secondary-accent) !important;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.btn-reserve:hover {
    background-color: var(--secondary-accent);
    color: var(--background) !important;
}

/* --- BURGER BUTTON --- */
.mobile-nav-toggle { display: none; background: transparent; border: none; cursor: pointer; z-index: 2000; }
.hamburger, .hamburger::before, .hamburger::after {
    display: block; width: 25px; height: 2px; background: var(--secondary-accent); position: relative; transition: all 0.3s;
}
.hamburger::before { content: ''; position: absolute; top: -8px; left: 0; }
.hamburger::after { content: ''; position: absolute; top: 8px; left: 0; }
.nav-open .hamburger { background: transparent; }
.nav-open .hamburger::before { transform: rotate(45deg); top: 0; }
.nav-open .hamburger::after { transform: rotate(-45deg); top: 0; }

/* --- IFRAME --- */
.frame-container { flex-grow: 1; width: 100%; display: flex; flex-direction: column; }
iframe { width: 100%; border: none; display: block; min-height: calc(100vh - 80px); }

/* --- HEUTIGE HIGHLIGHTS (BOX-HOVER DESIGN) --- */
.highlights-container {
    padding: 6rem 2rem;
    background-color: var(--background);
    text-align: center;
}

.highlights-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.5rem;
    color: var(--secondary-accent);
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
}

.highlights-title::after {
    content: ''; display: block; width: 60px; height: 2px; background: var(--secondary-accent); margin: 15px auto 0;
}

.highlight-item {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease; /* Sanfter Übergang */
    cursor: pointer;
}

/* DER EFFEKT: Wenn man über die Box fährt */
.highlight-item:hover {
    border-bottom: 1px solid var(--secondary-accent); /* Trennlinie wird helles Gold */
    transform: translateY(-5px); /* Leichter Schwebe-Effekt */
}

.highlight-name {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 0.8rem;
    transition: color 0.4s ease;
}

.highlight-description {
    font-family: 'Lato', sans-serif;
    font-style: italic;
    color: var(--highlight);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    transition: color 0.4s ease;
}

.highlight-price {
    font-family: 'Lato', sans-serif;
    color: var(--secondary-accent);
    font-weight: 700;
    font-size: 1.2rem;
    transition: transform 0.4s ease;
}

/* Wenn die Box gehovered wird, färbe den Text Gold */
.highlight-item:hover .highlight-name,
.highlight-item:hover .highlight-description {
    color: var(--secondary-accent);
}

/* --- FOOTER --- */
.main-footer {
  background-color: var(--bg-darker);
  color: var(--highlight);
  padding: 4rem 3rem 2rem 3rem;
  border-top: 1px solid rgba(182, 163, 138, 0.1);
  margin-top: auto; 
}

.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; max-width: 1400px; margin: 0 auto; }
.footer-logo { display: block; font-family: 'Libre Baskerville', serif; font-size: 1.5rem; color: var(--secondary-accent); margin-bottom: 0.5rem; }
.footer-link, .footer-link:visited { color: var(--highlight) !important; line-height: 1.8; }
.footer-link:hover { color: var(--primary-accent) !important; }

.copyright { text-align: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1.5rem; font-size: 0.8rem; opacity: 0.5; margin-top: 2rem; }

/* --- RESPONSIVE ANPASSUNGEN --- */
@media (max-width: 900px) {
    .main-header { padding: 0 1.5rem; }
    .mobile-nav-toggle { display: block; }
    .main-nav {
        position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background-color: var(--bg-darker);
        z-index: 1500; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: right 0.5s ease;
    }
    .nav-active .main-nav { right: 0; }
    .main-nav ul { flex-direction: column; align-items: center; gap: 2.5rem; }
    .main-nav ul li a, .main-nav ul li a:visited { font-size: 1.5rem; font-family: 'Libre Baskerville', serif; color: var(--text) !important; }
    .header-actions { display: none; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
    .highlights-title { font-size: 1.8rem; }
}
