/* RESET I PODSTAWY */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #4b5320; /* Olive Drab */
    --secondary-color: #8b7355; /* Earthy Brown */
    --accent-color: #d4af37; /* Gold/Brass */
    --dark-bg: #1a1a1a; /* Dark Graphite */
    --light-bg: #f4f1ea; /* Off-white/Beige */
    --text-dark: #2c2c2c;
    --text-light: #f4f4f4;
    --transition: all 0.3s ease;
    --green-accent: #5a7d2a;
    --danger: #c0392b;
    --danger-hover: #a93226;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
}

h1, h2, h3, h4 {
    font-family: 'Oswald', 'Segoe UI', sans-serif;
}

h1, h2, h3 {
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul { list-style: none; }

img { max-width: 100%; display: block; }

/* LAYOUT */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section { padding: 80px 0; }

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary { background: var(--primary-color); color: white; }
.btn-primary:hover { background: #3a4018; transform: translateY(-2px); }

.btn-accent { background: var(--accent-color); color: var(--dark-bg); font-weight: bold; }
.btn-accent:hover { background: #c4a030; transform: translateY(-2px); }

.btn-outline { border: 2px solid var(--primary-color); color: var(--primary-color); background: transparent; }
.btn-outline:hover { background: var(--primary-color); color: white; }

.btn-large { padding: 16px 40px; font-size: 1.1rem; }

/* NAVBAR */
header {
    background: var(--dark-bg);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img { height: 45px; width: auto; }

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    color: #e0e0e0;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active,
.nav-links .dropdown.active > a {
    color: var(--accent-color);
}

/* Dropdown Navigation */
.nav-links .dropdown {
    position: relative;
}

.nav-links .dropdown > a {
    cursor: pointer;
}

.nav-links .dropdown > a::after {
    content: ' ▾';
    font-size: 0.7rem;
}

.nav-links .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-bg);
    min-width: 240px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    z-index: 1001;
    padding: 10px 0;
    border-top: 3px solid var(--accent-color);
}

.nav-links .dropdown-menu li {
    display: block;
}

.nav-links .dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #ccc;
    white-space: nowrap;
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-links .dropdown-menu a:hover {
    background: rgba(212,175,55,0.15);
    color: var(--accent-color);
}

.nav-links .dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.2s ease;
}

/* Navbar CTA Button */
.nav-links .btn-nav {
    background: var(--accent-color) !important;
    color: var(--dark-bg) !important;
    padding: 10px 22px !important;
    border-radius: 4px;
    font-weight: bold;
    transition: var(--transition);
}

.nav-links .btn-nav:hover {
    background: #c4a030 !important;
    transform: translateY(-2px);
    color: var(--dark-bg) !important;
}

.hamburger { display: none; cursor: pointer; font-size: 1.8rem; }

/* HERO SECTION */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1533240332313-0db49b459ad6?auto=format&fit=crop&q=80&w=1600') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero h1 { font-size: 3.5rem; margin-bottom: 20px; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; max-width: 700px; }
.hero-btns { display: flex; gap: 20px; justify-content: center; align-items: center; flex-wrap: wrap; }

/* Hero inner page style */
.hero-sm {
    height: 40vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1473448912268-2022ce9509d8?auto=format&fit=crop&q=80&w=1600') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-sm h1 { font-size: 2.5rem; }

/* GRID SYSTEM */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); }

.card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover { transform: translateY(-8px); box-shadow: 0 14px 32px rgba(0,0,0,0.15); }

.card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease;
}

.card:hover i {
    transform: scale(1.2) rotate(-5deg);
    color: var(--accent-color);
}

.card h3 {
    transition: color 0.3s ease;
}

.card:hover h3 {
    color: var(--accent-color);
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

.card.animate-float {
    animation: cardFloat 3s ease-in-out infinite;
}

/* SECTION HEADERS */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--secondary-color);
    max-width: 700px;
    margin: 0 auto;
}

/* BACKGROUND VARIANTS */
.bg-light { background-color: #f9f7f2; }
.bg-warm { background-color: #e9e4d9; }
.bg-beige { background-color: #f4f1ea; }
.bg-white { background: white; }

/* ACCORDION */
.accordion-item {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.accordion-item:hover {
    transform: scale(1.01);
}

.accordion-header {
    padding: 25px;
    background: white;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-item.active .accordion-header {
    background: var(--primary-color);
    color: white;
}

.accordion-content {
    background: #fff;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 25px;
}

/* FORMULARZ */
form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.form-group { margin-bottom: 20px; }
label { display: block; margin-bottom: 5px; font-weight: bold; }
input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(75,83,32,0.15);
}

/* ============================================ */
/* NOWE SEKCJE — Testimonials, Counters, Video   */
/* ============================================ */

/* ----- TESTIMONIALS / OPINIE ----- */
.testimonials-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    position: relative;
    border-left: 4px solid var(--accent-color);
}

.testimonial-card blockquote {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

.testimonial-card .author {
    color: var(--primary-color);
    font-weight: bold;
}

.testimonial-card .author-role {
    font-size: 0.85rem;
    color: #999;
}

/* ----- COUNTERS / STATYSTYKI ----- */
.counters-section {
    background: var(--primary-color);
    color: white;
    padding: 60px 0;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.counter-item .counter-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-color);
    display: block;
}

.counter-item .counter-label {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* ----- CTA SECTION ----- */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), #2d3320);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ----- FEATURE LIST (dla-rodzicow.html, dla-sponsorow.html) ----- */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid #e0ddd4;
}

.feature-list li:last-child { border-bottom: none; }

.feature-list li i {
    color: var(--green-accent);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.feature-list li .feature-text strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 2px;
}

.feature-list li .feature-text span {
    color: #777;
    font-size: 0.9rem;
}

/* ----- SPONSOR PACKAGES ----- */
.sponsor-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.package-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    border: 2px solid transparent;
}

.package-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.package-card.featured {
    border-color: var(--accent-color);
    position: relative;
}

.package-card.featured::before {
    content: 'Polecany';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--dark-bg);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.package-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.package-card .package-price {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 20px;
}

.package-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
}

.package-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.package-card ul li::before {
    content: '✓ ';
    color: var(--green-accent);
    font-weight: bold;
}

/* ----- INTERACTIVE MAP ----- */
.map-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.map-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.map-sidebar {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.map-sidebar h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.team-list-item {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    background: #f9f7f2;
}

.team-list-item:hover,
.team-list-item.active {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.team-list-item h4 { color: var(--primary-color); margin-bottom: 4px; }
.team-list-item p { font-size: 0.9rem; color: #777; margin-bottom: 4px; }

/* ----- PROCESS STEPS ----- */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    counter-reset: step;
}

.step-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    counter-increment: step;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.step-card::before {
    content: counter(step);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-card h4 {
    color: var(--primary-color);
    margin-top: 10px;
    margin-bottom: 10px;
}

/* ----- QUOTES / CALL-OUT BOX ----- */
.callout-box {
    background: white;
    border-left: 5px solid var(--accent-color);
    padding: 25px 30px;
    border-radius: 0 8px 8px 0;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.callout-box p {
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
}

/* ----- BREADCRUMBS ----- */
.breadcrumbs {
    padding: 15px 0;
    font-size: 0.9rem;
    color: #999;
}

.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: underline;
}

.breadcrumbs a:hover { color: var(--accent-color); }

.breadcrumbs span {
    margin: 0 8px;
}

/* FOOTER */
footer {
    background: var(--dark-bg);
    color: white;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-links a { display: block; margin-bottom: 10px; color: #bbb; }
.footer-links a:hover { color: var(--accent-color); }

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #777;
}

.copyright a { color: #999; }
.copyright a:hover { color: var(--accent-color); }

/* Hero Outline Button Fix */
.hero .btn-outline,
.hero-sm .btn-outline {
    border: 2px solid white !important;
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.hero .btn-outline:hover,
.hero-sm .btn-outline:hover {
    background: white !important;
    color: var(--dark-bg) !important;
}

/* ============================================ */
/* GALERIA ZDJĘĆ                                */
/* ============================================ */

.gallery-section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; }

.filters-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    border: none;
    background-color: white;
    color: var(--primary-color);
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.filter-btn:hover { transform: translateY(-3px); color: white; background-color: var(--primary-color); }

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 10px rgba(75, 83, 32, 0.4);
}

.gallery-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.gallery-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 125px; /* height of half an item (250px / 2 = 125px) to fade it out completely */
    background: linear-gradient(to bottom, rgba(244, 241, 234, 0), rgba(244, 241, 234, 1));
    pointer-events: none;
    z-index: 10;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-y: auto;
    overflow-x: hidden;
    gap: 20px;
    height: 665px; /* 2.5 * 250px (item height) + 2 * 20px (gap) = 665px */
    padding-bottom: 20px;
    padding-right: 5px; /* space for scrollbar */
    /* scroll snap dla płynnego zatrzymywania */
    scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch;
    /* scrollbar pionowy */
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(244, 241, 234, 0.5);
}

.gallery-grid::-webkit-scrollbar {
    width: 6px;
}
.gallery-grid::-webkit-scrollbar-track {
    background: rgba(244, 241, 234, 0.5);
    border-radius: 4px;
}
.gallery-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}
.gallery-grid::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

.gallery-item {
    height: 250px; /* height is exactly 250px */
    width: 100%;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    background: #e0ddd4;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s ease;
    will-change: transform, opacity;
}

.gallery-item.visible { opacity: 1; transform: translateY(0); }

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 16 / 9;
}

.gallery-item:hover img { transform: scale(1.08); }

.item-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(75,83,32,0.9), transparent);
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .item-overlay { transform: translateY(0); }

.item-category { font-size: 0.8rem; text-transform: uppercase; color: var(--accent-color); letter-spacing: 1px; margin-bottom: 5px; display: block;}
.item-title { font-weight: bold; font-size: 1.1rem; }

/* LIGHTBOX */
.lightbox {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(26, 26, 26, 0.95);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox.active { display: flex; animation: fadeIn 0.3s ease; }

.lightbox-img-container { max-width: 90%; max-height: 80vh; position: relative; }

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.lightbox-caption { color: white; margin-top: 15px; font-size: 1.2rem; text-align: center; }

.lb-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    padding: 20px;
    transition: color 0.3s;
}

.lb-btn:hover { color: var(--accent-color); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

.lb-close {
    position: absolute;
    top: 30px; right: 40px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    z-index: 2001;
}
.lb-close:hover { color: var(--accent-color); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ============================================ */
/* KLASY SEMANTYCZNE SEKCJI (zamiast inline)    */
/* ============================================ */

.section-light { background-color: #f9f7f2; padding: 80px 0; }
.section-warm  { background-color: #e9e4d9; padding: 80px 0; }
.section-dark  { background-color: #261f17; color: white; padding: 80px 0; }
.text-center   { text-align: center; }

/* ============================================ */
/* AWATARY W TESTIMONIALACH                      */
/* ============================================ */

.testimonial-head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.testimonial-avatar {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.testimonial-head .author { margin-bottom: 0; }

/* ============================================ */
/* IKONY W LICZNIKACH                            */
/* ============================================ */

.counter-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 12px;
    display: block;
    opacity: 0.9;
}

.counter-item .counter-sub {
    display: block;
    font-size: 0.8rem;
    opacity: 0.75;
    margin-top: 4px;
    text-transform: none;
    letter-spacing: 0;
}

/* ============================================ */
/* PRZYCISK "ZAŁADUJ WIĘCEJ" (galeria)          */
/* ============================================ */

.load-more-wrap {
    text-align: center;
    margin-top: 40px;
}

/* ============================================ */
/* DROGA DO HRP — TIMELINE                       */
/* ============================================ */

.timeline-section {
    background: var(--dark-bg);
    color: white;
    padding: 90px 0;
}

.timeline-section .section-header h2 { color: white; }
.timeline-section .section-header p  { color: #bbb; }

.timeline {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-color), rgba(212,175,55,0.2));
}

.timeline-step {
    position: relative;
    padding-bottom: 45px;
}

.timeline-step:last-child { padding-bottom: 0; }

.timeline-step::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-color);
    border: 3px solid var(--dark-bg);
    box-shadow: 0 0 0 2px var(--accent-color);
    transition: transform 0.3s ease;
}

.timeline-step:hover::before { transform: scale(1.25); }

.timeline-step h3 {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.timeline-step .step-tag {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--dark-bg);
    background: var(--accent-color);
    padding: 2px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.timeline-step p {
    color: #ccc;
    line-height: 1.7;
    max-width: 560px;
}

/* ============================================ */
/* SCROLL-TO-TOP BUTTON                          */
/* ============================================ */

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
    z-index: 1500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--accent-color);
    color: var(--dark-bg);
}

/* ============================================ */
/* RESPONSIVITY                                 */
/* ============================================ */

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--dark-bg);
        padding: 20px;
        text-align: center;
    }

    .nav-links.active { display: flex; }

    .nav-links .dropdown-menu {
        position: static;
        transform: none;
        background: rgba(255,255,255,0.05);
        border-radius: 8px;
        min-width: auto;
        box-shadow: none;
        border-top: none;
    }

    .nav-links .dropdown:hover .dropdown-menu {
        display: none;
    }

    .nav-links .dropdown.open .dropdown-menu {
        display: block;
    }

    .hamburger { display: block; }

    .hero h1 { font-size: 2.5rem; }
    .hero-sm h1 { font-size: 1.8rem; }

    .section-header h2 { font-size: 2rem; }

    .counter-number { font-size: 2.2rem; }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        height: 655px; /* 2.5 * 250px + 2 * 15px = 655px */
    }

    .gallery-item {
        height: 250px;
        width: 100%;
    }

    .lb-btn { font-size: 2rem; padding: 10px; }

    .process-steps { grid-template-columns: 1fr; }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }

    .timeline { padding-left: 32px; }
    .timeline-step::before { left: -32px; }
}

/* ============================================ */
/* COOKIE CONSENT BANNER                        */
/* ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: calc(100% - 60px);
    max-width: 450px;
    background-color: var(--dark-bg);
    color: var(--text-light);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 25px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    display: none;
}

.cookie-banner.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.cookie-banner h3 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}

.cookie-banner p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #ccc;
}

.cookie-banner p a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-banner p a:hover {
    color: white;
}

.cookie-btn-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.cookie-btn {
    flex: 1;
    min-width: 120px;
    padding: 10px 15px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.85rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.cookie-btn-accept {
    background-color: var(--primary-color);
    color: white;
}

.cookie-btn-accept:hover {
    background-color: var(--green-accent);
}

.cookie-btn-reject {
    background-color: transparent;
    border: 2px solid #555;
    color: #ccc;
}

.cookie-btn-reject:hover {
    border-color: #999;
    color: white;
}

.cookie-btn-settings {
    background-color: transparent;
    color: var(--accent-color);
    text-decoration: underline;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    padding: 5px 0;
    display: block;
    text-align: center;
    margin: 0 auto;
    font-family: inherit;
}

.cookie-btn-settings:hover {
    color: white;
}

/* Cookie Settings Media Queries */
@media (max-width: 576px) {
    .cookie-banner {
        bottom: 15px;
        left: 15px;
        right: 15px;
        width: calc(100% - 30px);
        padding: 20px;
    }
}