:root {
    --bg-dark: #0f0f0f;
    --bg-light-dark: #1a1a1a;
    --accent-gold: #d4af37;
    --accent-hover: #b5952f;
    --text-main: #f5f5f5;
    --text-muted: #a3a3a3;
    --border-color: #2a2a2a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    padding-top: 80px;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* =========================================
   ANIMACJE (Intersection Observer)
========================================= */
.reveal {
    opacity: 0;
    transition: all 1s cubic-bezier(0.5, 0, 0, 1); /* Bardzo gładkie, eleganckie przejście */
}

.reveal.active {
    opacity: 1;
    transform: translate(0, 0);
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

/* =========================================
   NAWIGACJA
========================================= */
.header {
    background-color: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 2rem;
    letter-spacing: 2px;
    color: var(--text-main);
}

.logo span {
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-links a.btn::after {
    display: none;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-gold);
}

/* =========================================
   PRZYCISKI
========================================= */
.btn {
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    border: 1px solid var(--accent-gold);
    transition: all 0.4s ease;
    cursor: pointer;
}

.btn:hover {
    background-color: transparent;
    color: var(--accent-gold);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-gold);
}

.btn-outline:hover {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
}

/* =========================================
   SEKCJE BAZOWE
========================================= */
.section {
    padding: 120px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.bg-alt {
    background-color: var(--bg-light-dark);
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.bg-alt .testimonials-grid {
    max-width: 1160px;
    margin: 50px auto 0;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 60px;
    font-style: italic;
    font-size: 1.1rem;
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
    height: 85vh;
    background: linear-gradient(rgba(15, 15, 15, 0.75), rgba(15, 15, 15, 0.95)), url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -80px; 
    padding-top: 80px;
    position: relative;
}

.hero-content {
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    letter-spacing: 4px;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* =========================================
   SEKCJA O NAS
========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-box {
    position: relative;
}

.about-img-box::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background-color: var(--accent-gold); /* Zmiana z obramowania na pełne tło */
    z-index: -1;
}

.about-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #fff;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

/* =========================================
   ZESPÓŁ
========================================= */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: center;
    overflow: hidden;
    cursor: pointer;
}

.team-member img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border: 1px solid var(--border-color);
    transition: transform 0.7s ease, border-color 0.3s ease, filter 0.5s ease;
    filter: grayscale(100%) contrast(1.1);
}

.team-member:hover img {
    transform: scale(1.05);
    border-color: var(--accent-gold);
    filter: grayscale(0%) contrast(1); 
}

.team-info {
    padding: 25px 0;
    transition: transform 0.3s ease;
}

.team-member:hover .team-info {
    transform: translateY(-5px);
}

.team-info h3 {
    color: var(--text-main);
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.team-info p {
    color: var(--accent-gold);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 600;
}

/* =========================================
   OPINIE
========================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-dark);
    padding: 50px 40px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.stars {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 25px;
    letter-spacing: 5px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 35px;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.testimonial-author {
    font-family: 'Playfair Display', serif;
    color: var(--text-main);
    font-weight: 700;
    font-size: 1.2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

/* =========================================
   STOPKA
========================================= */
/* =========================================
   STOPKA (ROZBUDOWANA)
========================================= */
.footer-complex {
    background-color: var(--bg-light-dark); 
    border-top: 1px solid var(--border-color);
    padding: 80px 20px 20px;
    color: var(--text-muted);
    font-family: 'Montserrat', sans-serif;
}

.footer-main-grid {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.3fr 1.5fr;
    gap: 45px;
    margin-bottom: 60px;
}

/* Nagłówki sekcji stopki */
.f-heading {
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

/* Kolumna 1: Brand */
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 2px;
}
.footer-logo span { color: var(--accent-gold); }

.f-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 90%;
}

.btn-glow {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
    color: var(--bg-dark);
}

/* Kolumna 2: Nawigacja */
.f-links { list-style: none; }
.f-links li { margin-bottom: 16px; }
.f-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}
.f-links a::before {
    content: '›';
    color: var(--accent-gold);
    margin-right: 12px;
    font-size: 1.4rem;
    line-height: 1;
    transition: transform 0.3s ease;
}
.f-links a:hover { color: var(--accent-gold); }
.f-links a:hover::before { transform: translateX(5px); }

/* Kolumna 3: Kontakt */
.f-contact-list { list-style: none; }
.f-contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 28px;
    font-size: 0.9rem;
}
.f-icon {
    width: 22px;
    height: 22px;
    fill: var(--accent-gold);
    margin-right: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}
.f-contact-list li div strong {
    display: block;
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 0.95rem;
}
.f-contact-list li div span { font-size: 0.85rem; }

/* Kolumna 4: Godziny i Box */
.f-hours-list {
    list-style: none;
    margin-bottom: 35px;
    font-size: 0.9rem;
}
.f-hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
}
.f-hours-list li:last-child { border-bottom: none; }
.f-hours-list li span:last-child {
    color: var(--text-main);
    font-weight: 600;
}

.f-question-box {
    background-color: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 25px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    transition: border-color 0.3s ease;
}
.f-question-box:hover { border-color: var(--accent-gold); }
.f-q-icon {
    width: 28px;
    height: 28px;
    fill: var(--accent-gold);
    margin-right: 18px;
    flex-shrink: 0;
}
.f-q-text strong {
    display: block;
    color: var(--accent-gold);
    font-size: 1rem;
    margin-bottom: 4px;
}
.f-q-text span { 
    font-size: 0.85rem; 
    display: block;
    line-height: 1.4;
}

/* Social Media Section */
.f-social-section {
    max-width: 1250px;
    margin: 0 auto 40px;
    text-align: center;
    position: relative;
}
.f-social-title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}
.f-social-title::before, .f-social-title::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0 30px;
}
.f-social-title span {
    color: var(--text-main);
    font-family: 'Playfair Display', serif;
    letter-spacing: 3px;
    font-size: 1rem;
}
.f-social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.f-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--text-main);
    transition: all 0.3s ease;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}
.f-social-icons a:hover {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

/* Pasek Dolny */
.f-bottom-bar {
    max-width: 1250px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}
.f-mini-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--text-main);
    font-weight: 700;
    letter-spacing: 2px;
}
.f-mini-logo span { color: var(--accent-gold); }
.f-legal a {
    margin-left: 12px;
    margin-right: 12px;
    transition: color 0.3s;
}
.f-legal a:hover { color: var(--accent-gold); }

/* Responsywność Stopki */
@media (max-width: 1100px) {
    .footer-main-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .footer-main-grid { grid-template-columns: 1fr; gap: 50px; }
    .f-social-title::before, .f-social-title::after { display: none; }
    .f-bottom-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .f-legal { margin-top: 10px; }
    .f-mini-logo { order: -1; margin-bottom: 15px; }
}
/* =========================================
   GALERIA
========================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    aspect-ratio: 4 / 5;
    cursor: pointer;
    background-color: var(--bg-light-dark);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: grayscale(60%) contrast(1.1);
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: grayscale(0%) contrast(1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    transition: border-color 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.gallery-item:hover::after {
    border-color: var(--accent-gold);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
}
/* =========================================
   ZMIENNE KOLORYSTYCZNE
========================================= */
:root {
    --bg-dark: #0f0f0f;
    --bg-light-dark: #1a1a1a;
    --accent-gold: #d4af37;
    --text-main: #f5f5f5;
    --text-muted: #a3a3a3;
    --border-color: #2a2a2a;
}

/* =========================================
   RESETA I BAZA
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    padding-top: 80px;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* =========================================
   ANIMACJE (Intersection Observer)
========================================= */
.reveal {
    opacity: 0;
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translate(0, 0);
}

.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

/* =========================================
   NAWIGACJA
========================================= */
.header {
    background-color: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 2rem;
    letter-spacing: 2px;
    color: var(--text-main);
}

.logo span { color: var(--accent-gold); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-links a.btn::after { display: none; }
.nav-links a:hover, .nav-links a.active { color: var(--accent-gold); }

/* =========================================
   PRZYCISKI
========================================= */
.btn {
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    border: 1px solid var(--accent-gold);
    transition: all 0.4s ease;
    cursor: pointer;
}

.btn:hover {
    background-color: transparent;
    color: var(--accent-gold);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-gold);
}

.btn-outline:hover {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
}

.btn-glow {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
    color: var(--bg-dark);
}

/* =========================================
   SEKCJE BAZOWE
========================================= */
.section {
    padding: 120px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.bg-alt {
    background-color: var(--bg-light-dark);
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.bg-alt .testimonials-grid {
    max-width: 1160px;
    margin: 50px auto 0;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 60px;
    font-style: italic;
    font-size: 1.1rem;
}

.text-center { text-align: center; }

/* =========================================
   HERO SECTION (Strona główna)
========================================= */
.hero {
    height: 85vh;
    background: linear-gradient(rgba(15, 15, 15, 0.75), rgba(15, 15, 15, 0.95)), url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -80px; 
    padding-top: 80px;
}

.hero-content { padding: 0 20px; }

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    letter-spacing: 4px;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* =========================================
   SEKCJA O NAS
========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-box { position: relative; }

.about-img-box::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background-color: var(--accent-gold); /* Wypełnienie zamiast ramki */
    z-index: -1;
}

.about-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #fff;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

/* =========================================
   ZESPÓŁ
========================================= */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: center;
    overflow: hidden;
    cursor: pointer;
}

.team-member img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border: 1px solid var(--border-color);
    transition: transform 0.7s ease, border-color 0.3s ease, filter 0.5s ease;
    filter: grayscale(100%) contrast(1.1);
}

.team-member:hover img {
    transform: scale(1.05);
    border-color: var(--accent-gold);
    filter: grayscale(0%) contrast(1); 
}

.team-info {
    padding: 25px 0;
    transition: transform 0.3s ease;
}

.team-member:hover .team-info { transform: translateY(-5px); }

.team-info h3 {
    color: var(--text-main);
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.team-info p {
    color: var(--accent-gold);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 600;
}

/* =========================================
   GALERIA
========================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    aspect-ratio: 4 / 5;
    cursor: pointer;
    background-color: var(--bg-light-dark);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: grayscale(60%) contrast(1.1);
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: grayscale(0%) contrast(1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    transition: border-color 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.gallery-item:hover::after { border-color: var(--accent-gold); }

/* =========================================
   OPINIE
========================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-dark);
    padding: 50px 40px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.stars {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 25px;
    letter-spacing: 5px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 35px;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.testimonial-author {
    font-family: 'Playfair Display', serif;
    color: var(--text-main);
    font-weight: 700;
    font-size: 1.2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

/* =========================================
   NOWY CENNIK (cennik.html)
========================================= */
.pricing-hero {
    background: linear-gradient(rgba(15, 15, 15, 0.8), rgba(15, 15, 15, 0.95)), url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    padding: 180px 20px 100px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.pricing-hero h1 {
    font-size: 3.5rem;
    color: var(--accent-gold);
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.pricing-hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-style: italic;
}

.pricing-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-category {
    background-color: var(--bg-light-dark);
    padding: 40px 50px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-category:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.category-title {
    font-size: 2.2rem;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--accent-gold);
}

.p-item { margin-bottom: 30px; }
.p-item:last-child { margin-bottom: 0; }

.p-header {
    display: flex;
    align-items: baseline;
    margin-bottom: 8px;
}

.p-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main);
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

.p-dots {
    flex-grow: 1;
    border-bottom: 2px dotted rgba(255, 255, 255, 0.15);
    margin: 0 15px;
    position: relative;
    top: -6px;
}

.p-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
}

.p-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 85%;
}

/* =========================================
   STOPKA (ROZBUDOWANA)
========================================= */
.footer-complex {
    background-color: var(--bg-light-dark); 
    border-top: 1px solid var(--border-color);
    padding: 80px 20px 20px;
    color: var(--text-muted);
    font-family: 'Montserrat', sans-serif;
}

.footer-main-grid {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.3fr 1.5fr;
    gap: 45px;
    margin-bottom: 60px;
}

.f-heading {
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 2px;
}
.footer-logo span { color: var(--accent-gold); }

.f-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 90%;
}

.f-links { list-style: none; }
.f-links li { margin-bottom: 16px; }
.f-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}
.f-links a::before {
    content: '›';
    color: var(--accent-gold);
    margin-right: 12px;
    font-size: 1.4rem;
    line-height: 1;
    transition: transform 0.3s ease;
}
.f-links a:hover { color: var(--accent-gold); }
.f-links a:hover::before { transform: translateX(5px); }

.f-contact-list { list-style: none; }
.f-contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 28px;
    font-size: 0.9rem;
}
.f-icon {
    width: 22px;
    height: 22px;
    fill: var(--accent-gold);
    margin-right: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}
.f-contact-list li div strong {
    display: block;
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 0.95rem;
}
.f-contact-list li div span { font-size: 0.85rem; }

.f-hours-list {
    list-style: none;
    margin-bottom: 35px;
    font-size: 0.9rem;
}
.f-hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
}
.f-hours-list li:last-child { border-bottom: none; }
.f-hours-list li span:last-child {
    color: var(--text-main);
    font-weight: 600;
}

.f-question-box {
    background-color: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 25px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    transition: border-color 0.3s ease;
}
.f-question-box:hover { border-color: var(--accent-gold); }
.f-q-icon {
    width: 28px;
    height: 28px;
    fill: var(--accent-gold);
    margin-right: 18px;
    flex-shrink: 0;
}
.f-q-text strong {
    display: block;
    color: var(--accent-gold);
    font-size: 1rem;
    margin-bottom: 4px;
}
.f-q-text span { 
    font-size: 0.85rem; 
    display: block;
    line-height: 1.4;
}

.f-social-section {
    max-width: 1250px;
    margin: 0 auto 40px;
    text-align: center;
    position: relative;
}
.f-social-title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}
.f-social-title::before, .f-social-title::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0 30px;
}
.f-social-title span {
    color: var(--text-main);
    font-family: 'Playfair Display', serif;
    letter-spacing: 3px;
    font-size: 1rem;
}
.f-social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.f-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--text-main);
    transition: all 0.3s ease;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}
.f-social-icons a:hover {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.f-bottom-bar {
    max-width: 1250px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}
.f-mini-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--text-main);
    font-weight: 700;
    letter-spacing: 2px;
}
.f-mini-logo span { color: var(--accent-gold); }
.f-legal a {
    margin-left: 12px;
    margin-right: 12px;
    transition: color 0.3s;
}
.f-legal a:hover { color: var(--accent-gold); }


/* =========================================
   MEDIA QUERIES (RESPONSYWNOŚĆ)
========================================= */
@media (max-width: 1100px) {
    .footer-main-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-img-box::before { display: none; }
    .about-img { height: 400px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-content h1 { font-size: 2.8rem; }
    .section { padding: 80px 20px; }
    .section-title { font-size: 2.2rem; }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .pricing-hero h1 { font-size: 2.5rem; }
    .pricing-category { padding: 30px 20px; }
    .p-header { flex-direction: column; align-items: flex-start; }
    .p-dots { display: none; }
    .p-price { margin-top: 5px; color: var(--accent-gold); }
    .p-desc { max-width: 100%; margin-top: 5px; }
    
    .footer-main-grid { grid-template-columns: 1fr; gap: 50px; }
    .f-social-title::before, .f-social-title::after { display: none; }
    .f-bottom-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .f-legal { margin-top: 10px; }
    .f-mini-logo { order: -1; margin-bottom: 15px; }
}
/* =========================================
   STRONA NASZ ZESPÓŁ (zespol.html)
========================================= */
.team-hero {
    background: linear-gradient(rgba(15, 15, 15, 0.8), rgba(15, 15, 15, 0.95)), url('https://images.unsplash.com/photo-1593702275687-f8b402bf1fb5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    padding: 180px 20px 100px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.team-hero h1 {
    font-size: 3.5rem;
    color: var(--accent-gold);
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.team-hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-style: italic;
}

.team-showcase-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

.team-row:last-child {
    margin-bottom: 0;
}

/* Klasa dla odwróconego wiersza (Zdjęcie po prawej) */
.team-row.reverse {
    flex-direction: row-reverse;
}

.team-photo-wrapper {
    flex: 1;
    position: relative;
}

/* Ozdobna, animowana ramka za zdjęciem */
.team-photo-wrapper::before {
    content: '';
    position: absolute;
    top: 25px;
    left: -25px;
    width: 100%;
    height: 100%;
    background-color: var(--accent-gold);
    z-index: -1;
    transition: all 0.5s ease;
}

/* W odwróconym wierszu ramka jest z drugiej strony */
.team-row.reverse .team-photo-wrapper::before {
    left: 25px;
}

.team-photo-wrapper img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    filter: grayscale(80%) contrast(1.1);
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Efekty po najechaniu myszką */
.team-row:hover .team-photo-wrapper img {
    filter: grayscale(0%) contrast(1);
    transform: translateY(-5px);
}

.team-row:hover .team-photo-wrapper::before {
    transform: translate(15px, -15px);
    background-color: rgba(212, 175, 55, 0.05); /* Delikatne złote tło pojawia się w ramce */
}

.team-row.reverse:hover .team-photo-wrapper::before {
    transform: translate(-15px, -15px);
}

.team-bio {
    flex: 1;
}

.team-bio h2 {
    font-size: 3.5rem;
    color: var(--text-main);
    margin-bottom: 5px;
}

.team-bio h4 {
    color: var(--accent-gold);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.team-bio p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Responsywność dla strony zespołu */
@media (max-width: 992px) {
    .team-row, .team-row.reverse {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 80px;
        text-align: center;
    }
    .team-photo-wrapper { width: 100%; }
    .team-photo-wrapper::before { display: none; /* Ukrywamy ramkę na małych ekranach */ }
    .team-photo-wrapper img { height: 400px; }
}

@media (max-width: 768px) {
    .team-hero h1 { font-size: 2.5rem; }
    .team-bio h2 { font-size: 2.8rem; }
}
/* =========================================
   STRONA GALERIA (galeria.html) & LIGHTBOX
========================================= */
.gallery-page-hero {
    background: linear-gradient(rgba(15, 15, 15, 0.7), rgba(15, 15, 15, 0.95)), url('https://images.unsplash.com/photo-1593702275687-f8b402bf1fb5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    padding: 180px 20px 100px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.gallery-page-hero h1 {
    font-size: 3.5rem;
    color: var(--accent-gold);
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.gallery-page-hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-style: italic;
}

/* Ukrywanie początkowych zdjęć */
.hidden-gallery-item {
    display: none !important;
}

/* LIGHTBOX (Tło i zachowanie) */
.lightbox {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 9999;
    padding: 50px 20px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

/* Obraz w Lightboxie */
.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 0 40px rgba(0,0,0,0.8);
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Przycisk zamykania (X) */
.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: var(--text-main);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--accent-gold);
}

/* Strzałki Nawigacyjne (Lewo/Prawo) */
.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: var(--text-main);
    font-weight: bold;
    font-size: 30px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    border-radius: 4px;
    user-select: none;
    z-index: 10000;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

@media (max-width: 768px) {
    .gallery-page-hero h1 { font-size: 2.5rem; }
    .lightbox-prev, .lightbox-next {
        font-size: 20px;
        padding: 12px;
    }
}
/* =========================================
   STRONA KONTAKT (kontakt.html)
========================================= */
.contact-hero {
    background: linear-gradient(rgba(15, 15, 15, 0.8), rgba(15, 15, 15, 0.95)), url('https://images.unsplash.com/photo-1512496015851-a1faabcb3135?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    padding: 180px 20px 100px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.contact-hero h1 {
    font-size: 3.5rem;
    color: var(--accent-gold);
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.contact-hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-style: italic;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background-color: var(--bg-light-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    overflow: hidden;
}

/* Lewa strona - Informacje */
.contact-info {
    padding: 60px 50px;
}

.c-heading {
    font-size: 2.2rem;
    color: var(--text-main);
    margin-bottom: 5px;
}

.c-sub {
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.c-details-list {
    list-style: none;
    margin-bottom: 40px;
}

.c-details-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.c-icon {
    width: 28px;
    height: 28px;
    fill: var(--accent-gold);
    margin-right: 20px;
    flex-shrink: 0;
    margin-top: 5px;
}

.c-details-list li div strong {
    display: block;
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.c-details-list li div span {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.c-hours-heading {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.c-hours {
    list-style: none;
}

.c-hours li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.15);
    color: var(--text-muted);
}

.c-hours li span:last-child {
    color: var(--accent-gold);
    font-weight: 600;
}

/* Prawa strona - Mapa */
.contact-map {
    width: 100%;
    height: 100%;
    min-height: 500px;
    position: relative;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    /* Stylizacja mapy na ciemno-złotą */
    filter: grayscale(100%) invert(90%) contrast(80%);
    transition: filter 0.5s ease;
}

/* Kiedy najedziesz myszką na mapę, odzyskuje kolory */
.contact-map:hover iframe {
    filter: grayscale(0%) invert(0%) contrast(100%);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-map {
        min-height: 400px;
    }
    .contact-info {
        padding: 40px 30px;
    }
}
/* =========================================
   HAMBURGER MENU I RESPONSYWNOŚĆ
========================================= */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001; 
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: var(--text-main);
    transition: all 0.3s ease;
    border-radius: 2px;
}

@media (max-width: 1100px) {
    .footer-main-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-img-box::before { display: none; }
    .about-img { height: 400px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    
    /* Kontakt */
    .contact-grid { grid-template-columns: 1fr; }
    .contact-map { min-height: 400px; }
    .contact-info { padding: 40px 30px; }

    /* HAMBURGER MENU - KULOODPORNE */
    .hamburger { display: flex; }
    
    .nav-links {
        display: flex !important; /* Wymusza widoczność, niszczy błędy z ukrywaniem */
        position: fixed;
        top: 0;
        right: -100%; 
        width: 100%;
        height: 100vh;
        background-color: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        z-index: 1000;
    }
    
    .nav-links.active { right: 0; }
    .nav-links li { margin: 15px 0; }
    .nav-links a { font-size: 1.3rem; }
    
    .hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); background-color: var(--accent-gold); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); background-color: var(--accent-gold); }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.8rem; }
    .section { padding: 80px 20px; }
    .section-title { font-size: 2.2rem; }
    
    .gallery-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; }
    
    .pricing-hero h1 { font-size: 2.5rem; }
    .pricing-category { padding: 30px 20px; }
    .p-header { flex-direction: column; align-items: flex-start; }
    .p-dots { display: none; }
    .p-price { margin-top: 5px; color: var(--accent-gold); }
    .p-desc { max-width: 100%; margin-top: 5px; }
    
    .footer-main-grid { grid-template-columns: 1fr; gap: 50px; }
    .f-social-title::before, .f-social-title::after { display: none; }
    .f-bottom-bar { flex-direction: column; gap: 20px; text-align: center; }
    .f-legal { margin-top: 10px; }
    .f-mini-logo { order: -1; margin-bottom: 15px; }
}
/* =========================================
   WYSKAKUJĄCE OKIENKO (MODAL REZERWACJI)
========================================= */
.booking-modal {
    display: none; /* Domyślnie ukryte */
    position: fixed;
    z-index: 99999; /* Zawsze na samym wierzchu */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Ciemne, półprzezroczyste tło */
    backdrop-filter: blur(8px); /* Rozmycie tła strony */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-modal.active {
    display: flex;
    opacity: 1;
}

.booking-modal-content {
    background-color: var(--bg-light-dark);
    border: 1px solid var(--accent-gold);
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: translateY(-30px);
    transition: transform 0.3s ease;
    box-shadow: 0 15px 50px rgba(0,0,0,0.7);
}

.booking-modal.active .booking-modal-content {
    transform: translateY(0);
}

.booking-modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 35px;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.booking-modal-close:hover {
    color: var(--accent-gold);
}

.booking-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.booking-option {
    display: block;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.booking-option:hover {
    border-color: var(--accent-gold);
    background-color: #111;
    transform: scale(1.02);
}

.booking-option strong {
    display: block;
    color: var(--text-main);
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.booking-option span {
    color: var(--text-muted);
    font-size: 0.9rem;
}