@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    /* Color Palette */
    --primary-color: #1B3022;      /* Deep Aurora Green */
    --secondary-color: #D4AF37;    /* Classic Gold */
    --bg-color: #FAF9F6;           /* Off-White / Creme */
    --accent-color: #2C4A34;       /* Forest Green */
    --text-color: #2D2D2D;
    --text-light: #666666;
    --white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing & Transitions */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .serif {
    font-family: var(--font-heading);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Reusable Layout Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
}

/* Premium Button Style */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--secondary-color);
    background: transparent;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover {
    color: var(--white);
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary::before {
    background: var(--secondary-color);
}

/* Navigation Styles - Redesigned */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: var(--spacing-md) 0;
}

header.scrolled {
    background: rgba(27, 48, 34, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--spacing-sm) 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem; /* Abstand zwischen den Menüpunkten */
    flex-wrap: wrap; /* verhindert Überlappung */
}

.navbar a {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap; /* verhindert Umbruch innerhalb eines Wortes */
    position: relative;
    padding: 5px 0;
}

/* Für Laptop (z. B. 1024px – 1440px) */
@media (max-width: 1200px) {
    .navbar {
        gap: 1.2rem; /* etwas enger */
    }
    .navbar a {
        font-size: 13px;
    }
}

/* Für kleinere Laptops */
@media (max-width: 1024px) {
    .navbar {
        gap: 1rem;
    }
    .navbar a {
        font-size: 12px;
    }
}

/* Removed nav-cta and btn-nav styles */

/* --- Modern Creative Hero (Aurora Luminescence) --- */
.modern-hero {
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
    overflow: hidden;
    background-color: var(--primary-color);
}

/* Dynamic Aurora Background */
.modern-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(44, 74, 52, 0.8) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(27, 48, 34, 0.9) 0%, transparent 60%);
    animation: aurora-flow 20s infinite alternate ease-in-out;
    z-index: 1;
}

@keyframes aurora-flow {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(5deg) scale(1.1); }
}

.modern-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
    z-index: 2;
}

.hero-visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    opacity: 0.6;
    filter: brightness(0.8);
    transition: transform 8s ease-out;
}

.modern-hero:hover .hero-visual-bg {
    transform: scale(1.05);
}

.modern-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    padding: var(--spacing-md);
    margin-top: 100px; /* Schiebt den Inhalt unter den Navbar-Header */
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    display: block;
    animation: fadeInDown 1s ease;
}

.hero-title-main {
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 0.95;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -2px;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); /* Macht den Text sauber erkennbar */
}

.hero-title-main span {
    display: block;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.35em;
    letter-spacing: 12px;
    margin-top: 10px;
}

.hero-description-creative {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.9;
    line-height: 1.8;
}

/* Hero Particles Decoration */
.hero-deco {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.particle {
    position: absolute;
    background: var(--white);
    border-radius: 50%;
    opacity: 0.3;
}

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

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-info h3 {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--spacing-md);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .section {
        padding: var(--spacing-lg) 0;
    }
}

@media (max-width: 768px) {
    .navbar {
        display: none; /* In a real app, implement hamburger menu here */
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem !important;
    }
    
    /* Responsive Grids */
    div[style*="grid-template-columns: 1fr 1fr"],
    div[style*="grid-template-columns: 1fr 1.2fr"],
    .room-card,
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: var(--spacing-md) !important;
        direction: ltr !important;
    }
    
    .room-card div:nth-child(even) .room-info {
        direction: ltr !important;
    }

    img[style*="box-shadow: 20px 20px 0 var(--secondary-color)"] {
        box-shadow: 10px 10px 0 var(--secondary-color) !important;
    }
    
    .dining-layout {
        display: block !important;
    }
    
    .menu-preview {
        margin-top: var(--spacing-md);
        padding: var(--spacing-md);
    }
}

/* --- Interactive 3D Highlight Cards --- */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    perspective: 1200px;
}

.card-tilt-wrapper {
    position: relative;
    height: 400px;
    cursor: pointer;
}

.card-tilt {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    transform-style: preserve-3d;
    transition: transform 0.1s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--spacing-md);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.card-tilt::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(27, 48, 34, 0.9) 0%, rgba(27, 48, 34, 0.2) 60%, transparent 100%);
    z-index: 1;
}

.card-tilt-content {
    position: relative;
    z-index: 2;
    transform: translateZ(50px); /* 3D pop effect */
    color: var(--white);
}

.card-tilt-content h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.card-tilt:hover {
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 40px rgba(212, 175, 55, 0.2);
}

/* Info Popup Styling */
.card-popup-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.card-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.card-popup {
    background: var(--bg-color);
    padding: var(--spacing-lg);
    border-radius: 2px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    border-top: 4px solid var(--secondary-color);
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

.card-popup-overlay.active .card-popup {
    transform: translateY(0);
}

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

.card-popup p {
    margin-bottom: 2rem;
    color: var(--text-color);
}

.card-popup .btn {
    padding: 0.8rem 2rem;
}

/* --- Kulinarische Kunst Creative Redesign --- */
.creative-dining-section {
    position: relative;
    overflow: hidden;
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #ffffff 0%, #faf9f6 100%);
}

.creative-dining-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

@media (max-width: 992px) {
    .creative-dining-layout {
        grid-template-columns: 1fr;
    }
}

.dining-content-wrapper {
    position: relative;
    z-index: 2;
}

.creative-dining-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
    color: var(--primary-color) !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.1;
    position: relative;
}

.title-underline {
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    margin-bottom: var(--spacing-md);
    position: relative;
}
.title-underline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 70px;
    width: 15px;
    height: 3px;
    background: var(--secondary-color);
    opacity: 0.5;
}

.dining-intro {
    font-size: 1.15rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.dining-text {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.dining-images-creative {
    position: relative;
    margin-top: var(--spacing-lg);
    height: 400px;
}

.img-frame {
    position: absolute;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.img-main {
    top: 0;
    left: 0;
    width: 70%;
    height: 300px;
    z-index: 2;
}

.img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.img-offset {
    bottom: 20px;
    right: 0;
    width: 50%;
    height: 250px;
    z-index: 3;
    border: 8px solid #ffffff;
}

.img-offset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gold-accent-square {
    position: absolute;
    top: -20px;
    right: 20%;
    width: 150px;
    height: 150px;
    border: 2px solid var(--secondary-color);
    z-index: 1;
    transform: rotate(15deg);
    opacity: 0.5;
}

/* Menu Preview Redesign */
.creative-menu-preview {
    position: relative;
    padding: var(--spacing-md);
    perspective: 1000px;
}

.menu-board-inner {
    background: #fff;
    padding: 3rem 2rem;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    background-image: linear-gradient(to bottom, #ffffff, #faf9f6);
    z-index: 2;
    transition: transform 0.4s ease;
}

.menu-board-inner::before {
    content: '';
    position: absolute;
    top: 10px; left: 10px; right: 10px; bottom: 10px;
    border: 1px solid var(--secondary-color);
    opacity: 0.3;
    pointer-events: none;
    border-radius: 2px;
}

.menu-board-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

.menu-board-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.menu-board-divider {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 1.2rem;
    position: relative;
}

.menu-board-divider::before,
.menu-board-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: var(--secondary-color);
    opacity: 0.5;
}

.menu-board-divider::before { left: 10%; }
.menu-board-divider::after { right: 10%; }

.creative-category {
    margin-bottom: 2rem;
    text-align: center;
}

.creative-category h3 {
    color: var(--secondary-color);
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: inline-block;
    border-bottom: none;
    padding-bottom: 0;
}

.creative-category .menu-item {
    margin-bottom: 1.2rem;
    transition: transform 0.3s ease;
}

.creative-category .menu-item:hover {
    transform: scale(1.02);
}

.creative-category .menu-item h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.creative-category .menu-item p {
    color: var(--text-light);
    font-style: italic;
    font-size: 0.9rem;
}

/* Background floating abstract elements */
.creative-dining-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    top: -100px;
    right: -200px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.creative-dining-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(27, 48, 34, 0.03) 0%, transparent 70%);
    bottom: -50px;
    left: -100px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

/* --- Elegant CTA Section Redesign --- */
.elegant-cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(27, 48, 34, 0.04) 0%, transparent 100%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 4rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.elegant-cta-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 6px;
    height: 100%;
    background: var(--secondary-color);
}

.cta-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: block;
}

.cta-title {
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 800;
}

.cta-desc {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

.elegant-cta-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.elegant-cta-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.elegant-cta-container:hover .elegant-cta-image {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .elegant-cta-container {
        grid-template-columns: 1fr;
        padding: 2.5rem;
        gap: 2.5rem;
    }
    .cta-title {
        font-size: 2.5rem;
    }
    .elegant-cta-image {
        height: 350px;
    }
}
