/* =========================================
   ZMIENNE (WŁAŚCICIEL MOŻE TU ŁATWO ZMIENIAĆ KOLORY I DANE)
   ========================================= */
:root {
    --bg-dark: #121212;
    --bg-darker: #0a0a0a;
    --text-light: #f3f4f6;
    --text-muted: #9ca3af;
    --accent: #f59e0b; /* Bursztynowy/Złoty kolor */
    --accent-hover: #d97706;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Reset i style bazowe */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    padding-bottom: 60px; /* Miejsce na sticky bar na mobile */
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Nawigacja */
.navbar {
    background-color: rgba(10, 10, 10, 0.95);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid #333;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}

.logo img {
    display: block;
    max-height: 48px;
    width: auto;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: url(hero.webp) no-repeat center center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Przyciski */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
    margin: 0.5rem;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
}

.btn-secondary {
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-secondary:hover {
    background-color: var(--accent);
    color: var(--bg-dark);
}

/* Sekcje */
.section {
    padding: 5rem 0;
}

.bg-darker {
    background-color: var(--bg-darker);
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

/* Features (O nas) */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.feature-card {
    background: var(--bg-darker);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333;
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

/* Menu */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-category {
    background: var(--bg-dark);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333;
}

.menu-category h3 {
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.menu-category ul li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px dashed #333;
}

.menu-category ul li:last-child {
    border-bottom: none;
}

/* Kontakt Highlight */
.contact-highlight {
    text-align: center;
    background: var(--bg-darker);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--accent);
    max-width: 600px;
    margin: 0 auto;
}

.contact-highlight p {
    margin: 1rem 0;
    font-size: 1.1rem;
}

.contact-highlight a {
    color: var(--accent);
}

/* Kontakt Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-info p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-info i {
    color: var(--accent);
    width: 25px;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-links a {
    font-size: 1.8rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #333;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    background-color: #000;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Sticky Mobile Bar */
.mobile-sticky-bar {
    display: none; /* Domyślnie ukryte na desktopie */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-darker);
    border-top: 2px solid var(--accent);
    z-index: 999;
    padding: 0.8rem;
    justify-content: space-around;
}

.sticky-btn {
    color: var(--text-light);
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sticky-btn i {
    color: var(--accent);
}

/* Responsywność (Mobile) */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-darker);
        flex-direction: column;
        text-align: center;
        padding: 1rem 0;
        border-bottom: 1px solid #333;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .mobile-sticky-bar {
        display: flex; /* Pokaż na mobile */
    }
}