/* Variables & Reset */
:root {
    --bg-main: #0a0a0a;
    --bg-sec: #121212;
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --accent: #dca353;
    --accent-hover: #f1bd70;
    --border: #2a2a2a;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.7;
    letter-spacing: 0.3px;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 { 
    font-family: var(--font-heading); 
    font-weight: 400; 
    color: #ffffff;
}

a { color: var(--text-main); text-decoration: none; transition: 0.2s; }
a:hover { color: var(--accent); }

.mt-4 { margin-top: 3rem; }
.text-center { text-align: center; }

/* Buttons */
.btn-primary, .btn-outline {
    display: inline-block;
    padding: 1rem 2.8rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid var(--accent);
    border-radius: 4px;
}

.btn-primary {
    background-color: var(--accent);
    color: #000;
    box-shadow: 0 4px 15px rgba(220, 163, 83, 0.2);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-hover);
    border-color: var(--accent-hover);
    box-shadow: 0 0px 20px rgba(220, 163, 83, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--border);
    border-radius: 4px;
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background-color: rgba(220, 163, 83, 0.05);
    transform: translateY(-2px);
}

/* Floating Mobile CTA */
.floating-cta {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--accent);
    color: #000;
    padding: 1rem;
    text-align: center;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 999;
}

/* Layout */
.container { max-width: 1000px; margin: 0 auto; padding: 0 2rem; }
section { padding: 9rem 0; }
.section-title { font-size: 2.8rem; margin-bottom: 3.5rem; letter-spacing: 1.5px; font-style: italic; }

/* Navbar */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; padding: 2.5rem 0; z-index: 100;
    transition: all 0.4s ease; background: transparent;
}
.navbar.scrolled {
    background: rgba(10, 10, 10, 0.85); 
    padding: 1.2rem 0; 
    border-bottom: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.logo { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 600; letter-spacing: 2px; color: #fff; }
.nav-links { display: flex; list-style: none; gap: 3rem; }
.nav-links a { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
.hamburger { display: none; flex-direction: column; gap: 8px; cursor: pointer; }
.hamburger span { width: 30px; height: 1px; background-color: #fff; }

/* Hero */
.hero { height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; z-index: -2; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle, rgba(0,0,0,0.3) 0%, rgba(10,10,10,0.95) 100%); z-index: -1; }
.hero-content { margin-top: 4rem; animation: fadeIn 2s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero .title { font-size: 7.5rem; letter-spacing: 6px; margin-bottom: 0.2rem; line-height: 1; text-shadow: 0 10px 30px rgba(0,0,0,0.8); }
.hero .subtitle { font-size: 1.1rem; text-transform: uppercase; letter-spacing: 8px; margin-bottom: 3.5rem; color: var(--text-muted); }
.rating-badge-top { margin-top: 4rem; font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); }

/* Services */
.services { background: var(--bg-sec); }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.category-title { font-size: 1.2rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 2rem; color: var(--accent); border-bottom: 1px solid var(--border); padding-bottom: 1rem; }

.service-item { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.5rem; padding: 1rem; border-radius: 8px; transition: background 0.3s ease; }
.service-item:hover { background: rgba(255,255,255,0.02); }
.service-item.slim { margin-bottom: 0.5rem; align-items: center; }
.service-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); margin: 2.5rem 0; }

.service-info { flex: 1; padding-right: 1.5rem; }
.service-name { font-family: var(--font-heading); font-size: 1.2rem; font-style: italic; color: #fff; letter-spacing: 0.5px; }
.service-desc { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.4rem; line-height: 1.5; }
.service-meta { text-align: right; }
.service-price { display: block; font-size: 1.2rem; color: var(--accent); font-weight: 400; }
.service-price-old { display: block; font-size: 0.85rem; color: var(--text-muted); text-decoration: line-through; margin-bottom: 0.2rem; }
.service-duration { display: block; font-size: 0.85rem; color: var(--text-muted); }
.service-note { font-family: var(--font-body); font-weight: 300; font-size: 0.85rem; color: var(--text-muted); font-style: normal; }

/* About & Profile */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.reverse-grid .about-text { order: 1; }
.reverse-grid .about-image { order: 2; }
.about-image img { 
    width: 100%; 
    filter: grayscale(15%) contrast(1.1); 
    border-radius: 6px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    transition: 0.4s;
}
.about-image img:hover {
    filter: grayscale(0%) contrast(1.1);
    transform: translateY(-5px);
}
.profile-image-container img {
    border: 1px solid var(--accent);
    padding: 12px;
    background: linear-gradient(135deg, var(--bg-sec) 0%, var(--bg-main) 100%);
}
.about-text p { margin-bottom: 1.5rem; font-size: 1.1rem; color: #d1d1d1; font-weight: 300; }
.about-text h2.section-title { color: var(--accent); margin-bottom: 2rem; }

/* Ömer Banner Variant */
.oemer-banner {
    position: relative;
    background-size: cover;
    background-position: center 20%;
    background-attachment: fixed; /* Parallax effect */
    padding: 0;
    margin: 4rem 0 0 0;
}
.oemer-banner .banner-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(10,10,10,0) 30%, rgba(10,10,10,0.4) 65%, rgba(10,10,10,0.85) 100%);
    z-index: 1;
    pointer-events: none;
}
.banner-container {
    position: relative;
    z-index: 2;
    padding-top: 35vh; /* Shows image prominently before text */
    padding-bottom: 5rem;
}
.banner-content {
    max-width: 600px;
    background: rgba(10, 10, 10, 0.4);
    padding: 3rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.banner-content p {
    margin-bottom: 1.2rem;
    color: #e0e0e0;
}
.banner-content h2.section-title {
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

@media (max-width: 992px) {
    .oemer-banner {
        background-image: none !important;
        margin-top: 3rem;
        padding: 0;
        position: relative;
        background-color: var(--bg-sec);
        display: block;
    }
    .oemer-banner::before {
        content: "";
        display: block;
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        width: 100%;
        height: 100vh;
        background-image: linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(10,10,10,0) 40%, rgba(10,10,10,0.85) 75%, rgba(10,10,10,1) 100%), url('oemer-profil.jpg');
        background-size: cover;
        background-position: center top;
        z-index: 0;
    }
    .oemer-banner .banner-overlay {
        display: none;
    }
    .banner-container {
        position: relative;
        z-index: 2;
        margin-top: -100vh;
        padding-top: 55vh;
        padding-bottom: 4rem;
    }
    .banner-content {
        padding: 1.5rem;
        margin: 0;
        border-left: none;
        background: transparent;
    }
}

/* Gallery - TikTok like Scroll Snap with Buttons */
.gallery { padding: 0; }
.gallery-wrapper { 
    position: relative; 
    border-radius: 12px; 
    overflow: hidden; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); 
}
.gallery-snap-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* For smooth scrolling on iOS */
    scrollbar-width: none; /* Hide scrollbar Firefox */
}
.gallery-snap-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}
.gallery-snap-item {
    scroll-snap-align: center;
    flex: 0 0 100%;
    aspect-ratio: 16 / 9;
}
.gallery-snap-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Slider Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
    z-index: 10;
    border-radius: 50%;
}
.slider-btn:hover {
    background: rgba(208, 170, 92, 0.8);
    border-color: var(--accent);
    color: var(--accent);
}
.slider-prev { left: 1rem; }
.slider-next { right: 1rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.info-group { margin-bottom: 2.5rem; }
.info-group h4 { font-family: var(--font-body); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); margin-bottom: 0.5rem; }
.info-group p { font-size: 1.1rem; }
.social-links { display: flex; gap: 1.2rem; align-items: center; }
.social-links a { 
    color: var(--text-main); 
    transition: color 0.3s, transform 0.3s; 
    display: inline-flex;
    align-items: center;
}
.social-links a:hover { 
    color: var(--accent); 
    transform: scale(1.15); 
}

.opening-hours h4 { font-family: var(--font-body); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); margin-bottom: 1.5rem; }
.hours-list { list-style: none; }
.hours-list li { display: flex; justify-content: space-between; padding: 0.8rem 0; border-bottom: 1px solid var(--border); font-size: 1rem; }
.hours-list li.closed { color: var(--text-muted); }

/* Footer */
footer { padding: 3rem 0; background: var(--bg-sec); border-top: 1px solid var(--border); font-size: 0.85rem; color: var(--text-muted); }
.footer-content { display: flex; justify-content: space-between; align-items: center; }
.footer-brand { font-family: var(--font-heading); font-size: 1.2rem; color: #fff; }
.footer-links a { margin-left: 1.5rem; color: var(--text-muted); }

/* Legal Pages (Impressum & Datenschutz) */
.legal-page {
    padding-top: 120px;
    padding-bottom: 5rem;
    min-height: calc(100vh - 100px);
    background-image: linear-gradient(135deg, rgba(10,10,10,1) 0%, rgba(20,20,20,1) 100%);
}
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-sec);
    padding: 3rem 4rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
.legal-content h2 {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 2rem;
    text-align: center;
    font-style: italic;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
}
.legal-content h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
}
.legal-content h4 {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
}
.legal-content p {
    margin-bottom: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
}
.legal-content a {
    color: var(--accent);
    text-decoration: underline;
}
@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
}

/* Booking Page (buchen.html) */
.booking-page-body {
    background-image: linear-gradient(135deg, rgba(10,10,10,1) 0%, rgba(20,20,20,1) 100%);
}
.booking-page-section {
    padding-top: 120px;
    padding-bottom: 5rem;
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.booking-card {
    background-color: var(--bg-sec);
    padding: 3.5rem 3rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.booking-title {
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 0.5rem;
}
.booking-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1rem;
}
.booking-form .form-group {
    margin-bottom: 1.8rem;
}
.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.booking-form label {
    display: block;
    margin-bottom: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"],
.booking-form input[type="date"],
.booking-form select {
    width: 100%;
    padding: 1rem 1.2rem;
    background-color: var(--bg-main);
    border: 1px solid var(--border);
    color: #fff;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}
.booking-form input:focus, .booking-form select:focus {
    outline: none;
    border-color: var(--accent);
}
.booking-form select:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
/* Custom dropdown arrow for select */
.booking-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23d0aa5c%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem top 50%;
    background-size: 0.65rem auto;
}
.booking-submit-btn {
    width: 100%;
    margin-top: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    padding: 1.2rem;
}
.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
}
.booking-success {
    text-align: center;
    padding: 3rem 0;
}
.booking-success svg {
    margin-bottom: 2rem;
    width: 80px;
    height: 80px;
}
.booking-success h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #fff;
    font-family: var(--font-heading);
}
.booking-success p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .reverse-grid .about-text { order: 2; }
    .reverse-grid .about-image { order: 1; }
    .hero .title { font-size: 4.5rem; }
}

@media (max-width: 768px) {
    .nav-btn { display: none; }
    .hamburger { display: flex; z-index: 201; }
    body { padding-bottom: 70px; }
    body.menu-open { overflow: hidden; }
    .floating-cta { display: block; }
    .footer-content { flex-direction: column; gap: 1.5rem; text-align: center; }

    /* Mobile Menu Overlay */
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.97);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        z-index: 200;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
    }

    .nav-links.active {
        opacity: 1;
        pointer-events: all;
    }

    .nav-links a {
        font-size: 1.4rem;
        letter-spacing: 3px;
    }

    /* Hamburger X animation */
    .hamburger span {
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .hamburger.active span:first-child {
        transform: translateY(4.5px) rotate(45deg);
    }
    .hamburger.active span:last-child {
        transform: translateY(-4.5px) rotate(-45deg);
    }

    .booking-form .form-row {
        grid-template-columns: 1fr;
    }
}
