/*
Theme Name: Schulz Classic
Theme URI: https://schulz-restaurant.de/
Author: Schulz Classic
Description: Tema premium personalizado para Schulz Classic Hotel & Restaurant. Incluye Hero Video de Brunch.
Version: 1.2
Text Domain: schulz-classic
*/

:root {
    --wine-red: #630d16;
    --pure-white: #ffffff;
    --text-black: #1a1a1a;
    --soft-white: #fbfbfb;
    --header-height: 140px;
}

/* --- RESET & GLOBAL --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    background-color: #fdfcfb; 
    background-image: url("https://www.transparenttextures.com/patterns/pinstriped-suit.png");
    font-family: 'Optima', 'Georgia', serif; 
    color: var(--text-black); 
    line-height: 1.6; 
}

/* --- HEADER --- */
.main-header {
    position: fixed; top: 0; left: 0; width: 100%; height: var(--header-height);
    background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(15px);
    z-index: 9999; display: flex; align-items: center; border-bottom: 2px solid rgba(0, 0, 0, 0.03);
}
.header-content {
    width: 100%; max-width: 1800px; margin: 0 auto; display: grid;
    grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 40px;
}
.nav-wrapper-left, .nav-wrapper-right { display: flex; align-items: center; gap: 30px; }
.nav-wrapper-right { justify-content: flex-end; }
.nav-main-links { display: flex; gap: 25px; }
.nav-main-links a { 
    text-decoration: none; color: var(--text-black); text-transform: uppercase; 
    letter-spacing: 3px; font-size: 0.8rem; font-weight: 700; transition: 0.3s; 
}
.nav-main-links a:hover { color: var(--wine-red); }
.logo-center img { height: 100px; width: auto; }

.btn-header-contact {
    background: var(--wine-red); color: white !important; padding: 12px 25px;
    text-decoration: none; text-transform: uppercase; font-weight: 700;
    font-size: 0.75rem; letter-spacing: 2px; transition: 0.3s; border: 1px solid var(--wine-red);
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh; display: flex; flex-direction: column; align-items: center;
    padding-top: calc(var(--header-height) + 60px); padding-bottom: 80px; text-align: center;
}
.hero-subtitle { font-size: 1rem; text-transform: uppercase; letter-spacing: 6px; color: var(--wine-red); margin-bottom: 15px; font-weight: 700; }
.hero-slogan { font-family: 'Playfair Display', serif; font-size: 5.5rem; font-weight: 400; margin-bottom: 50px; line-height: 1.1; }

/* CONTENEDOR DEL VIDEO ACTUALIZADO */
.hero-video-wrapper {
    width: 90%; 
    max-width: 1100px; 
    height: 550px; 
    position: relative;
    overflow: hidden; 
    box-shadow: 0 40px 80px rgba(0,0,0,0.15); 
    margin-bottom: 50px;
    background: #000;
    cursor: pointer;
}

.hero-video-wrapper video { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block;
}

/* Icono estilo Elementor para el Video */
.video-overlay-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    z-index: 5;
    transition: 0.3s ease;
    pointer-events: none;
}

.hero-video-wrapper:hover .video-overlay-play {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--wine-red);
    border-color: var(--wine-red);
}

.btn-wine {
    display: inline-block; padding: 20px 50px; background: var(--wine-red); color: white;
    text-decoration: none; text-transform: uppercase; letter-spacing: 2px; font-weight: bold;
    transition: 0.4s; border: 1px solid var(--wine-red);
}
.btn-wine:hover { background: transparent; color: var(--wine-red); }

/* --- IMPRESSIONEN (YOUTUBE) --- */
.impressionen { position: relative; width: 100%; height: 90vh; display: flex; align-items: center; overflow: hidden; background: #000; }
.youtube-bg-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.youtube-iframe { width: 100vw; height: 56.25vw; min-height: 100vh; min-width: 177.77vh; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; }
.video-overlay-darken { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.4); z-index: 2; }
.info-glass-card { position: relative; z-index: 10; margin-left: 8%; width: 450px; background: rgba(255, 255, 255, 0.95); padding: 50px; box-shadow: 0 30px 60px rgba(0,0,0,0.2); }

/* --- CULINARY & WEDDING --- */
.culinary-section { padding: 100px 10%; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin: 50px 0; }
.menu-card { background: white; padding: 40px; border: 1px solid #eee; text-align: center; }
.menu-list { list-style: none; margin-top: 20px; }
.menu-list li { padding: 5px 0; border-bottom: 1px solid #f9f9f9; }

.showkuche-highlight { background: var(--text-black); color: white; padding: 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.wedding-section { padding: 100px 10%; background: white; }
.wedding-container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
    .header-content { grid-template-columns: 1fr auto; }
    .nav-main-links, .social-header { display: none; }
    .hero-slogan { font-size: 3.5rem; }
    .hero-video-wrapper { height: 350px; width: 95%; }
    .showkuche-highlight, .wedding-container { grid-template-columns: 1fr; }
    .info-glass-card { width: 90%; margin: 0 auto; }
}