/* ===== SYLT.AT - MAIN STYLESHEET ===== */

:root {
    --ocean-deep: #1a3a4a;
    --ocean-mid: #2d5a6b;
    --ocean-light: #4a7a8a;
    --sand: #f5f0e8;
    --sand-dark: #e8e0d4;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #5a6c7d;
    --seafoam: #7fcdcd;
    --sunset-coral: #d4846a;
    --sunset-gold: #e8b87d;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--ocean-deep);
    padding: 0 2rem;
}

.main-nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--white);
    padding: 1rem 0;
}

.logo svg {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.logo-tagline {
    font-size: 0.7rem;
    opacity: 0.7;
    letter-spacing: 0.1em;
}

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

.nav-links > li {
    position: static;
}

.nav-links > li > a {
    display: block;
    padding: 1.25rem 0.9rem;
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-links > li:hover > a {
    background: rgba(255,255,255,0.1);
}

/* Mega Dropdown */
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    padding-top: 0;
}

/* Unsichtbare Brücke zwischen Nav-Link und Dropdown */
.has-mega::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}

.has-mega:hover .mega-dropdown,
.mega-dropdown:hover {
    opacity: 1;
    visibility: visible;
}

.mega-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.mega-column h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ocean-mid);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--seafoam);
}

.mega-column ul {
    list-style: none;
}

.mega-column li a {
    display: block;
    padding: 0.4rem 0;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.mega-column li a:hover {
    color: var(--ocean-deep);
    padding-left: 0.5rem;
}

.mega-column li a::after {
    display: none;
}

.mega-highlight {
    background: var(--sand);
    padding: 1.5rem;
    border-radius: 8px;
}

.mega-highlight h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--ocean-deep);
}

.mega-highlight p {
    font-size: 0.85rem;
    color: var(--text-dark);
    line-height: 1.5;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

/* Primary Button - für HELLE Hintergründe (Standard) */
.btn-primary {
    background: var(--ocean-deep);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(26, 58, 74, 0.25);
}

.btn-primary:hover {
    background: var(--ocean-mid);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 58, 74, 0.35);
}

/* Secondary Button - für HELLE Hintergründe */
.btn-secondary {
    background: var(--sand);
    color: var(--ocean-deep);
    border: 1.5px solid var(--sand-dark);
}

.btn-secondary:hover {
    background: var(--sand-dark);
    transform: translateY(-2px);
}

/* Outline Button - für HELLE Hintergründe */
.btn-outline {
    background: transparent;
    color: var(--ocean-deep);
    border: 1.5px solid var(--ocean-deep);
}

.btn-outline:hover {
    background: var(--ocean-deep);
    color: var(--white);
}

/* Light Button - für DUNKLE Hintergründe (Hero, Footer) */
.btn-light {
    background: var(--white);
    color: var(--ocean-deep);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Ghost Button - für DUNKLE Hintergründe (Hero, Footer) */
.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--ocean-deep);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--ocean-deep);
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    overflow: hidden;
}

.hero-wave,
.wave {
    position: absolute;
    bottom: 0;
    left: -10%;
    width: 120%;
    height: 100px;
    background: var(--sand);
    border-radius: 100% 100% 0 0;
}

.hero-wave:nth-child(2),
.wave:nth-child(2) {
    bottom: -20px;
    height: 80px;
    background: rgba(245, 240, 232, 0.5);
}

.wave:nth-child(3) {
    bottom: -40px;
    height: 60px;
    background: rgba(245, 240, 232, 0.3);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title em {
    font-style: italic;
    color: var(--seafoam);
}

.hero-description {
    font-size: 1.15rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    opacity: 0.6;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== INTRO SECTION ===== */
.intro {
    padding: 5rem 2rem;
    background: var(--sand);
}

.intro-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.intro-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.intro-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--ocean-mid);
}

.intro-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.intro-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--ocean-deep);
}

.intro-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    padding: 5rem 2rem;
}

.content-section:nth-child(odd) {
    background: var(--white);
}

.content-section:nth-child(even) {
    background: var(--sand);
}

.content-container {
    max-width: 850px;
    margin: 0 auto;
}

.content-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--ocean-deep);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

.content-container h2:first-of-type {
    margin-top: 0;
}

.content-container h3 {
    font-size: 1.3rem;
    color: var(--ocean-deep);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.content-container a {
    color: var(--ocean-deep);
    text-decoration: underline;
}

.content-container a:hover {
    color: var(--ocean-mid);
}

/* Lists */
.content-container ul,
.content-container ol {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.content-container ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.content-container ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background: var(--seafoam);
    border-radius: 50%;
}

.content-container ol {
    counter-reset: item;
}

.content-container ol li {
    position: relative;
    counter-increment: item;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.content-container ol li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    color: var(--ocean-mid);
    font-weight: 600;
}

.content-container strong {
    color: var(--ocean-deep);
}

/* Section Title */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--ocean-deep);
    text-align: center;
    margin-bottom: 1rem;
}

.section-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background: var(--seafoam);
    margin: 1rem auto 2rem;
}

.section-title.centered {
    text-align: center;
}

.lead-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ocean-mid);
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--ocean-deep);
    margin-bottom: 1rem;
}

.section-description {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.content-main h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--ocean-deep);
    margin-bottom: 1.5rem;
}

.content-main h3 {
    font-size: 1.3rem;
    color: var(--ocean-deep);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-main p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.content-main ul,
.content-main ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-main li {
    margin-bottom: 0.5rem;
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
    background: var(--sand);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
}

.highlight-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    text-align: center;
    color: var(--ocean-deep);
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.stat-box {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--white);
    border-radius: 12px;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--ocean-deep);
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* ===== INFO BOX (Sidebar) ===== */
.info-box {
    background: var(--sand);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.info-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--ocean-deep);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--seafoam);
}

.info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-box li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.95rem;
}

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

/* ===== INFO CARDS ===== */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.info-card {
    background: var(--sand);
    padding: 1.75rem;
    border-radius: 12px;
    border-top: 3px solid var(--seafoam);
}

.info-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--ocean-deep);
    margin-bottom: 1rem;
}

.info-card h4 a {
    color: var(--ocean-deep);
    text-decoration: none;
}

.info-card h4 a:hover {
    color: var(--ocean-mid);
}

.info-card p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.info-card p:last-child {
    margin-bottom: 0;
}

/* ===== TIP BOX ===== */
.tip-box {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    padding: 1.5rem 1.75rem;
    border-radius: 0 12px 12px 0;
    margin: 2rem 0;
}

.tip-box.warning {
    background: #fff3e0;
    border-left-color: #ff9800;
}

.tip-box.info {
    background: #e3f2fd;
    border-left-color: #2196f3;
}

.tip-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--ocean-deep);
}

.tip-box p {
    margin-bottom: 0;
    line-height: 1.7;
}

.tip-box a {
    color: var(--ocean-deep);
    text-decoration: underline;
}

/* ===== TABLES ===== */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

th, td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--sand);
}

th {
    background: var(--ocean-deep);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

td {
    font-size: 0.95rem;
    line-height: 1.5;
}

td a {
    color: var(--ocean-deep);
    font-weight: 500;
}

tbody tr:hover {
    background: var(--sand);
}

tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table th {
    text-align: center;
}

.comparison-table td {
    text-align: center;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
}

/* ===== ORTE GRID ===== */
.orte-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.ort-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 280px;
    text-decoration: none;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.ort-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.4s ease;
}

.ort-card:hover .ort-bg {
    transform: scale(1.05);
}

.ort-content {
    position: relative;
    z-index: 10;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.ort-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.8;
}

.ort-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 0.25rem 0 0.5rem;
}

.ort-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* ===== PAGE HERO ===== */
.page-hero {
    min-height: 280px;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 2rem;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: var(--ocean-deep);
}

.page-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    padding: 2rem;
}

.page-hero-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.page-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 500;
    margin-bottom: 1rem;
}

.page-hero-description {
    font-size: 1.15rem;
    opacity: 0.9;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--ocean-mid);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 0.5rem;
    color: var(--text-light);
}

/* ===== FOOTER ===== */
footer {
    background: var(--ocean-deep);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
    color: var(--seafoam);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--white);
}

/* ===== LEGAL PAGES ===== */
.legal-page {
    max-width: 800px;
}

.legal-page h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--sand-dark);
}

.legal-page h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-page h3 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-page p {
    margin-bottom: 1rem;
}

.legal-page ul {
    margin: 1rem 0 1.5rem;
}

.legal-page a {
    color: var(--ocean-deep);
    text-decoration: underline;
}

.legal-page a:hover {
    color: var(--ocean-mid);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .orte-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .mega-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        padding: 0 1rem;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--ocean-deep);
        flex-direction: column;
        padding: 1rem;
        overflow-y: auto;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links > li > a {
        padding: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* Mobile Mega Menu */
    .mega-dropdown {
        position: static;
        background: rgba(255,255,255,0.1);
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        padding: 0;
    }
    
    .has-mega.open .mega-dropdown {
        opacity: 1;
        visibility: visible;
        max-height: 2000px;
        padding: 1rem 0;
    }
    
    .mega-content {
        display: block;
        padding: 0 1rem;
    }
    
    .mega-column {
        margin-bottom: 1rem;
    }
    
    .mega-column h3 {
        color: var(--seafoam);
        border-bottom-color: rgba(255,255,255,0.2);
        font-size: 0.8rem;
    }
    
    .mega-column li a {
        color: var(--white);
        padding: 0.5rem 0;
        opacity: 0.9;
    }
    
    .mega-column li a:hover {
        opacity: 1;
        padding-left: 0.5rem;
    }
    
    .mega-highlight {
        display: none;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .orte-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .page-hero {
        min-height: 200px;
    }
    
    .highlight-box {
        padding: 1.5rem;
    }
    }
    
    .content-sidebar {
        position: static;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-links {
        justify-content: center;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== INFO LIST ===== */
.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.95rem;
}

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

.info-list strong {
    color: var(--ocean-deep);
}

/* ===== CONTENT SIDEBAR ===== */
.content-sidebar {
    position: sticky;
    top: 100px;
}

/* ===== RELATED CONTENT ===== */
.related-content {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--sand-dark);
}

.related-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--ocean-deep);
    margin-bottom: 1.5rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.related-item {
    display: block;
    padding: 1rem;
    background: var(--sand);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.related-item:hover {
    background: var(--sand-dark);
    transform: translateY(-2px);
}

/* ===== QUICK LINKS ===== */
.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.quick-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--sand);
    border-radius: 20px;
    text-decoration: none;
    color: var(--ocean-deep);
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.quick-link:hover {
    background: var(--ocean-deep);
    color: var(--white);
}

/* ===== ADDITIONAL LINKS ===== */
.additional-links {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--sand-dark);
}

.additional-links h4 {
    font-size: 1rem;
    color: var(--ocean-deep);
    margin-bottom: 1rem;
}

.additional-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.additional-links a {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: var(--sand);
    border-radius: 4px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.85rem;
}

.additional-links a:hover {
    background: var(--ocean-deep);
    color: var(--white);
}

/* ===== FAQ / ACCORDION ===== */
.faq-item,
.accordion-item {
    border: 1px solid var(--sand-dark);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-question,
.accordion-header {
    padding: 1.25rem 1.5rem;
    background: var(--sand);
    cursor: pointer;
    font-weight: 600;
    color: var(--ocean-deep);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
}

.faq-question:hover,
.accordion-header:hover {
    background: var(--sand-dark);
}

.faq-question::after,
.accordion-header::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--ocean-mid);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after,
.accordion-item.active .accordion-header::after {
    transform: rotate(45deg);
}

.faq-answer,
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer,
.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 1.25rem;
}

/* ===== SEHENSWERT BOX ===== */
.sehenswert-box {
    background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-mid) 100%);
    color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.sehenswert-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--seafoam);
}

.sehenswert-box p {
    opacity: 0.9;
    line-height: 1.7;
}

.sehenswert-box ul {
    color: var(--white);
    padding-left: 1.2rem;
}

.sehenswert-box li {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.sehenswert-box a {
    color: var(--sunset-light);
    text-decoration: underline;
}

.sehenswert-box a:hover {
    color: var(--white);
}

/* ===== PRICE TABLE ===== */
.price-table {
    width: 100%;
    margin: 1.5rem 0;
}

.price-table th {
    text-align: left;
    background: var(--ocean-deep);
}

.price-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--ocean-deep);
}

/* ===== MAP ===== */
.map-container {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.map-caption {
    padding: 1rem;
    background: var(--sand);
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 768px) {
    .content-sidebar {
        position: static;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-links {
        justify-content: center;
    }
}

/* ===== HIGHLIGHTS GRID ===== */
.highlights-grid {
    max-width: 1000px;
    margin: 2rem auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.highlights-grid .info-card,
.highlights-grid > div {
    margin-bottom: 0;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 4rem 2rem;
}

.faq-section .content-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--ocean-deep);
    text-align: center;
    margin-bottom: 2rem;
}

.faq-section .faq-item {
    background: var(--white);
}

/* ===== HIGHLIGHTS SECTION ===== */
.highlights {
    background: var(--ocean-deep);
    color: var(--white);
    padding: 6rem 2rem;
}

.highlights .section-header {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.highlights .section-label {
    color: var(--seafoam);
}

.highlights .section-title {
    color: var(--white);
}

.highlights .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.highlight-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: background 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.highlight-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--seafoam);
    line-height: 1;
    min-width: 50px;
}

.highlight-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.highlight-content h3 a {
    color: var(--white);
    text-decoration: none;
}

.highlight-content h3 a:hover {
    color: var(--seafoam);
}

.highlight-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ===== FAQ LIST ===== */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

/* FAQ Section spezifisch - weiße Items */
.faq-section .faq-question {
    background: var(--white);
    padding: 1.25rem 1.5rem;
}

.faq-section .faq-answer {
    padding: 0 1.5rem;
}

.faq-section .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.25rem;
}

/* ===== FEHLENDE KLASSEN ===== */

/* Accordion (verwendet accordion-item, accordion-header, accordion-content die existieren) */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Beach Highlights */
.beach-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

/* Content Wide */
.content-wide {
    max-width: 900px;
    margin: 0 auto;
}

/* Header Light (für helle Hintergründe) */
body.header-light .main-nav {
    background: rgba(255, 255, 255, 0.95);
}

body.header-light .logo,
body.header-light .nav-links a {
    color: var(--ocean-deep);
}

/* Highlight (verwendet highlight-box die existiert) */
.highlight {
    background: var(--seafoam-light);
    padding: 1rem;
    border-radius: 8px;
}

/* Orte Section */
.orte {
    padding: 6rem 2rem;
}

/* Topic Section/Grid/Card */
.topic-section {
    padding: 4rem 2rem;
    background: var(--sand);
}

.topic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.topic-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.topic-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--ocean-deep);
    margin-bottom: 0.5rem;
}

.topic-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Links in dunklen Bereichen */
.highlights a {
    color: var(--white);
    text-decoration: none;
}

.highlights a:hover {
    color: var(--seafoam);
}

/* Buttons in highlights behalten ihre eigenen Farben */
.highlights .btn {
    color: var(--ocean-deep);
}

.highlights .btn:hover {
    color: var(--ocean-deep);
}

.highlight-content a {
    color: var(--white);
}

.highlight-content a:hover {
    color: var(--seafoam);
}

/* ===== MOBILE VERBESSERUNGEN ===== */

@media (max-width: 480px) {
    /* Hero Buttons - volle Breite, mehr Abstand */
    .hero-cta {
        width: 100%;
        padding: 0 1rem;
        gap: 1rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: none;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Stats Grid - 2x2 mit kleineren Zahlen */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .stat-box {
        padding: 1rem 0.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    /* Highlight Box */
    .highlight-box {
        padding: 1.25rem;
        margin: 2rem 0;
        border-radius: 12px;
    }
    
    .highlight-box h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    /* Listen */
    .content-main ul,
    .content-wide ul {
        padding-left: 1rem;
    }
    
    .content-main li,
    .content-wide li {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }
    
    /* Info Cards */
    .info-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-card {
        padding: 1.25rem;
    }
    
    /* Sections allgemein */
    section {
        padding: 3rem 1rem;
    }
    
    .content-section {
        padding: 3rem 1rem;
    }
    
    /* Überschriften */
    .section-title {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    h3 {
        font-size: 1.15rem;
    }
    
    /* Lead Text */
    .lead-text {
        font-size: 1rem;
    }
}

/* Tablet Anpassungen */
@media (max-width: 768px) and (min-width: 481px) {
    .hero-cta .btn {
        padding: 0.9rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}
