/* ==========================================================================
   Blok_01.css - PODSTRONA ZAŚLUBIN NA TARASIE (Pełna izolacja przestrzeni)
   ========================================================================== */

.terrace-wedding-container {
    font-family: 'Inter', sans-serif;
    color: #e0e0e0; 
    background-color: #0b0c0d; /* Ciemne tło główne strony */
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.6;
    box-sizing: border-box;
}

.terrace-wedding-container * {
    box-sizing: border-box;
}

/* Baner górny */
.terrace-wedding-container .terrace-header {
    text-align: center;
    padding: 60px 20px;
    background-color: #062314; /* Głęboka butelkowa zieleń restauracji */
    border: 1px solid #2a3e31;
    border-radius: 4px;
    margin-bottom: 40px;
}

.terrace-wedding-container .terrace-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #bfa15f; /* Matowe złoto */
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.terrace-wedding-container .terrace-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;
}

.terrace-wedding-container .terrace-lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: #d0d6d2;
    max-width: 800px;
    margin: 0 auto 15px auto;
}

/* Siatka opisowa / Atuty */
.terrace-wedding-container .terrace-details-section {
    margin-bottom: 60px;
}

.terrace-wedding-container .terrace-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.terrace-wedding-container .terrace-info-card {
    background: #111413; /* Ciemny kafel jak na screenie */
    padding: 35px;
    border-radius: 4px;
    border: 1px solid #1c2b22;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.terrace-wedding-container .terrace-info-card:hover {
    transform: translateY(-5px);
    border-color: #bfa15f;
}

.terrace-wedding-container .terrace-info-card h3 {
    font-family: 'Lora', serif;
    color: #bfa15f;
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sekcja Galerii */
.terrace-wedding-container .terrace-gallery-section {
    margin-bottom: 60px;
}

.terrace-wedding-container .terrace-gallery-section h2 {
    font-family: 'Lora', serif;
    text-align: center;
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.terrace-wedding-container .terrace-gallery-intro {
    text-align: center;
    color: #a0a0a0;
    margin-bottom: 35px;
}

.terrace-wedding-container .terrace-grid-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.terrace-wedding-container .terrace-gallery-item {
    position: relative;
    border: 1px solid #1c2b22;
    border-radius: 4px;
    overflow: hidden;
    height: 300px;
    background-color: #111413;
}

.terrace-wedding-container .terrace-item-wide {
    grid-column: span 2;
    height: 450px;
}

.terrace-wedding-container .terrace-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.85;
}

.terrace-wedding-container .terrace-gallery-item:hover .terrace-img {
    transform: scale(1.04);
    opacity: 1;
}

/* Efekt najechana na zdjęcie (Overlay) */
.terrace-wedding-container .terrace-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(6, 35, 20, 0.95));
    padding: 30px 20px 20px 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.terrace-wedding-container .terrace-gallery-item:hover .terrace-img-overlay {
    opacity: 1;
}

.terrace-wedding-container .terrace-img-overlay span {
    color: #bfa15f;
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Sekcja Wezwania do Działania (CTA) */
.terrace-wedding-container .terrace-cta-section {
    background: #062314;
    border: 1px solid #bfa15f;
    padding: 50px 30px;
    text-align: center;
    border-radius: 4px;
    margin-top: 40px;
}

.terrace-wedding-container .terrace-cta-section h2 {
    font-family: 'Lora', serif;
    color: #ffffff;
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.terrace-wedding-container .terrace-cta-section p {
    color: #d0d6d2;
    margin-top: 0;
    margin-bottom: 15px;
}

.terrace-wedding-container .terrace-contacts-box {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.terrace-wedding-container .terrace-contacts-box a {
    color: #bfa15f;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.terrace-wedding-container .terrace-contacts-box a:hover {
    color: #ffffff;
}

.terrace-wedding-container .terrace-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;
}

.terrace-wedding-container .terrace-btn-submit:hover {
    background: #ffffff;
    color: #062314;
    transform: translateY(-2px);
}

/* Responsywność dla urządzeń mobilnych */
@media(max-width: 768px) {
    .terrace-wedding-container .terrace-grid-gallery {
        grid-template-columns: 1fr;
    }
    .terrace-wedding-container .terrace-item-wide {
        grid-column: span 1;
        height: 300px;
    }
    .terrace-wedding-container .terrace-header h1 {
        font-size: 2.2rem;
    }
    .terrace-wedding-container .terrace-contacts-box {
        flex-direction: column;
        gap: 15px;
    }
}
