/* Baza i Zmienne CSS */
:root {
    /* Paleta leśna, ciemny klimat premium */
    --clr-forest-dark: #12221A;
    /* Głęboka czerń leśna */
    --clr-forest-main: #1C3527;
    /* Główna leśna zieleń */
    --clr-forest-light: #2A513A;
    /* Jaśniejsza zieleń (akcenty) */

    --clr-moss: #507052;
    /* Zgaszona jasna zieleń, mech */

    --clr-gold: #D6A860;
    /* Szlachetne złoto/drewno/rogi jelenia */
    --clr-gold-hover: #E8BF7E;
    /* Jaśniejsze złoto na hover */

    --clr-text-light: #F4F6F4;
    /* Prawie biały dla dark mode */
    --clr-text-muted: #A3B5AA;
    /* Szaro-zielony dla tekstów pobocznych */
    --clr-text-dark: #1A1A1A;
    /* Ciemny tekst dla jasnych sekcji */

    --clr-bg-light: #F9FAF8;
    /* Jasne tło pergaminowe/kremowe */

    /* Typografia */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Przejścia */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg-light);
    color: var(--clr-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typografia bazowa */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 2rem;
}

h2 span {
    color: var(--clr-forest-light);
    font-style: italic;
}

p {
    margin-bottom: 1.5rem;
    color: #4a5550;
}

a {
    transition: var(--transition);
    text-decoration: none;
}

/* Layout Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 6rem 0;
}

.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 3rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Przyciski */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--clr-gold);
    color: var(--clr-forest-dark);
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--clr-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(214, 168, 96, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--clr-text-light);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--clr-text-light);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--clr-gold);
    color: var(--clr-gold);
}

.btn-outline:hover {
    background-color: var(--clr-gold);
    color: var(--clr-forest-dark);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(23, 42, 33, 0.5);
    /* Ciemnozielony z przezroczystością */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: block;
}

.brand-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.3));
    border-radius: 4px;
    /* dla estetyki jeśli logo ma tło */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--clr-text-light);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--clr-gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--clr-gold);
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        margin-left: 1rem;
    }
    .header-actions .mobile-hidden {
        display: none !important;
    }
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--clr-text-light);
    cursor: pointer;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--clr-forest-dark);
    z-index: 2000;
    padding: 4rem 2rem;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
}

.mobile-nav.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--clr-text-light);
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.mobile-nav-links a {
    color: var(--clr-text-light);
    font-size: 1.2rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1542273917363-3b1817f69a2d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    /* Piękne zdjęcie mrocznego, mglistego lasu lub restauracji w nim */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(18, 34, 26, 0.9) 0%,
            rgba(28, 53, 39, 0.7) 50%,
            rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--clr-gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}

.hero-title {
    color: var(--clr-text-light);
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    color: var(--clr-text-muted);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-decoration {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.2);
    z-index: 10;
    animation: bounce 2s infinite ease-in-out;
}

.dec-icon {
    width: 32px;
    height: 32px;
}

@keyframes bounce {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, -10px);
    }
}

/* O Nas / About */
.section-kicker {
    font-family: var(--font-body);
    color: var(--clr-moss);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-kicker::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--clr-gold);
}

.features-list {
    margin-top: 2rem;
    display: flex;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--clr-forest-main);
}

.feature-item i {
    color: var(--clr-gold);
}

.about-image-wrapper {
    position: relative;
    padding: 2rem;
}

.image-glass-card {
    position: relative;
    border-radius: 8px;
    padding: 10px;
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.wood-bg {
    height: 400px;
    background: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover;
    border-radius: 4px;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--clr-forest-main);
    color: white;
    padding: 1.5rem;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(28, 53, 39, 0.4);
    border: 3px solid #fff;
}

.badge-number {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--clr-gold);
    line-height: 1;
}

.badge-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    text-align: center;
    margin-top: 5px;
    letter-spacing: 1px;
}

/* Dark Section - Menu */
.dark-section {
    background-color: var(--clr-forest-dark);
    color: var(--clr-text-light);
    background-image: radial-gradient(circle at center, var(--clr-forest-main) 0%, var(--clr-forest-dark) 100%);
}

.text-light {
    color: var(--clr-text-light);
}

.dark-section .section-kicker::after {
    background-color: var(--clr-moss);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.menu-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    transition: var(--transition);
}

.menu-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(214, 168, 96, 0.3);
    /* Subtelne złoto na hover */
    transform: translateY(-5px);
}

.menu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
    border-bottom: 1px border-style dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.menu-card-header h3 {
    font-size: 1.3rem;
    color: var(--clr-gold);
}

.price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
}

.menu-desc {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: #0b140f;
    /* Ultra ciemny zielony */
    color: var(--clr-text-muted);
    padding: 4rem 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 800px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-logo {
    height: 50px;
    margin-bottom: 1.5rem;
    border-radius: 3px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.footer h4 {
    color: var(--clr-text-light);
    font-family: var(--font-body);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer ul li i {
    width: 18px;
    height: 18px;
    color: var(--clr-gold);
}

.footer-hours span {
    display: inline-block;
    width: 80px;
    color: var(--clr-text-light);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 1.5rem;
    font-size: 0.85rem;
}

/* Social Media Icons */
.nav-social {
    color: var(--clr-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.nav-social:hover {
    color: var(--clr-gold);
    transform: scale(1.1);
}

.social-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--clr-gold);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-circle:hover {
    background-color: var(--clr-gold);
    color: var(--clr-forest-dark);
    transform: translateY(-3px);
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--clr-gold);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--clr-forest-light);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.bg-gold {
    background-color: var(--clr-gold);
}

.bg-moss {
    background-color: var(--clr-moss);
}

.reviewer-info h5 {
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: var(--clr-forest-dark);
}

.stars {
    display: flex;
    gap: 2px;
}

.star-filled {
    width: 14px;
    height: 14px;
    color: #FBBC04;
    fill: #FBBC04;
}

.google-icon-small {
    width: 24px;
    height: 24px;
}

.review-text {
    font-style: italic;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
}

.review-text::before {
    content: '"';
    font-size: 3rem;
    color: rgba(214, 168, 96, 0.2);
    position: absolute;
    top: -15px;
    left: -15px;
    font-family: var(--font-heading);
    line-height: 1;
}

.google-link-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #f8f9fa;
    padding: 6px 12px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.75rem;
    color: #5f6368;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid #dadce0;
    font-family: var(--font-body);
}

.google-link-pill:hover {
    background-color: #f1f3f4;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    color: #1a73e8;
}

.google-link-pill img {
    width: 16px;
    height: 16px;
}

/* Full Menu Layout Styles */
.full-menu-container {
    max-width: 1000px;
    margin: 0 auto;
}

.menu-category {
    margin-bottom: 4rem;
}

.menu-category-title {
    font-size: 2rem;
    color: var(--clr-gold);
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}

.menu-category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--clr-moss);
}

.menu-items-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .menu-items-list {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 4rem;
    }
}

.menu-item {
    position: relative;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    padding-bottom: 0.3rem;
    margin-bottom: 0.5rem;
}

.menu-item-name {
    font-size: 1.15rem;
    color: var(--clr-text-light);
    font-weight: 600;
    font-family: var(--font-heading);
}

.menu-item-price {
    font-size: 1.1rem;
    color: var(--clr-gold);
    font-weight: 600;
    white-space: nowrap;
    margin-left: 1rem;
}

.menu-item-desc {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
    font-style: italic;
}

/* Wyróżniona Sekcja (np. Magda Gessler) */
.menu-signature {
    background: rgba(214, 168, 96, 0.05);
    border: 1px solid rgba(214, 168, 96, 0.2);
    border-radius: 8px;
    padding: 3rem 2rem;
    margin-bottom: 5rem;
}

.menu-signature .menu-category-title {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    border-bottom: none;
}

.menu-signature .menu-category-title::after {
    background-color: var(--clr-gold);
}

.menu-signature-desc {
    text-align: center;
    color: var(--clr-gold);
    margin-bottom: 3rem;
    font-style: italic;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.gallery-img-container {
    height: 250px;
    width: 100%;
}

.gallery-caption {
    padding: 1.2rem;
    text-align: center;
    border-top: 3px solid var(--clr-gold);
}

.gallery-caption h4 {
    color: var(--clr-forest-dark);
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

/* Lightbox & Gallery Fixes */
.gallery-item {
    cursor: pointer;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 3000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

.lightbox-img {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease-out;
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-caption {
    color: white;
    margin-top: 15px;
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--clr-gold);
    color: var(--clr-forest-dark);
}