/* style_offer.css - Pełne style dla podstrony Oferta */


/* --- Sekcja Powitalna (Intro) --- */

.offer-intro-section {
    padding: 40px 20px;
    text-align: center;
}

.offer-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.offer-description {
    font-size: 1.2rem;
    color: var(--text-accent);
    max-width: 800px;
    margin: 0 auto;
}


/* --- Karty Cech (Piniata, Dojazd, Altana) --- */

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.feature-box {
    background: #2A4D3E;
    /* Możesz tu użyć zmiennej jeśli masz, np. var(--primary-dark) */
    padding: 20px;
    border-radius: 8px;
    flex: 1;
    min-width: 250px;
}

.feature-box h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #fff;
}

.feature-box p {
    margin: 0;
    color: #ddd;
}


/* --- Sekcja Atrakcja (Dmuchańce) --- */

.attraction-section {
    padding: 60px 20px;
}

.attraction-wrapper {
    background-color: var(--bg-darker);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.attraction-header {
    text-align: center;
    margin-bottom: 40px;
}

.attraction-subtitle {
    color: #FFD700;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.attraction-title {
    font-size: 1.8rem;
    margin-top: 0;
    color: #fff;
}

.attraction-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.attraction-text-col {
    flex: 3;
    min-width: 300px;
}

.attraction-desc {
    font-size: 1.1rem;
    color: var(--text-accent);
    line-height: 1.6;
    margin-bottom: 25px;
}

.sub-header {
    color: #FFD700;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}


/* Lista z "ptaszkami" (o którą pytałeś) */

.check-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    color: #ddd;
}

.check-list li {
    margin-bottom: 10px;
}


/* Box transportowy */

.transport-info {
    background: rgba(42, 77, 62, 0.6);
    border-left: 4px solid #FFD700;
    padding: 20px;
    border-radius: 4px;
}

.transport-header {
    margin-top: 0;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.transport-detail {
    margin-bottom: 8px;
    color: #ddd;
}

.transport-detail:last-child {
    margin-bottom: 0;
}


/* Prawa kolumna (Sidebar ze zdjęciem) */

.attraction-sidebar {
    flex: 2;
    min-width: 280px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    border: 2px dashed #555;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dmuchaniec-img-container {
    margin-bottom: 20px;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.dmuchaniec-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 250px;
    display: block;
}

.sidebar-title {
    color: #fff;
    margin-bottom: 15px;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
}

.tag {
    background: #FFD700;
    color: #1A3528;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.85rem;
}

.btn-full-width {
    cursor: pointer;
    border: none;
    font-size: 1rem;
    padding: 15px 30px;
    width: 100%;
}


/* --- Sekcja Scenariusze --- */

.scenarios-section {
    background-color: var(--bg-darker);
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.offer-card {
    background-color: var(--bg-darker);
    /* Lub jaśniejszy odcień jeśli tło sekcji jest ciemne */
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    cursor: default;
}

.offer-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
}

.offer-card h3 {
    color: #FFD700;
    margin-top: 0;
}

.btn-center-container {
    text-align: center;
    margin-top: 50px;
}

.btn-primary-gold {
    background: #FFD700;
    color: #1A3528;
    border: none;
    font-size: 1.2rem;
    padding: 15px 40px;
    text-decoration: none;
    display: inline-block;
    border-radius: 5px;
    /* Zakładając standardowy styl przycisku */
    font-weight: bold;
}


/* --- Sekcja Sensoryka --- */

.sensory-section {
    padding: 80px 20px;
}

.sensory-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.sensory-col {
    flex: 1;
    min-width: 300px;
}

.sensory-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.sensory-list {
    margin-top: 20px;
    color: var(--text-accent);
}

.sensory-list li {
    margin-bottom: 10px;
    list-style-type: none;
}

.sensory-list li::before {
    content: "✨";
    margin-right: 10px;
}


/* ================================================== */


/* STYL DLA DYNAMICZNYCH SCENARIUSZY (NAPRAWA SIATKI) */


/* ================================================== */


/* 1. Kontener siatki (Grid) - żeby kafelki były obok siebie */

.scenarios-grid {
    display: grid;
    /* Automatycznie dopasuj liczbę kolumn: min. 300px szerokości */
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    /* Odstęp między kafelkami */
    margin-top: 40px;
}


/* 2. Wygląd pojedynczego kafelka (Okienko) */

.scenario-card {
    background-color: #132a1f;
    /* Ciemne tło (zgodne z Twoim motywem) */
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Delikatna ramka */
    border-left: 4px solid #FFD700;
    /* Złoty akcent z lewej */
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
    cursor: pointer;
    /* Łapka po najechaniu */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    /* Żeby wszystkie były równe */
}


/* 3. Efekt najechania myszką (Hover) */

.scenario-card:hover {
    transform: translateY(-5px);
    /* Lekkie uniesienie */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    /* Cień */
    border-color: rgba(255, 215, 0, 0.3);
    /* Jaśniejsza ramka */
}


/* 4. Tytuł scenariusza */

.scenario-card h3 {
    color: #FFD700;
    /* Złoty kolor */
    margin-top: 0;
    margin-bottom: 15px;
    font-family: 'Merriweather', serif;
    font-size: 1.3rem;
}


/* 5. Opis w kafelku (skrócony) */

.scenario-card p {
    color: #C7D3C8;
    /* Jasny tekst */
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}


/* 6. Ikona (opcjonalne, jeśli używasz) */

.scenario-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}


/* --- Style dla Modala (Okienka Popup) --- */

.modal-overlay {
    display: none;
    /* Domyślnie ukryty */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    /* Ciemne tło pod spodem */
    z-index: 10001;
    /* Zawsze na wierzchu */
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    /* Rozmycie tła */
}

.modal-overlay.active {
    display: flex;
    /* Pokaż (Flex centruje okienko) */
}

.modal-content {
    background: #1A3528;
    /* Tło okienka */
    padding: 40px;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    border: 2px solid #FFD700;
    position: relative;
    text-align: center;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.modal-close:hover {
    color: #FFD700;
}