/* =========================================
   1. HERO I TYTUŁ
   ========================================= */
.realizacje-hero {
    padding: 310px 20px 60px; /* Miejsce pod duże logo */
    text-align: center;
    background: var(--bg-cream);
}

.realizacje-hero h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--primary-green);
    text-transform: uppercase;
    display: inline-block;
    border-bottom: 10px solid var(--accent-gold);
    padding-bottom: 5px;
}

.realizacje-slogan {
    margin-top: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* =========================================
   2. SIATKA REALIZACJI (BOKSY)
   ========================================= */
.realizacje-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.realizacje-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-bottom: 6px solid var(--accent-gold);
    transition: 0.3s ease;
}

.realizacje-card:hover { 
    transform: translateY(-10px); 
}

.card-image { 
    height: 220px; 
    overflow: hidden; 
}

.card-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.card-content { 
    padding: 25px; 
    text-align: center; 
}

.card-content h3 { 
    font-family: 'Playfair Display', serif; 
    font-size: 1.4rem; 
    color: var(--primary-green);
    min-height: 50px; 
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Przyciski Akcji */
.card-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.btn-card {
    flex: 1;
    padding: 12px 5px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.7rem;
    cursor: pointer;
    text-decoration: none;
    transition: 0.2s;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
}

.btn-card i { font-size: 1.1rem; }

.btn-gal { background: var(--primary-green); color: white; }
.btn-vid { background: var(--accent-gold); color: white; }
.btn-ext { background: #000; color: white; }

.btn-card:hover { 
    filter: brightness(1.2); 
}

/* =========================================
   3. LIGHTBOX (PODGLĄD)
   ========================================= */
/*.lightbox { 
    display: none; 
    position: fixed; 
    inset: 0; 
    background: rgba(0,0,0,0.95); 
    z-index: 5000; 
    align-items: center; 
    justify-content: center; 
}

.lightbox-modal {
    position: relative;
    width: 90%;
    max-width: 1000px;
}

.lightbox-content { 
    max-width: 100%; 
    max-height: 80vh; 
    border: 4px solid white; 
}

.close-lightbox { 
    position: absolute; 
    top: -50px; 
    right: 0; 
    color: white; 
    font-size: 3rem; 
    cursor: pointer; 
}

.nav-arrow { 
    position: absolute; 
    top: 50%;
    transform: translateY(-50%);
    color: white; 
    font-size: 2.5rem; 
    cursor: pointer; 
    background: rgba(0,0,0,0.5); 
    border: none; 
    padding: 15px;
    border-radius: 50%;
}
.prev { left: -70px; } 
.next { right: -70px; }

#lightbox-caption {
    color: white;
    margin-top: 15px;
    font-weight: 700;
    font-size: 1.1rem;
}

@media (max-width: 1024px) {
    .prev { left: 10px; }
    .next { right: 10px; }
}*/