/* ADA GRILL BURGDORF - MASTER STYLESHEET */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;900&family=Oswald:wght@500;700&display=swap');

:root {
    --primary: #FF7F00;
    --primary-dark: #cc6600;
    --black: #0a0a0a;
    --card: #141414;
    --white: #ffffff;
    --gray: #888888;
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background-color: var(--black); color: var(--white); overflow-x: hidden; line-height: 1.6; }

/* --- HEADER & LOGO --- */
header.main-nav {
    position: fixed; top: 0; width: 100%; height: 90px;
    background: rgba(0,0,0,0.95); backdrop-filter: blur(15px);
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 5%; z-index: 10000; border-bottom: 2px solid var(--primary);
}

.logo-badge { display: flex; align-items: center; text-decoration: none; height: 100%; }
.nav-logo-img { height: 50px; width: auto; display: block; }

.nav-links { display: flex; list-style: none; gap: 35px; }
.nav-links a { 
    color: white !important; text-decoration: none; font-weight: 700; font-size: 0.85rem; 
    text-transform: uppercase; letter-spacing: 2px; transition: 0.3s; 
}
.nav-links a:hover, .nav-links a.active { color: var(--primary) !important; }

/* --- HERO & LOGO --- */
.hero { 
    height: 100vh; width: 100%; background-size: cover; background-position: center; 
    background-attachment: fixed; display: flex; justify-content: center; align-items: center; text-align: center; 
}
.hero-logo-img { max-width: 500px; width: 80%; height: auto; margin-bottom: 20px; }
.hero-subtitle { letter-spacing: 10px; color: var(--primary); font-weight: 800; margin-bottom: 10px; text-transform: uppercase;}
.hero-tagline { font-size: 1.2rem; margin-top: 10px; color: #ccc; }
.hero-btns { margin-top: 40px; display: flex; gap: 20px; justify-content: center; }

/* --- BUTTONS --- */
.btn-primary { 
    background: var(--primary); color: black; padding: 18px 35px; text-decoration: none; 
    font-weight: 900; text-transform: uppercase; transition: 0.3s; border: 2px solid var(--primary); display: inline-block;
}
.btn-primary:hover { background: transparent; color: var(--primary); }
.btn-outline { 
    border: 2px solid var(--primary); color: var(--primary); padding: 18px 35px; 
    text-decoration: none; font-weight: 900; text-transform: uppercase; transition: 0.3s; display: inline-block;
}
.btn-outline:hover { background: var(--primary); color: black; }

/* --- LAYOUTS --- */
.section { padding: 100px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; }
.title-big { font-family: 'Oswald'; font-size: clamp(2.5rem, 5vw, 4rem); color: var(--primary); text-transform: uppercase; margin-bottom: 30px; line-height: 1.1; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.philosophy-image { height: 450px; background-size: cover; background-position: center; border: 1px solid #333; position: relative; width: 100%;}
.image-overlay-badge { position: absolute; bottom: -20px; right: -20px; background: var(--primary); color: black; padding: 15px 25px; font-weight: 900; text-transform: uppercase; font-family: 'Oswald'; }

/* --- SPEISEKARTE --- */
.menu-cat-title { font-family: 'Oswald'; font-size: 2rem; color: var(--primary); margin: 50px 0 25px; border-bottom: 1px solid #333; padding-bottom: 10px; text-transform: uppercase; }
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px 40px; margin-bottom: 40px; }
.menu-item { border-bottom: 1px dashed #333; padding-bottom: 8px; }
.item-head { display: flex; justify-content: space-between; font-weight: 700; font-size: 1.05rem; }
.price { color: var(--primary); font-family: 'Oswald'; }
.item-desc { font-size: 0.85rem; color: var(--gray); margin-top: 4px;}

/* --- BEWERTUNGEN SEITE (FIXED) --- */
.reviews-header { text-align: center; margin-bottom: 80px; }
.rating-summary { 
    background: var(--card); 
    display: inline-block; 
    padding: 30px 50px; 
    border: 1px solid #222; 
    border-bottom: 4px solid var(--primary); 
    text-align: center;
    border-radius: 4px;
}
.rating-number { font-size: 5rem; font-family: 'Oswald'; color: var(--primary); display: block; line-height: 1; }
.rating-stars-big { color: #FFD700; font-size: 1.8rem; margin: 15px 0; }

/* Carousel Anpassungen */
.carousel-container { 
    position: relative; 
    display: flex; 
    align-items: center; 
    margin: 40px 0 80px 0; 
    padding: 0 60px; /* Platz für die Pfeile schaffen */
}

.horizontal-scroll-wrapper { 
    display: flex; 
    gap: 25px; 
    overflow-x: auto; 
    padding: 20px 5px 40px 5px; 
    scroll-snap-type: x mandatory; 
    scrollbar-width: none; 
    width: 100%; 
}
.horizontal-scroll-wrapper::-webkit-scrollbar { display: none; }

.scroll-card { 
    flex: 0 0 380px; 
    background: var(--card); 
    padding: 35px; 
    border: 1px solid #222; 
    transition: 0.3s; 
    display: flex; 
    flex-direction: column; 
    justify-content: space-between;
    border-radius: 4px;
    scroll-snap-align: start;
}
.scroll-card:hover { border-color: var(--primary); transform: translateY(-8px); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }

/* Pfeile Design */
.nav-btn { 
    position: absolute; 
    background: var(--primary); 
    color: black; 
    border: none; 
    width: 55px; 
    height: 55px; 
    border-radius: 50%; 
    cursor: pointer; 
    z-index: 100; 
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}
.nav-btn:hover { background: white; transform: scale(1.1); }
.prev { left: 0; } 
.next { right: 0; }

.reviewer-info { display: flex; align-items: center; gap: 15px; margin-top: 25px; }
.avatar { 
    width: 45px; height: 45px; background: var(--primary); border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    font-weight: 900; color: black; font-size: 1.1rem;
}

.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.review-card { background: var(--card); padding: 35px; border: 1px solid #222; border-radius: 4px; }
.stars { color: #FFD700; margin-bottom: 12px; font-size: 1.1rem; }
.reviewer { font-weight: 800; color: var(--primary); display: block; margin-top: 15px; }

/* --- KONTAKT & MAP --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; margin-top: 50px; }
.info-panel { background: var(--card); padding: 40px; border-top: 4px solid var(--primary); }
.info-block { margin-bottom: 30px; }
.info-block h3 { color: var(--primary); font-family: 'Oswald'; margin-bottom: 10px; }
.map-box { height: 500px; border: 2px solid var(--primary); }
.map-box iframe { border: 0; width: 100%; height: 100%; filter: none; }

/* --- ALLGEMEIN --- */
.feature-card { background: var(--card); padding: 40px; border-left: 5px solid var(--primary); transition: 0.3s; }
.feature-card:hover { transform: translateY(-10px); }
.feature-icon { font-size: 2.5rem; margin-bottom: 20px; }
.reveal { opacity: 0; transform: translateY(50px); transition: 1s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }
footer.main-footer { padding: 60px 0; background: #000; border-top: 1px solid #222; color: #555; }

/* --- MOBILE --- */
@media (max-width: 850px) {
    .grid-2, .menu-grid, .contact-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .hero-logo-img { width: 90%; }
    .carousel-container { padding: 0; }
    .nav-btn { display: none; }
    .scroll-card { flex: 0 0 90%; }
}