/* ==========================================================================
   Blok_01.css - PODSTRONA ATRAKCJI WESELNYCH (Pełna izolacja przestrzeni)
   ========================================================================== */

.attractions-wedding-container {
    font-family: 'Inter', sans-serif;
    color: #e0e0e0;
    background-color: #0b0c0d; /* Ciemne tło strony */
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.6;
    box-sizing: border-box;
}

.attractions-wedding-container * {
    box-sizing: border-box;
}

/* Baner Górny */
.attractions-wedding-container .attractions-header {
    text-align: center;
    padding: 60px 20px;
    background-color: #062314; /* Twoja butelkowa zieleń */
    border: 1px solid #2a3e31;
    border-radius: 4px;
    margin-bottom: 50px;
}

.attractions-wedding-container .attractions-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #bfa15f; /* Twoje złoto */
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.attractions-wedding-container .attractions-header h1 {
    font-family: 'Lora', Georgia, serif;
    font-size: 3rem;
    color: #ffffff;
    margin: 0 0 20px 0;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.attractions-wedding-container .attractions-lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: #d0d6d2;
    max-width: 800px;
    margin: 0 auto 15px auto;
}

/* Układ Atrakcji (Siatka / Rzędy) */
.attractions-wedding-container .attractions-grid-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.attractions-wedding-container .attractions-card {
    display: flex;
    background: #111413; /* Ciemne kafelki grafitu ze screena */
    border: 1px solid #1c2b22;
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.attractions-wedding-container .attractions-card:hover {
    border-color: #bfa15f;
    box-shadow: 0 10px 25px rgba(6, 35, 20, 0.4);
}

/* Klasa odwracająca kolejność (zdjęcie po prawej) */
.attractions-wedding-container .attractions-reverse {
    flex-direction: row-reverse;
}

.attractions-wedding-container .attractions-img-box {
    flex: 1;
    min-width: 45%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.attractions-wedding-container .attractions-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.attractions-wedding-container .attractions-card:hover .attractions-img {
    transform: scale(1.03);
    opacity: 1;
}

.attractions-wedding-container .attractions-text-box {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.attractions-wedding-container .attractions-text-box h3 {
    font-family: 'Lora', serif;
    color: #bfa15f;
    font-size: 1.6rem;
    margin-top: 0;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.attractions-wedding-container .attractions-text-box p {
    color: #cccccc;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.attractions-wedding-container .attractions-text-box p:last-child {
    margin-bottom: 0;
}

/* Dolna Sekcja CTA */
.attractions-wedding-container .attractions-cta-section {
    background: #062314;
    border: 1px solid #bfa15f;
    padding: 50px 30px;
    text-align: center;
    border-radius: 4px;
    margin-top: 40px;
}

.attractions-wedding-container .attractions-cta-section h2 {
    font-family: 'Lora', serif;
    color: #ffffff;
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.attractions-wedding-container .attractions-cta-section p {
    color: #d0d6d2;
    margin-top: 0;
    margin-bottom: 20px;
}

.attractions-wedding-container .attractions-contacts-box {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.attractions-wedding-container .attractions-contacts-box a {
    color: #bfa15f;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.attractions-wedding-container .attractions-contacts-box a:hover {
    color: #ffffff;
}

.attractions-wedding-container .attractions-btn-submit {
    background: #bfa15f;
    color: #062314;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.attractions-wedding-container .attractions-btn-submit:hover {
    background: #ffffff;
    color: #062314;
    transform: translateY(-2px);
}

/* RWD - Dostosowanie do urządzeń mobilnych */
@media(max-width: 900px) {
    .attractions-wedding-container .attractions-card,
    .attractions-wedding-container .attractions-reverse {
        flex-direction: column;
    }
    .attractions-wedding-container .attractions-img-box {
        width: 100%;
        height: 250px;
    }
    .attractions-wedding-container .attractions-text-box {
        padding: 25px;
    }
    .attractions-wedding-container .attractions-header h1 {
        font-size: 2.2rem;
    }
    .attractions-wedding-container .attractions-contacts-box {
        flex-direction: column;
        gap: 15px;
    }
}
