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

body {
    font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    color: #666;
    line-height: 1.8;
    background-color: #fff;
}

/* Kontener główny */
.site-container {
    width: 100%;
}

/* Sekcja hero z obrazem tła i logo */
.hero-header {
    position: relative;
    width: 100%;
    height: 500px;
    background: url('images/nagodzice-zima-1.jpg') center center/cover no-repeat;
    background-color: #8fa3b0;
}

/* Przezroczysty pasek z logo */
.logo-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.3);
    padding: 20px 50px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-image {
    width: 70px;
    height: 70px;
}

.site-title h1 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0px;
    margin: 0;
    line-height: 1;
}

.site-title h2 {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 5px 0 0 0;
}

/* Główna zawartość */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

/* Komunikat o przebudowie - NA GÓRZE */
.maintenance-notice {
    text-align: center;
    padding: 20px 0 60px 0;
}

.maintenance-notice h2 {
    font-size: 28px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

/* SEKCJA 1: Czerwona linia z logo po prawej (cała szerokość) */
.top-section {
    position: relative;
    padding: 30px 0;
    border-bottom: 0px solid #c41e3a;
    margin-bottom: 0;
}

.top-logo {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
	height:40px;
	padding-bottom:60px;
}

.top-logo-circle {
    width: 60px;
    height: 60px;
    background: #c41e3a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-logo-circle img {
    /*width: 60%;*/
    height: 40px;
    align-items: right;
}

.top-logo-text {
    font-size: 11px;
    color: #c41e3a;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.3;
    max-width: 120px;
}

/* SEKCJE 2+3: Nagłówki kolumn */
.section-headers {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    margin-top: 0;
}

.section-header {
    padding: 25px 30px;
    background: #f5f5f5;
    border-bottom: 2px solid #ddd;
}

.section-header h3 {
    font-size: 18px;
    color: #333;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}

/* SEKCJE 4, 5, 6: Główna zawartość */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 0.2fr 2fr;
    gap: 0;
    margin-top: 0;
}

/* SEKCJA 4: Lewa kolumna - dane teleadresowe (szeroka) */
.left-column {
    padding: 30px;
    background: #fff;
}

.contact-info {
    line-height: 1.9;
    font-size: 14px;
}

.contact-info p {
    margin-bottom: 8px;
    color: #666;
}

.contact-info strong {
    color: #333;
    font-weight: 700;
}

.contact-info a {
    color: #c41e3a;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* SEKCJA 5: Środkowa kolumna - ikona (wąska) */
.middle-column {
    padding: 30px 10px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 50px;
}

.account-icon-large {
    width: 70px;
    height: 70px;
    opacity: 0.7;
}

/* SEKCJA 6: Prawa kolumna - numery kont (szeroka) */
.right-column {
    padding: 30px;
    background: #fff;
}

/* Sekcja z numerem konta */
.account-section {
    margin-bottom: 35px;
}

.account-section:last-child {
    margin-bottom: 0;
}

.account-header {
    margin-bottom: 8px;
}

.account-header strong {
    font-size: 14px;
    color: #333;
    font-weight: 700;
}

.account-subtitle {
    font-style: italic;
    color: #999;
    font-size: 13px;
    margin-bottom: 15px;
}

.account-details {
    background: #f9f9f9;
    padding: 20px;
    border-left: 0px solid #c41e3a;
}

.account-details p {
    margin: 5px 0;
    font-size: 13px;
    color: #666;
}

.account-details .iban {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: #333;
    font-size: 14px;
}

/* Stopka */
footer {
    background: #2c2c2c;
    color: #999;
    text-align: center;
    padding: 30px 20px;
    margin-top: 60px;
}

footer p {
    font-size: 13px;
}

/* Responsywność */
@media (max-width: 968px) {
    .section-headers {
        grid-template-columns: 1fr;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .middle-column {
        display: none;
    }
    
    .logo-bar {
        padding: 15px 30px;
    }
    
    .hero-header {
        height: 350px;
    }
    
    .main-content {
        padding: 0 30px;
    }
}

@media (max-width: 600px) {
    .logo-bar {
        padding: 15px 20px;
    }
    
    .logo-image {
        width: 50px;
        height: 50px;
    }
    
    .site-title h1 {
        font-size: 16px;
    }
    
    .site-title h2 {
        font-size: 11px;
    }
    
    .hero-header {
        height: 250px;
    }
    
    .main-content {
        padding: 0 20px;
    }
    
    .maintenance-notice h2 {
        font-size: 20px;
    }
    
    .top-logo {
        position: static;
        transform: none;
        margin-top: 20px;
    }
    
    .left-column,
    .right-column {
        padding: 20px;
    }
}
