/* --- GLOBALE STYLES & LUXUS-VARIABLEN --- */
:root {
    --bg-dark: #0b0d10;
    --bg-surface: #13171e;
    --gold: #dfb743;
    --gold-hover: #c59f33;
    --text-light: #f8f9fa;
    --text-muted: #9da4b4;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-sans);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- NAVIGATION (HIGH-CLASS) --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.8rem 6%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 13, 16, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(223, 183, 67, 0.1);
}

.logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.5px;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 2.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
}

nav a:hover {
    color: var(--gold);
}

.btn-nav {
    border: 1px solid var(--gold);
    padding: 0.7rem 1.5rem;
    border-radius: 2px;
    background: rgba(223, 183, 67, 0.05);
}

.btn-nav:hover {
    background: var(--gold);
    color: var(--bg-dark) !important;
    box-shadow: 0 4px 15px rgba(223, 183, 67, 0.3);
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 6%;
    background: linear-gradient(rgba(11, 13, 16, 0.65), rgba(11, 13, 16, 0.95)), 
                url('https://images.unsplash.com/photo-1544025162-d76694265947?q=80&w=2069') center/cover no-repeat;
}

.hero-content {
    max-width: 850px;
}

.subtitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    line-height: 1.15;
    margin-bottom: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.gold-text {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}

.hero p {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 650px;
}

/* BUTTONS */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1.1rem 2.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-radius: 3px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gold);
    color: var(--bg-dark);
    margin-right: 1.5rem;
    border: 1px solid var(--gold);
}

.btn-primary:hover {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
    box-shadow: 0 5px 20px rgba(223, 183, 67, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(255, 255, 255, 0.02);
}

/* --- FEATURE CARDS --- */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 0 6%;
    margin-top: -6rem;
    position: relative;
    z-index: 10;
}

.feature-card {
    background: var(--bg-surface);
    padding: 3.5rem 2.5rem;
    border-radius: 4px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card.highlighted {
    border: 1px solid var(--gold);
}

.feature-card .icon {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    color: var(--gold);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
}

/* --- STORY SECTION --- */
.story-section {
    padding: 12rem 6% 6rem 6%;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.section-tag {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.8rem;
}

.story-text h2 {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.story-text p {
    color: var(--text-muted);
    margin-bottom: 1.8rem;
    font-weight: 300;
}

.image-placeholder {
    width: 100%;
    height: 480px;
    background: linear-gradient(45deg, #161a23, #1f2533);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-weight: 300;
    text-align: center;
    padding: 2rem;
    border: 1px dashed rgba(223, 183, 67, 0.2);
}

/* --- MENU HIGHLIGHTS --- */
.menu-highlights {
    padding: 7rem 6%;
    background: var(--bg-surface);
}

.center-title {
    text-align: center;
    margin-bottom: 5rem;
}

.center-title h2 {
    font-family: var(--font-serif);
    font-size: 3.2rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
}

.menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 2rem;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.8rem;
}

.menu-item h4 {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    font-weight: 600;
}

.menu-item .price {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.2rem;
    font-family: var(--font-serif);
}

.menu-item p {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 300;
}

.grill-prices {
    list-style: none;
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.grill-prices li {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.grill-prices strong {
    color: var(--text-light);
}

/* --- RESERVIERUNG (TELEFON-CTABOX) --- */
.reservation-section {
    padding: 8rem 6%;
    display: flex;
    justify-content: center;
}

.reservation-box {
    background: #0f1218;
    border: 1px solid rgba(223, 183, 67, 0.1);
    padding: 5rem 4rem;
    border-radius: 6px;
    max-width: 750px;
    width: 100%;
    text-align: center;
    box-shadow: 0 35px 70px rgba(0,0,0,0.5);
}

.icon-large {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1.5rem;
}

.reservation-box h2 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.reservation-box p {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    font-weight: 300;
}

.btn-call {
    font-size: 1.4rem;
    padding: 1.2rem 3rem;
    font-family: var(--font-serif);
    display: inline-block;
}

.call-subtext {
    display: block;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- FOOTER --- */
footer {
    background: #060709;
    padding: 6rem 6% 2.5rem 6%;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto 4rem auto;
}

.footer-info h3, .footer-hours h3 {
    font-family: var(--font-serif);
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer-info p, .footer-hours p {
    color: var(--text-muted);
    margin-bottom: 0.6rem;
    font-weight: 300;
}

.footer-tel a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
}

.ruhetag {
    color: #e06c75 !important; /* Dezentes Rot für den Ruhetag */
    margin-top: 1rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 2.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.2);
}

.footer-bottom a {
    color: var(--text-muted);
    text-decoration: none;
}

/* --- MOBIL-OPTIMIERUNGEN --- */
@media (max-width: 968px) {
    .navbar nav {
        display: none; 
    }
    
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
    }
    
    .btn-primary {
        margin-right: 0;
    }
    
    .reservation-box {
        padding: 3rem 1.5rem;
    }
    
    .btn-call {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
    }
    
    .grill-prices {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================================
   GURANJE MOBILNOG MENIJA DA RADI (ZAMENI SAMO ONAJ DEO NA DNU)
   ========================================================================== */

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 9999 !important; /* Gura ikonicu skroz na vrh */
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: var(--gold) !important;
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex !important; /* Force prikaz tri linije */
    }

    /* Ovaj deo je ključan - prepisuje stari nav i tera ga da se pojavi */
    .navbar nav {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important; /* Sakriven van ekrana */
        width: 280px !important;
        height: 100vh !important;
        background-color: #0c0f14 !important; /* Tamna pozadina */
        border-left: 1px solid rgba(223, 183, 67, 0.3) !important;
        display: flex !important; /* Tera elemente u kolonu */
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 2.5rem !important;
        transition: right 0.4s ease-in-out !important;
        z-index: 9998 !important; /* Odmah ispod ikonice */
        box-shadow: -10px 0 40px rgba(0,0,0,0.8) !important;
    }

    /* Kada klikneš, ova klasa se pali i GURA meni na ekran */
    .navbar nav.active {
        right: 0 !important; 
    }

    .navbar nav a {
        font-size: 1.3rem !important;
        color: #fff !important;
        text-decoration: none !important;
        display: block !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    .navbar nav a:hover {
        color: var(--gold) !important;
    }

    /* Animacija pretvaranja u X */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg) !important;
    }
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0 !important;
    }
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg) !important;
    }
}