/* Reset i podstawowe style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Kontener główny */
.reservation {
    background-color: #091d3e;
    width: 100%;
    padding: 60px 0;
    display: flex;
    justify-content: center;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
}

/* Kontener treści */
.reservation-container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
}

/* Sekcja obrazu */
.reservation-image {
    flex: 1;
    min-width: 300px;
    max-width: 1120px;
}

.reservation-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 1120 / 742;
}

@media (max-width: 768px) {
    .reservation-image img {
        aspect-ratio: 550 / 832;
    }
}

/* Sekcja treści */
.reservation-content {
    flex: 1;
    min-width: 300px;
    max-width: 650px;
    text-align: center;
}

.reservation-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.reservation-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Boxy dla sekcji */
.reservation-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.reservation-box {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.reservation-box:hover {
    transform: translateY(-5px);
}

.reservation-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.reservation-box p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.reservation-box .highlight-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #00cc99;
    margin: 15px 0;
}

/* Styl dla przycisku CTA */
.sekcja1-cta {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* Responsywność */
@media (max-width: 768px) {
    .reservation-container {
        flex-direction: column;
        gap: 30px;
    }

    .reservation-image,
    .reservation-content {
        max-width: 100%;
    }

    .reservation-content h2 {
        font-size: 1.8rem;
    }

    .reservation-box .highlight-amount {
        font-size: 1.8rem;
    }

    .reservation-boxes {
        flex-direction: column;
        align-items: center;
    }

    .reservation-box {
        max-width: 100%;
    }
}

/* Optymalizacja PSI */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Lazy loading dla obrazu */
.reservation-image img {
    loading: lazy;
}