/* ==========================================================================
   RAMBUTAN REGENSBURG - PREMIUM EDITORIAL STYLES
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    /* Warme Premium-Farbpalette */
    --bg-dark: #0d0c0b;         /* Sehr dunkles Espresso/Anthrazit */
    --bg-alt: #131210;          /* Nuance heller für den Wechsel */
    --bg-panel: #1a1816;        /* Für die überlappenden Textboxen */
    
    --text-main: #e0dcd5;       /* Weiches, warmes Weiß */
    --text-muted: #9e9a95;      /* Edles Grau-Beige für Fließtexte */
    
    --accent-gold: #c5a880;     /* Elegantes Gold/Sand für Linien & Untertitel */
    --accent-red: #8b1926;      /* Klassisches asiatisches Dunkelrot für Buttons */
    --accent-red-hover: #a61e2e;
    
    /* Typografie */
    --font-text: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Layout */
    --max-width: 1200px;
    --transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ================= BASE RESET ================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-gold);
}

/* ================= TYPOGRAFIE ================= */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 0.3em;
    letter-spacing: 0.02em;
}

.subheadline {
    font-family: var(--font-text);
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    display: block;
}

p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.quote {
    font-family: var(--font-heading);
    font-style: italic;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.5;
    border-left: 2px solid var(--accent-gold);
    padding-left: 25px;
    margin: 30px 0;
}

/* ================= BUTTONS ================= */
.btn {
    display: inline-block;
    font-family: var(--font-text);
    padding: 14px 35px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 2px; /* Eckig wirkt oft edler als komplett rund */
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--accent-red);
    color: #fff;
    box-shadow: 0 10px 20px rgba(139, 25, 38, 0.2);
}

.btn-primary:hover {
    background-color: var(--accent-red-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(139, 25, 38, 0.4);
    color: #fff;
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}

.btn-outline:hover {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

/* ================= HEADER & NAV ================= */
.main-header {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 25px 5vw;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(13, 12, 11, 0.9) 0%, rgba(13, 12, 11, 0) 100%);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.desktop-nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.desktop-nav a {
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    position: relative;
    padding-bottom: 5px;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 1px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}

.header-logo {
    height: 110px;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.5));
    transition: transform var(--transition);
}

.header-logo:hover {
    transform: scale(1.05);
}

.hamburger, .mobile-menu {
    display: none;
}

/* ================= HERO SECTION ================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-video-wrapper {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden;
    z-index: -1;
}

.hero-video {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(13, 12, 11, 0.3) 0%, rgba(13, 12, 11, 1) 100%);
}

.hero-content {
    z-index: 2;
    padding: 0 20px;
    margin-top: 60px;
    animation: fadeUp 1.5s ease-out;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-logo-large {
    max-width: 450px;
    margin: 0 auto 30px;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.8));
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 40px;
}

/* ================= EDITORIAL SPLIT SECTIONS (Der Premium-Effekt) ================= */
.page-content {
    background-color: var(--bg-dark);
}

.split-section {
    padding: 120px 5vw;
    background-color: var(--bg-dark);
    position: relative;
}

.split-section.reverse {
    background-color: var(--bg-alt);
}

.split-inner {
    display: flex;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    /* OVERLAP MAGIC: Keine Lücke (Gap) mehr, sie schieben sich ineinander */
    gap: 0; 
}

.split-section.reverse .split-inner {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1.2;
    z-index: 1;
}

.split-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.8);
    transition: transform var(--transition);
}

.split-section:hover .split-image img {
    transform: scale(1.02);
}

/* Die Textbox überlappt das Bild */
.split-text {
    flex: 1;
    background-color: var(--bg-panel);
    padding: 80px 60px;
    z-index: 2;
    margin-left: -100px; /* Schiebt die Box nach links über das Bild */
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    border-top: 2px solid var(--accent-gold);
}

/* Bei reverse schiebt sich die Box nach rechts über das Bild */
.split-section.reverse .split-text {
    margin-left: 0;
    margin-right: -100px;
}

/* ================= PROMO GALLERY ================= */
.promo-gallery {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 80px 5vw 120px;
    background-color: var(--bg-dark);
}

.promo-gallery img {
    border-radius: 2px;
    max-width: 550px;
    width: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    transition: transform var(--transition);
}

.promo-gallery img:hover {
    transform: translateY(-10px);
}

/* ================= FORMULARE (Kontakt & Reservierung) ================= */
form input, form select, form textarea {
    width: 100%;
    padding: 16px 20px;
    background-color: #1a1816;
    border: 1px solid #333;
    color: #fff;
    font-family: var(--font-text);
    font-size: 0.95rem;
    border-radius: 2px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

form input:focus, form select:focus, form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background-color: #221f1d;
}

form select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23c5a880" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position-x: 95%;
    background-position-y: 50%;
}

/* ================= FOOTER ================= */
.main-footer {
    background-color: #080706; /* Das dunkelste Schwarz für den Abschluss */
    padding: 100px 5vw 30px;
    border-top: 1px solid rgba(197, 168, 128, 0.1); /* Hauchdünne Goldlinie */
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-logo {
    height: 80px;
    margin: 0 auto 60px auto;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 80px;
    text-align: center;
}

.footer-col h4 {
    color: var(--accent-gold);
    font-family: var(--font-text);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    margin-bottom: 25px;
}

.footer-col p, .footer-col a, .footer-col address {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 2;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    color: #555;
}

.footer-links a {
    color: #888;
    margin: 0 15px;
    letter-spacing: 0.05em;
}

.footer-links a:hover { color: var(--accent-gold); }
.heart { color: var(--accent-red); font-size: 1.1em; }

/* ================= RESPONSIVE DESIGN (Tablets & Smartphones) ================= */
@media (max-width: 1024px) {
    .split-text {
        padding: 50px 40px;
        margin-left: -50px; /* Weniger Overlap bei mittleren Screens */
    }
    .split-section.reverse .split-text {
        margin-right: -50px;
    }
}

@media (max-width: 850px) {
    /* Header & Mobile Nav */
    .desktop-nav { display: none; }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 6px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 10px;
        z-index: 1001;
    }
    
    .hamburger span {
        display: block;
        width: 35px;
        height: 2px;
        background: var(--accent-gold); /* Goldener Burger */
        transition: 0.3s;
    }

    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

    .mobile-menu {
        display: none;
        position: absolute;
        top: 100px; left: 0; width: 100%;
        background-color: var(--bg-panel);
        padding: 30px 5vw;
        border-bottom: 2px solid var(--accent-gold);
        box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    }

    .mobile-menu a {
        display: block;
        font-size: 1.2rem;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }
    
    .header-logo { height: 80px; }

    /* Die Overlaps werden auf Handys deaktiviert, stattdessen stacken sie */
    .split-inner, .split-section.reverse .split-inner {
        flex-direction: column;
    }

    .split-image img {
        height: 400px;
    }

    .split-text, .split-section.reverse .split-text {
        margin: -40px 20px 0 20px; /* Zieht die Box nur leicht über das Bild nach oben */
        padding: 40px 30px;
        text-align: center;
        border-top: 2px solid var(--accent-gold);
        border-left: none;
        border-right: none;
    }

    .quote {
        border-left: none;
        border-top: 1px solid var(--accent-gold);
        border-bottom: 1px solid var(--accent-gold);
        padding: 20px 0;
        margin: 30px auto;
    }

    .promo-gallery {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    h2 { font-size: 2.2rem; }
    .hero-logo-large { max-width: 250px; }
    .hero-subtitle { font-size: 1.1rem; }
    .btn { width: 100%; max-width: 300px; }
    .split-section { padding: 60px 0; }
    .split-image img { border-radius: 0; }
}