/* Adres Page Specific Styles */

.adres-page {
    background: var(--primary-color);
}

/* Footer Transparent */
.adres-page .footer {
    background: transparent;
    border-top: none;
}

/* Header Transparent */
.header-transparent {
    position: absolute;
    background: transparent;
    border-bottom: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: visible;
    background: var(--primary-color);
}

.hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(50px) brightness(0.5);
    transform: scale(1.2);
    z-index: -1;
}

.hero-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    padding-top: 200px;
    z-index: 1;
}

.hero-image-container {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-image-container img {
    width: 1425px;
    height: 745px;
    object-fit: cover;
    display: block;
}


/* Contact Section */
.contact-section {
    padding: 6rem 2rem;
    background: rgba(20, 20, 20, 0.8);
    position: relative;
    z-index: 10;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-title {
    font-size: 3rem;
    font-weight: 300;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.contact-item {
    padding: 2rem;
    background: rgba(30, 30, 30, 0.5);
    border-radius: 4px;
}

.fundacja-item {
    grid-column: 1 / -1;
    text-align: center;
}

.contact-heading {
    font-size: 1.5rem;
    font-weight: 400;
    color: rgb(255, 125, 0);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.contact-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: rgb(255, 125, 0);
}

.bank-account {
    margin-top: 2rem;
}

.account-number {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}

.bank-name {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        padding-top: 180px;
    }

    .hero-image-container img {
        width: 90vw;
        height: auto;
        max-height: 55vh;
    }

    .page-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .contact-section {
        padding: 4rem 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .fundacja-item {
        grid-column: 1;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding-top: 140px;
    }

    .hero-image-container img {
        width: 95vw;
        height: auto;
        max-height: 50vh;
    }

    .page-title {
        font-size: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .contact-section {
        padding: 3rem 1.5rem;
    }

    .contact-grid {
        gap: 2rem;
    }

    .contact-item {
        padding: 1.5rem;
    }

    .contact-heading {
        font-size: 1.25rem;
    }

    .contact-text {
        font-size: 1rem;
    }

    .account-number {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }

    .bank-name {
        font-size: 1rem;
    }
}

