:root {
    /* Kolorystyka - czyste i jasne tony w stylu Wildex */
    --forest-main: #4a7c59;
    --forest-dark: #2f4f3a;
    --forest-light: #6fa876;
    --forest-deeper: #1f3528;
    
    /* Akcenty pomarańczowe */
    --camp-fire: #ff8c42;
    --camp-ember: #d4682f;
    
    /* Neutralne tła */
    --canvas-beige: #fafbfc;
    --canvas-dark: #f0f2f5;
    --earth-brown: #8b6f47;
    --wood-brown: #5c4a3a;
    
    /* Tła - jasne i czyste */
    --night-black: #ffffff;
    --darker-bg: #fafbfc;
    --card-bg: rgba(255, 255, 255, 0.98);
    --border-color: rgba(0, 0, 0, 0.08);
    
    /* Teksty - ciemne na jasnym */
    --text-primary: #1a1a1a;
    --text-secondary: #666;
    --text-muted: #999;
    
    /* Gradienty - subtelne */
    --gradient-forest: linear-gradient(135deg, #6fa876 0%, #4a7c59 100%);
    --gradient-forest-deep: linear-gradient(135deg, #4a7c59 0%, #2f4f3a 100%);
    --gradient-nature: linear-gradient(135deg, #6fa876 0%, #4a7c59 50%, #2f4f3a 100%);
    
    /* Akcent ognia */
    --gradient-fire: linear-gradient(135deg, #ff8c42 0%, #d4682f 100%);
    
    /* Cienie - minimalistyczne */
    --shadow-forest: 0 0 30px rgba(79, 122, 90, 0.08);
    --shadow-warm: 0 6px 24px rgba(0, 0, 0, 0.06);
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.04);
    --shadow-strong: 0 12px 40px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: rgb(245, 243, 226);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    pointer-events: none;
    z-index: 0;
}

/* Navigation */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    border-bottom: none;
    box-shadow: none;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo img {
    height: 90px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(79, 122, 90, 0.6));
    transition: all 0.3s ease;
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(79, 122, 90, 0.6)); }
    50% { filter: drop-shadow(0 0 28px rgba(79, 122, 90, 0.8)); }
}

.logo:hover img {
    filter: drop-shadow(0 0 25px rgba(79, 122, 90, 0.8));
    transform: scale(1.05) rotate(-2deg);
    animation: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links li {
    display: inline-block;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    display: block;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--camp-fire);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--camp-fire);
}

.nav-links a.active {
    color: var(--camp-fire);
    font-weight: 600;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
    padding: 1rem 2rem;
}

.mobile-nav.show {
    display: block;
    animation: slideInDown 0.3s ease-out;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    margin-bottom: 1rem;
}

.mobile-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: 
        linear-gradient(to bottom, 
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.2) 50%,
            rgba(0, 0, 0, 0.5) 100%
        ),
        url('../tlo.png') left/cover no-repeat;
    overflow: hidden;
    background-attachment: fixed;
    padding-bottom: 0;
}

.hero::before {
    display: none;
}

.hero::after {
    display: none;
}

/* Dekoracyjne światła - USUNIĘTE */
.hero-lights {
    display: none;
}

.hero-light {
    display: none;
}

.hero-light--1 {
    display: none;
}

.hero-light--2 {
    display: none;
}

@keyframes floatLight {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.1); }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem 6rem;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 140, 66, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 140, 66, 0.3);
    padding: 8px 18px;
    border-radius: 50px;
    color: #ff8c42;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: slideInUp 1s ease-out 0.1s both;
    position: relative;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-badge-icon {
    color: #ffffff;
    font-size: 0.9rem;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 5.5rem);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    animation: slideInUp 1s ease-out 0.2s both;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.3),
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 8px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    max-width: 900px;
}

.hero-lead {
    font-size: clamp(1.05rem, 2.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    animation: slideInUp 1s ease-out 0.3s both;
    font-weight: 400;
    max-width: 650px;
    line-height: 1.6;
}

.hero-subtitle {
    display: none;
}

.hero-human {
    display: none;
}

/* Countdown Timer */
.countdown-container {
    margin: 0 0 1.5rem;
    animation: slideInUp 1s ease-out 0.4s both;
}

.countdown-title {
    display: none;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    width: 100px;
    transition: all 0.3s ease;
}

.countdown-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff8c42;
    margin-bottom: 0.4rem;
    line-height: 1;
}

.countdown-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
    animation: slideInUp 1s ease-out 0.4s both;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.hero-cta--primary {
    background: #ff8c42;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(255, 140, 66, 0.3);
}

.hero-cta--primary:hover {
    background: #ff9955;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(255, 140, 66, 0.4);
}

.hero-cta--primary svg {
    transition: transform 0.3s ease;
}

.hero-cta--primary:hover svg {
    transform: translateX(3px);
    background: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.hero-cta--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px) scale(1.03);
}

.hero-cta:active {
    transform: translateY(-1px);
}

.hero-cta--secondary {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.hero-cta--secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* Hero Info Cards */
.hero-info-cards {
    margin-top: 35px;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    padding: 0 2rem;
    z-index: 10;
    animation: slideInUp 1s ease-out 0.6s both;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-info-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    text-align: left;
    transition: all 0.3s ease;
    width: 300px;
    position: relative;
    overflow: hidden;
}

.hero-info-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-info-card-icon {
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
    border-radius: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 140, 66, 0.5);
    z-index: 0;
}

.hero-info-card-icon svg {
    width: 80px;
    height: 80px;
}

.hero-info-card-title {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 0.4rem;
    position: relative;
    z-index: 1;
}

.hero-info-card-value {
    font-size: 1.15rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

/* Responsywność Hero */
@media (max-width: 1100px) {
    .hero-info-cards {
        grid-template-columns: repeat(2, 1fr);
        bottom: 1.5rem;
        gap: 0.6rem;
    }
    
    .hero-info-card {
        padding: 1rem 0.7rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 85vh;
        padding-bottom: 0;
    }
    
    .hero-content {
        padding: 6rem 1.5rem 1rem;
    }
    
    .hero-title {
        font-size: clamp(2.2rem, 9vw, 3.5rem);
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        width: 100%;
        justify-content: center;
    }
    
    .hero-info-cards {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        grid-template-columns: 1fr;
        gap: 0.6rem;
        width: 100%;
        max-width: 100%;
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .hero-info-card {
        padding: 1.2rem;
    }
    
    .hero-info-card-icon {
        width: 48px;
        height: 48px;
    }
    
    .hero-info-card-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .countdown-timer {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 0.8rem 0.7rem;
    }
    
    .countdown-number {
        font-size: 1.9rem;
    }
}

/* Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 96px 0;
    position: relative;
    z-index: 1;
}

.section--light {
    background: rgb(245, 243, 226);
    color: #1a1a1a;
}

.section--light .section-title {
    background: #2f4f3a;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section--light .section-subtitle {
    color: #666;
}

.section--light .card {
    background: rgb(245, 243, 226);
    border-color: rgba(0, 0, 0, 0.06);
    color: #1a1a1a;
}

.section--light .feature h3 {
    color: #1a1a1a;
}

.section--light .feature p {
    color: #666;
}

.section--light .camp-quote {
    background: rgba(79, 122, 90, 0.05);
    color: #1a1a1a;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    letter-spacing: 0.01em;
    font-weight: 400;
}
.card {
    background: rgb(245, 243, 226);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    backdrop-filter: blur(10px);
    color: #1a1a1a;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--forest-main);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease-out;
}

.card::after {
    display: none;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover::after {
    opacity: 1;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(79, 122, 90, 0.15);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* Grid Layout */
.grid {
    display: grid;
    gap: 2.5rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Feature Icon - harcerskie stemple */
.feature-icon {
    width: 72px;
    height: 72px;
    background: rgba(79, 122, 90, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(79, 122, 90, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-light);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(79, 122, 90, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover .feature-icon {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 
        0 4px 16px rgba(79, 122, 90, 0.15);
}

.card:hover .feature-icon::before {
    opacity: 1;
}

.feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    letter-spacing: 0.01em;
}

.feature p {
    color: #666;
    line-height: 1.7;
}

/* Stats Section */
.stats {
    background: rgb(245, 243, 226);
    padding: 6rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--forest-main);
    margin-bottom: 0.5rem;
    display: block;
    line-height: 1;
}
.bigger-stat-number{
     font-size: 5.5rem !important;
}
.stat-label {
    color: #666;
    font-weight: 500;
    font-size: 1rem;
}

/* Location Info */
.location-info {
    background: rgb(245, 243, 226);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.location-info h3 {
    color: var(--forest-light);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.location-info p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.location-info ul {
    list-style: none;
    padding-left: 0;
}

.location-info li {
    color: #666;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.location-info li::before {
    content: '🌲';
    position: absolute;
    left: 0;
}

/* Distances List */
.distances-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.distance-item {
    background: rgba(79, 122, 90, 0.05);
    border: 1px solid rgba(79, 122, 90, 0.1);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.distance-icon {
    font-size: 1.5rem;
}

.distance-text strong {
    color: var(--forest-light);
    display: block;
    margin-bottom: 0.25rem;
}

.distance-text span {
    color: #999;
    font-size: 0.9rem;
}

/* Contact */
.contact-card {
    background: rgb(245, 243, 226);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-card:hover {
    border-color: rgba(79, 122, 90, 0.2);
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--forest-main);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    font-size: 1.3rem;
}

.contact-info a {
    color: var(--forest-light);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-info {
    color: #1a1a1a;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #999;
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer a {
    color: var(--forest-light);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: #ff8c42;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.4rem;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(255, 140, 66, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 140, 66, 0.4);
    background: #ff9955;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Gallery Section */
.gallery-section {
    background: rgb(245, 243, 226);
    padding: 6rem 0;
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: block;
    text-decoration: none;
}

.gallery-item-vertical {
    aspect-ratio: 3/4;
}

.location-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: brightness(0.98) contrast(1.02);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 2.5rem;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.8));
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1) contrast(1.08);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1.5rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 2;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Modal Gallery */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.modal.active {
    display: flex;
    animation: modalFadeIn 0.3s ease-out;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.9);
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: #ff8c42;
    border: none;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 140, 66, 0.4);
}

.modal-close:hover {
    background: #ff9955;
    transform: rotate(90deg) scale(1.1);
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.camp-quote {
    background: rgba(79, 122, 90, 0.04);
    border-left: 3px solid var(--camp-fire);
    padding: 2rem 2.5rem;
    margin: 3.5rem auto;
    max-width: 800px;
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 400;
    color: #333;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    line-height: 1.7;
    letter-spacing: 0.01em;
}

/* Decorative Elements */
.section-decoration {
    position: absolute;
    font-size: 8rem;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.section-decoration.top-left {
    top: 2rem;
    left: 2rem;
}

.section-decoration.bottom-right {
    bottom: 2rem;
    right: 2rem;
}

/* Section Separator - efekt lekkości */
.section-separator {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 6rem 0;
}

/* Ciemne sekcje - alternacja jak w Wildex */
.section--dark {
    background: linear-gradient(to bottom, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    color: #ffffff;
}

.section--dark .section-title {
    background: linear-gradient(135deg, #ffffff 0%, #e6f4ea 50%, #a8d5b5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section--dark .section-subtitle {
    color: #d0d0d0;
}

.section--dark .card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.section--dark .feature h3 {
    color: #ffffff;
}

.section--dark .feature p {
    color: #d0d0d0;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        text-align: center;
        justify-content: center;
    }

    .hero-content {
        padding: 6rem 1.5rem 2rem;
        align-items: center;
    }

    .hero-badge {
        align-self: center;
    }

    .countdown-container {
        align-self: center;
    }

    .countdown-timer {
        justify-content: center;
    }

    .countdown-timer {
        gap: 1rem;
    }

    .countdown-item {
        min-width: 70px;
        padding: 1rem 0.5rem;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }
    
    .card {
        padding: 2rem 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
    
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
    }

    .back-to-top {
        width: 50px;
        height: 50px;
        bottom: 1rem;
        right: 1rem;
    }

    .stats {
        padding: 4rem 0;
    }

    .gallery-section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-content {
        padding: 5rem 1rem 2rem;
    }

    .countdown-item {
        min-width: 60px;
        padding: 0.75rem 0.5rem;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .section {
        padding: 3rem 0;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .card {
        padding: 1.5rem;
    }
}
/* ============================================
   ABOUT SECTION - NOWOCZESNY DESIGN
   ============================================ */

.about-section {
    position: relative;
    padding: 8rem 0 3rem 0;
    overflow: hidden;
    background: rgb(245, 243, 226);
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
    z-index: 0;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

/* Section Label */
.section-label {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(79, 122, 90, 0.12);
    color: var(--forest-main);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(79, 122, 90, 0.15);
}

/* Quote Container */
.quote-container {
    position: relative;
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--forest-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 
        0 10px 30px rgba(79, 122, 90, 0.2),
        0 0 0 8px rgba(79, 122, 90, 0.05);
}

.camp-quote-modern {
    background: rgb(245, 243, 226);
    padding: 3.5rem 3rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.7;
    color: #2d3748;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.03);
    position: relative;
    font-style: italic;
}

.camp-quote-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--forest-main);
    border-radius: 24px 24px 0 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 5rem;
}

/* Feature Card */
.feature-card {
    background: rgb(245, 243, 226);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: rgba(79, 122, 90, 0.02);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(79, 122, 90, 0.1);
    border-color: rgba(79, 122, 90, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

/* Feature Icon Modern */
.feature-icon-modern {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    background: rgba(79, 122, 90, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: rgba(79, 122, 90, 0.15);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .icon-background {
    transform: translate(-50%, -50%) scale(1);
}

.feature-icon-modern i {
    font-size: 2.25rem;
    color: var(--forest-main);
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon-modern {
    transform: scale(1.1) rotate(5deg);
    background: var(--forest-main);
}

.feature-card:hover .feature-icon-modern i {
    color: white;
    transform: scale(1.1);
}

/* Feature Content */
.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.feature-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}

/* Floating Decorations */
.floating-decoration {
    position: absolute;
    font-size: 6rem;
    opacity: 0.04;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}

.decoration-1 {
    top: 10%;
    left: 5%;
    color: var(--forest-main);
    animation-delay: 0s;
}

.decoration-2 {
    bottom: 15%;
    right: 8%;
    color: var(--camp-fire);
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section {
        padding: 5rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .quote-container {
        padding: 0 1rem;
        margin: 3rem auto;
    }
    
    .camp-quote-modern {
        padding: 3rem 2rem 2rem;
        font-size: 1.25rem;
    }
    
    .quote-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .floating-decoration {
        font-size: 4rem;
    }
}
/* ============================================
   STATS SECTION - NOWOCZESNY DESIGN
   ============================================ */

.stats-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #2f4f3a 0%, #4a7c59 100%);
    overflow: hidden;
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgb(245, 243, 226);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: left 0.6s ease;
}

.stat-card:hover .stat-shine {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.3);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--forest-main);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover .stat-icon {
    transform: scale(1.15) rotate(10deg);
}

.stat-content {
    position: relative;
    z-index: 1;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--forest-main);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    color: #4a5568;
    letter-spacing: 0.5px;
}

/* ============================================
   GALLERY SECTION - NOWOCZESNY DESIGN
   ============================================ */

.gallery-section-modern {
    position: relative;
    padding: 4rem 0 8rem 0;
    background: rgb(245, 243, 226);
}

/* ============================================
   LOCATION SECTION - NOWOCZESNY DESIGN
   ============================================ */

.location-section {
    position: relative;    padding: 8rem 0 8rem 0;
    background: rgb(245, 243, 226);
    overflow: hidden;
}

.location-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.location-card {
    background: rgb(245, 243, 226);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--forest-main);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.location-icon-header {
    width: 60px;
    height: 60px;
    background: var(--forest-main);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.location-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.location-card p, .location-card ul {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1rem;
}

.location-card ul {
    padding-left: 1.5rem;
}

.location-card li {
    margin-bottom: 0.75rem;
}

.distances-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.distance-card {
    background: rgb(245, 243, 226);
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.distance-card:hover {
    background: rgb(245, 243, 226);
    transform: translateX(5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.distance-icon-modern {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(79, 122, 90, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-main);
    font-size: 1.5rem;
}

.distance-text {
    flex: 1;
}

.distance-text strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.25rem;
}

.distance-km {
    display: block;
    font-size: 0.95rem;
    color: #718096;
    font-weight: 500;
}

/* ============================================
   PROGRAM SECTION - NOWOCZESNY DESIGN Z TIMELINE
   ============================================ */

.program-section {
    position: relative;
    padding: 0rem 0 8rem 0;
    background: rgb(245, 243, 226);
    overflow: hidden;
}

.program-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

/* ===== TIMELINE STYLES ===== */
.program-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 2rem 0;
}

.program-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--forest-main);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 3rem;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 3rem;
}

.timeline-marker {
    position: relative;
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: rgb(245, 243, 226);
    border: 4px solid var(--forest-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-main);
    font-size: 1.5rem;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(79, 122, 90, 0.2);
}

.timeline-marker-main {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: var(--forest-main);
    border-color: var(--camp-fire);
    border-width: 5px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 30px rgba(79, 122, 90, 0.3), 0 0 0 8px rgba(255, 140, 66, 0.1);
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 8px 30px rgba(79, 122, 90, 0.3);
}

.timeline-item:hover .timeline-marker-main {
    transform: scale(1.1) rotate(360deg);
}

.timeline-content {
    flex: 1;
    background: rgb(245, 243, 226);
    padding: 2rem 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 25px;
    width: 0;
    height: 0;
    border-style: solid;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -12px;
    border-width: 12px 0 12px 12px;
    border-color: transparent transparent transparent rgb(245, 243, 226);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -12px;
    border-width: 12px 12px 12px 0;
    border-color: transparent rgb(245, 243, 226) transparent transparent;
}

.timeline-content-main {
    background: rgb(245, 243, 226);
    border: 2px solid rgba(79, 122, 90, 0.15);
    padding: 2.5rem 3rem;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(79, 122, 90, 0.2);
}

.timeline-date {
    display: inline-block;
    background: rgba(79, 122, 90, 0.15);
    color: var(--forest-main);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-date-main {
    display: inline-block;
    background: var(--camp-fire);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.timeline-content p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.05rem;
}

.timeline-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 140, 66, 0.15);
    color: var(--camp-fire);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-top: 1rem;
}

/* ===== ATTRACTIONS GRID ===== */
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.attraction-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgb(245, 243, 226);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.attraction-item:hover {
    transform: translateX(5px);
    background: rgba(79, 122, 90, 0.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(79, 122, 90, 0.15);
}

.attraction-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--forest-main);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.attraction-item:hover .attraction-icon {
    transform: scale(1.1) rotate(-5deg);
}

.attraction-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.attraction-text strong {
    color: #1a202c;
    font-size: 1rem;
    font-weight: 600;
}

.attraction-text span {
    color: #718096;
    font-size: 0.9rem;
}

/* ===== PROGRAM INFO CARD - NOWY DESIGN ===== */
.program-info-card-new {
    background: rgb(245, 243, 226);
    border-radius: 28px;
    padding: 0;
    border: 2px solid rgba(79, 122, 90, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.4s;
}

.info-card-header {
    background: var(--forest-main);
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.info-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.info-icon-large {
    width: 90px;
    height: 90px;
    min-width: 90px;
    background: white;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-main);
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.info-header-text {
    flex: 1;
    color: white;
    position: relative;
    z-index: 1;
}

.info-header-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    color: white;
}

.info-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 400;
}

.info-card-content {
    padding: 3rem;
}

.info-card-content p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.info-card-content p:last-child {
    margin-bottom: 0;
}

.info-card-content strong {
    color: var(--forest-main);
    font-weight: 700;
}

.info-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
}

.info-highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgb(245, 243, 226);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    border: 2px solid rgba(79, 122, 90, 0.15);
    color: #2d3748;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.info-highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: var(--forest-main);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-highlight-item:hover {
    transform: translateX(8px);
    border-color: var(--forest-main);
    box-shadow: 0 8px 24px rgba(79, 122, 90, 0.15);
}

.info-highlight-item:hover::before {
    opacity: 1;
}

.info-highlight-item i {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--forest-main) 0%, var(--forest-light) 100%);
    color: white;
    font-size: 1.25rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(79, 122, 90, 0.2);
}

.info-highlight-item:hover i {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 16px rgba(79, 122, 90, 0.3);
}

.info-motto {
    text-align: center;
    background: rgba(255, 140, 66, 0.12);
    padding: 2rem 2.5rem;
    border-radius: 16px;
    border-left: 4px solid var(--camp-fire);
    margin-top: 2rem;
}

.info-motto i {
    color: var(--camp-fire);
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

.info-motto em {
    color: #2d3748;
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 500;
}

/* USUWAMY STARE STYLE */
.program-grid,
.program-card,
.program-icon,
.program-info-card,
.program-info-icon {
    display: none !important;
}

/* ============================================
   ORGANIZERS SECTION - NOWOCZESNY DESIGN
   ============================================ */

.organizers-section {
    position: relative;
    padding: 0rem 0 8rem 0;
    background: rgb(245, 243, 226);
    overflow: hidden;
}

.organizers-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.organizers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
}

.organizer-card {
    background: rgb(245, 243, 226);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.organizer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--forest-main);
}

.organizer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.organizer-icon {
    width: 80px;
    height: 80px;
    background: var(--forest-main);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.organizer-card:hover .organizer-icon {
    transform: scale(1.1) rotate(-5deg);
}

.organizer-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.organizer-card p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.05rem;
}

.organizer-card strong {
    color: var(--forest-main);
}

/* ============================================
   CONTACT SECTION - NOWOCZESNY DESIGN
   ============================================ */

.contact-section {
    position: relative;
    padding: 0rem 0 8rem 0;
    background: rgb(245, 243, 226);
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card-modern {
    background: rgb(245, 243, 226);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.contact-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(79, 122, 90, 0.2);
}

.contact-icon-modern {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: var(--forest-main);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: all 0.4s ease;
}

.contact-card-modern:hover .contact-icon-modern {
    transform: scale(1.15) rotate(10deg);
}

.contact-info {
    flex: 1;
}

.contact-info strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--forest-main);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--camp-fire);
}

.contact-cta {
    background: rgb(245, 243, 226);
    border-radius: 28px;
    padding: 4rem 3rem;
    text-align: center;
    border: 2px solid rgba(79, 122, 90, 0.1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--forest-main);
}

.cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--camp-fire);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 140, 66, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(255, 140, 66, 0);
    }
}

.contact-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.contact-cta p {
    color: #4a5568;
    font-size: 1.15rem;
    line-height: 1.7;
}

/* Responsive Design dla wszystkich sekcji */
@media (max-width: 768px) {
    .stats-section,
    .location-section,
    .program-section,
    .organizers-section,
    .contact-section {
        padding: 5rem 0 0 0;
    }
    
    .stats-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .location-card,
    .organizer-card {
        padding: 2rem;
    }
    
    /* Program Timeline - Mobile */
    .program-timeline::before {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: row !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-right: 0;
        margin-left: 2rem;
        text-align: left;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before {
        right: auto;
        left: -12px;
        border-width: 12px 12px 12px 0;
        border-color: transparent white transparent transparent;
    }
    
    .timeline-marker {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.25rem;
    }
    
    .timeline-marker-main {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 1.5rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-content-main {
        padding: 2rem;
    }
    
    .timeline-content h3 {
        font-size: 1.25rem;
    }
    
    .timeline-date,
    .timeline-date-main {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .attractions-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .program-info-card-new {
        border-radius: 20px;
    }
    
    .info-card-header {
        padding: 2rem;
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .info-header-text h3 {
        font-size: 1.5rem;
    }
    
    .info-subtitle {
        font-size: 1rem;
    }
    
    .info-card-content {
        padding: 2rem;
    }
    
    .info-highlights {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    
    .info-motto {
        padding: 1.5rem;
    }
    
    .info-motto em {
        font-size: 1rem;
    }
    
    .organizers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-cta {
        padding: 3rem 2rem;
    }
    
    .contact-cta h3 {
        font-size: 1.5rem;
    }
    
    .distances-grid {
        grid-template-columns: 1fr;
    }
    
    .location-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* ============================================
   PARTNERS SECTION - PRZEWIJANE LOGA
   ============================================ */

.partners-section {
    position: relative;
    padding: 0rem 0 8rem 0;
    background: rgb(245, 243, 226);
    overflow: hidden;
}

.partners-category {
    margin-bottom: 4rem;
}

.partners-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}

.partners-category-title i {
    color: var(--forest-main);
    font-size: 1.75rem;
}

.partners-scroll {
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    width: 90%;
    margin: 0 auto;
}

.partners-scroll::before,
.partners-scroll::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.partners-scroll::before {
    left: 0;
    background: linear-gradient(to right, white 0%, transparent 100%);
}

.partners-scroll::after {
    right: 0;
    background: linear-gradient(to left, white 0%, transparent 100%);
}

.partners-track {
    display: flex;
    gap: 3rem;
    animation: scroll-left 40s linear infinite;
    width: fit-content;
}

.partners-scroll-reverse .partners-track {
    animation: scroll-right 35s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-logo {
    flex-shrink: 0;
    width: 180px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.partner-logo:hover {
    background: rgba(248, 250, 249, 0.5);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--forest-main);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0%);
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

.partners-cta {
    text-align: center;
    margin-top: 3rem;
}

.partners-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--forest-main);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(79, 122, 90, 0.3);
}

.partners-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(79, 122, 90, 0.4);
}

.partners-cta-button i {
    transition: transform 0.3s ease;
}

.partners-cta-button:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .partners-section {
        padding: 5rem 0;
    }
    
    .partners-category {
        margin-bottom: 3rem;
    }
    
    .partners-category-title {
        font-size: 1.25rem;
    }
    
    .partner-logo {
        width: 140px;
        height: 90px;
    }
    
    .partners-scroll::before,
    .partners-scroll::after {
        width: 50px;
    }
}

/* ============================================
   PARTNERS PAGE - PEŁNA STRONA PARTNERÓW
   ============================================ */

.partners-hero {
    padding: 18rem 0 8rem;
    background: linear-gradient(135deg, var(--forest-main) 0%, var(--forest-light) 100%);
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.partners-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.partners-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.partners-hero-content .section-label {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.partners-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: white;
    margin: 1.5rem 0;
    line-height: 1.2;
}

.partners-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.partners-full-section {
    padding: 6rem 0;
    background: rgb(245, 243, 226);
}

.partners-media-section {
    background: rgb(245, 243, 226);
}

.partners-full-header {
    text-align: center;
    margin-bottom: 4rem;
}

.partners-full-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--forest-main);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(79, 122, 90, 0.3);
}

.partners-media-icon {
    background: var(--camp-fire);
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.3);
}

.partners-full-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.partners-full-header p {
    font-size: 1.15rem;
    color: #4a5568;
}

.partners-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.partner-full-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 2px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partner-full-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--forest-main);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.partner-full-card:hover::before {
    transform: scaleX(1);
}

.partner-full-card:hover {
    transform: translateY(-8px);
    border-color: var(--forest-main);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.partner-full-logo {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: transparent;
    border-radius: 12px;
}

.partner-full-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-full-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0;
}

.partner-full-card p {
    display: none;
}

.partner-full-card p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

.partners-cta-section {
    padding: 6rem 0;
    background: rgb(245, 243, 226);
}

.partners-cta-box {
    background: rgb(245, 243, 226);
    border-radius: 28px;
    padding: 4rem 3rem;
    text-align: center;
    border: 2px solid rgba(79, 122, 90, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.partners-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--forest-main);
}

.partners-cta-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: var(--camp-fire);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.partners-cta-box h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.partners-cta-box p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.partners-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--forest-main);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(79, 122, 90, 0.3);
}

.partners-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(79, 122, 90, 0.4);
}

.partners-contact-btn i {
    transition: transform 0.3s ease;
}

.partners-contact-btn:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .partners-hero {
        padding: 12rem 0 6rem;
    }
    
    .partners-hero-title {
        font-size: 2rem;
    }
    
    .partners-hero-subtitle {
        font-size: 1rem;
    }
    
    .partners-full-section {
        padding: 4rem 0;
    }
    
    .partners-full-header h2 {
        font-size: 1.75rem;
    }
    
    .partners-full-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .partners-cta-section {
        padding: 4rem 0;
    }
    
    .partners-cta-box {
        padding: 3rem 2rem;
    }
    
    .partners-cta-box h2 {
        font-size: 1.75rem;
    }
}


