 :root {
            --gold: #c5a059;
            --black: #0a0a0a;
            --dark-gray: #161616;
            --border: rgba(197, 160, 89, 0.2);
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        body {
            background-color: var(--black);
            background-image: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #0a0a0a 100%);
            font-family: 'Montserrat', sans-serif;
            color: white;
            margin: 0;
           padding-top: 80px;
        }
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
    pointer-events: none;
    opacity: 0.15;
    z-index: 1;
}
        /* --- NAVBAR --- */
        .navbar {
            background: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid var(--border);
            padding: 15px 0;
        }

        .navbar-brand {
            font-family: 'Cinzel', serif;
            color: var(--gold) !important;
            letter-spacing: 4px;
            font-weight: 700;
        }

        .btn-cta-nav {
            border: 1px solid var(--gold);
            color: var(--gold);
            font-family: 'Cinzel', serif;
            font-size: 0.8rem;
            letter-spacing: 2px;
            padding: 8px 20px;
            text-decoration: none;
            transition: var(--transition);
        }

        .btn-cta-nav:hover {
            background: var(--gold);
            color: black;
        }

        /* --- HERO SECTION --- */
     .hero-section {
    /* Obliczamy wysokość: pełny ekran minus wysokość Twojego body paddingu (90px) */
    min-height: calc(100vh - 90px); 
    display: flex;
    align-items: center;    /* Centrowanie w pionie */
    justify-content: center; /* Centrowanie w poziomie */
    text-align: center;
    padding: 40px 0;        /* Bezpieczny odstęp wewnętrzny */
    position: relative;
    overflow: hidden;
}

/* Zapewnia, że napisy nie będą za szerokie na dużych ekranach */
.hero-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
}

/* Naprawa szerokości przycisków na komputerze, by nie były za długie */
.btn-hero-gold, .btn-hero-outline {
    min-width: 220px;
}

        .brand-title {
            font-family: 'Cinzel', serif;
            letter-spacing: 4px;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .hero-subtitle {
            color: #888;
            max-width: 700px;
            margin: 0 auto 40px auto;
            font-weight: 200;
            letter-spacing: 1px;
        }

        /* --- FEATURE BOXES --- */
        .features-grid {
            padding: 60px 0;
        }

        .feature-box {
            background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
            border: 1px solid  var(--gold);
            padding: 40px 30px;
            height: 100%;
            transition: var(--transition);
            text-align: center;
        }

        .feature-box:hover {
            border-color: var(--gold);
            transform: translateY(-10px);
        }

        .feature-box i {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 20px;
            display: block;
        }

        .feature-box h3 {
            font-family: 'Cinzel', serif;
            font-size: 1.1rem;
            letter-spacing: 2px;
            margin-bottom: 15px;
            color: white;
        }

        .feature-box p {
            font-size: 0.85rem;
            color: #777;
            line-height: 1.6;
            margin-bottom: 0;
        }

        /* --- CALL TO ACTION SECTION --- */
        .cta-big-section {
            padding: 80px 0;
            background: linear-gradient(to bottom, transparent, #0f0f0f);
        }

        .team-member-card {
    position: relative;
    padding: 10px;
    background: linear-gradient(145deg, #111, #050505);
    border: 1px solid #1a1a1a;
    transition: all 0.4s ease;
}

.team-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4; /* Idealny pionowy format portretowy */
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) contrast(110%);
    transition: all 0.5s ease;
}

.team-name-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(197, 160, 89, 0.9);
    color: #000;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    text-align: center;
    padding: 8px 0;
    letter-spacing: 2px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.nav-link-custom {
    color: #fff !important;
    text-decoration: none;
    font-family: 'Cinzel', serif; /* Używamy Cinzel dla luksusowego wyglądu */
    font-size: 0.75rem;
    letter-spacing: 3px;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    padding: 10px 20px;
}

.nav-link-custom:hover {
    color: #c5a059 !important; /* Kolor złoty przy najechaniu */
    text-shadow: 0 0 10px rgba(197, 160, 89, 0.3);
}

/* Zapewnienie, że środek nie nachodzi na boki na małych ekranach */
@media (max-width: 768px) {
    .nav-center-link {
        position: relative !important;
        left: auto !important;
        transform: none !important;
        margin: 0 auto;
    }
}

.team-member-card:hover {
    border-color: #c5a059;
    transform: translateY(-5px);
}

.team-member-card:hover .team-img-wrapper img {
    filter: grayscale(0%) scale(1.05);
}

.team-member-card:hover .team-name-tag {
    transform: translateY(0);
}

@media (max-width: 991px) {
    .team-member-card {
        max-width: 300px;
        margin: 0 auto 30px auto;
    }
}
        .btn-gold-fill {
            background: var(--gold);
            color: black;
            font-family: 'Cinzel', serif;
            font-weight: 700;
            letter-spacing: 3px;
            padding: 20px 50px;
            text-decoration: none;
            display: inline-block;
            transition: var(--transition);
            border: 1px solid var(--gold);
        }

        .btn-gold-fill:hover {
            background: transparent;
            color: var(--gold);
            transform: scale(1.05);
        }

        /* --- SEO CONTENT --- */
        .seo-text-section {
            padding: 40px 0;
            background: #050505;
            color: #444;
            font-size: 0.75rem;
        }

        /* --- FAQ --- */
        .faq-section {
            padding: 80px 0;
        }

        .faq-title {
            font-family: 'Cinzel', serif;
            text-align: center;
            letter-spacing: 6px;
            margin-bottom: 40px;
        }

        .accordion-item { background: transparent; border: none; border-bottom: 1px solid var(--border); }
        .accordion-button { background: transparent; color: #ccc; padding: 25px 10px; font-size: 0.85rem; }
        .accordion-button:not(.collapsed) { background: transparent; color: var(--gold); box-shadow: none; }

        /* --- FOOTER --- */
        .main-footer {
            padding: 60px 0;
            border-top: 1px solid var(--border);
            background: #030303;
            text-align: center;
        }

        .footer-link { color: #555; text-decoration: none; font-size: 0.75rem; margin: 0 15px; letter-spacing: 1px; }

        @media (max-width: 768px) {
            .feature-box { margin-bottom: 20px; }
        }

 
/* --- KONTENER DLA PRZYCISKÓW --- */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

/* --- WSPÓLNY STYL DLA PRZYCISKÓW OKRĄGŁYCH --- */
.order-float, .whatsapp-float {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    position: relative; /* Ważne dla tooltipów */
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Indywidualne kolory */
.order-float {
    background: var(--gold);
    color: var(--black) !important;
    font-size: 24px;
}

.whatsapp-float {
    background: black;
    border: 3px solid  var(--gold);
    color:  var(--gold) !important;
    font-size: 30px;
}

/* Hover efekty */
.order-float:hover {
    transform: scale(1.1) rotate(-10deg);
   
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
  
}

/* Reset stylu przycisku hamburgera, aby nie miał brzydkiej ramki */
.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

/* Luksusowy styl linku poradnika */
.nav-link-custom {
    color: #fff !important;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link-custom:hover {
    color: #c5a059 !important;
}

/* Dostosowanie mobilnego menu (po rozwinięciu) */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(0,0,0,0.95); /* Ciemniejsze tło menu na mobile */
        margin-top: 10px;
        border-radius: 10px;
        padding: 10px;
    }
}

/* --- TOOLTIPY (WSPÓLNE) --- */
.order-tooltip, .whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: rgba(10,10,10,0.9);
    color: var(--gold);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
    border: 1px solid var(--border);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Pokazywanie tooltipów */
.order-float:hover .order-tooltip,
.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

.nav-phone-link {
    color: white;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-phone-link:hover {
    color: var(--gold);
}

.nav-phone-link i {
    font-size: 1.1rem;
    vertical-align: middle;
}

/* Opcjonalnie: lekkie pulsowanie ikonki telefonu, by przyciągnąć wzrok */
.nav-phone-link i {
    animation: phoneShake 5s infinite;
}

@keyframes phoneShake {
    0%, 90%, 100% { transform: rotate(0); }
    92% { transform: rotate(10deg); }
    94% { transform: rotate(-10deg); }
    96% { transform: rotate(10deg); }
    98% { transform: rotate(-10deg); }
}

/* Style dla przycisków w Hero */
.btn-hero-gold {
    background: var(--gold);
    color: black !important;
    padding: 15px 35px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid var(--gold);
}

.btn-hero-gold:hover {
    background: transparent;
    color: var(--gold) !important;
    transform: translateY(-3px);
}

.btn-hero-outline {
    background: transparent;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 15px 35px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-hero-outline:hover {
    border-color: var(--gold);
    color: var(--gold) !important;
    transform: translateY(-3px);
}

/* Responsywność dla mobile (przyciski na całą szerokość) */
@media (max-width: 768px) {
    .btn-hero-gold, .btn-hero-outline {
        width: 100%;
    }
} 

/* --- OFFER TILES --- */
.offer-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #1a1a1a;   
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}
html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid;
    margin-bottom: 20px;
    background: rgba(0,0,0,0.2);
}

.status-open {
    color: white;
    border-color: white;
   
}

.status-closed {
    color: white;
    border-color: white;
}
/* Zabezpieczenie dla kontenerów Bootstrapa, które czasem 
   generują ujemne marginesy (row) */
.container, .container-fluid {
    overflow: hidden;
}

/* Jeśli używasz AOS na całych wierszach (row), 
   to one najczęściej powodują problem */
.row {
    --bs-gutter-x: 1.5rem;
    margin-right: 0;
    margin-left: 0;
}
.offer-card:hover {
    background: rgba(197, 160, 89, 0.05);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.offer-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 25px;
    display: inline-block;
    transition: var(--transition);
}

.offer-card:hover .offer-icon {
    transform: scale(1.1);
}

.offer-card h4 {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: white;
}

.offer-card p {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Ozdobny pasek na górze każdego kafelka */
.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.offer-card:hover::before {
    width: 100%;
}


    #map-container {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

#contact-map {
    height: 450px;
    width: 100%;
    /* filter: invert... <- TO USUŃ */
    background: #0a0a0a; /* Tło ładowania */
}

.map-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid var(--gold);
    padding: 25px;
    width: 280px;
}

.btn-outline-gold {
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 2px;
    border-radius: 0;
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: black;
}

/* Stylizacja popupu mapy (żeby pasował do strony) */
.leaflet-popup-content-wrapper {
    background: var(--black) !important;
    color: white !important;
    border: 1px solid var(--gold);
    border-radius: 0 !important;
}
.leaflet-popup-tip {
    background: var(--gold) !important;
}

/* Style specjalnie dla złotego paska */
.cta-full-gold {
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    z-index: 10;
}

.btn-black-cta {
    background: #000;
    color: var(--gold) !important;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #000;
}

.btn-black-cta:hover {
    background: transparent;
    color: #000 !important;
    transform: translateY(-2px);
}

.btn-black-outline {
    background: transparent;
    color: #000 !important;
    border: 2px solid #000;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-black-outline:hover {
    background: #000;
    color: var(--gold) !important;
    transform: translateY(-2px);
}

/* Responsywność dla mniejszych ekranów */
@media (max-width: 768px) {
    .cta-full-gold h3 {
        text-align: center;
        font-size: 1rem;
    }
}