@CHARSET "UTF-8";
* {
    box-sizing: border-box;
}

:root {
    --font-bebas: 'Bebas Neue', sans-serif;
    --font-barlow: 'Barlow', sans-serif;
    --font-manrope: 'Manrope', sans-serif;
    --font-open-sans: 'Open Sans', sans-serif;
}

body {
    margin: 0;
    font-family: 'Bebas Neue', sans-serif;
    background-color: #3d1808;
    color: white;
}

.hidden {
    display: none;
}

.wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stadion2-bcg {
    position: absolute;
    top: 4160px;
    left: 0;
    width: 100%;
    height: 1900px;
    z-index: 10;
}

.hero {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 24px;
    padding-right: 24px;
    overflow: hidden;
    background-color: #3d1808;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    overflow: hidden;
    pointer-events: none;
    user-select: none;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    pointer-events: none;
    user-select: none;
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 575px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }
}

.hero-logos {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 24px;
    z-index: 20;
    position: relative;
}

.logos-img {
    width: 360px;
    height: 52px;
    max-width: 100%;
    height: auto;
}

.hero-content {
    max-width: 1000px;
    width: 100%;
    position: relative;
    z-index: 30;
    display: flex;
    flex-direction: row;
    padding-top: 4%;
    padding-bottom: 5%;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    font-size: 48px;
    line-height: 1.02;
    font-family: 'Bebas Neue', sans-serif;
    color: white;
    z-index: 40;
}

.signature {
    width: 200px;
    height: auto;
}

@media (max-width: 1250px) {
    .hero-text {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .hero-content {
        padding-top: 10%;
    }
}

@media (max-width: 575px) {
    .hero-content {
        padding-top: 33%;
    }

    .signature {
        width: 124px;
    }
}

@media (max-width: 450px) {
    .hero-text {
        font-size: 32px;
    }

    .signature {
        position: absolute;
        right: 0;
        top: 64px;
    }
}

@media (max-width: 390px) {
    .hero-content {
        padding-top: 23%;
    }
}

@media (max-width: 380px) {
    .hero-text {
        font-size: 30px;
    }
}

@media (max-width: 355px) {
    .hero-text {
        font-size: 28px;
    }

    .signature {
        top: 56px;
        width: 110px;
    }
}

.kontakt {
    background: #f9d81b;
    padding: 64px 16px;
    font-family: 'Barlow', sans-serif;
    width: 100%;
    position: relative;
}

.kontakt-toggle-container {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.kontakt-toggle {
    margin-top: 24px;
    background-color: #009739;
    border: 2px solid #f9d81b;
    color: #f9d81b;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    text-transform: uppercase;
    padding: 16px 32px;
    width: 310px;
    cursor: pointer;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.35), -3px -5px 12px rgba(0, 0, 0, 0.25), 3px 5px 12px rgba(0, 0, 0, 0.35);
    transition: all 0.2s ease;
}

.kontakt-toggle:hover {
    color: white;
    text-shadow: 0 0 4px #F9D81B;
}

.kontakt-form {
    max-width: 960px;
    margin: 0 auto;
    margin-top: 48px;
    position: relative;
}

.zamknij {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    font-size: 28px;
    color: #3d1808;
    border: none;
    cursor: pointer;
}

.kontakt-naglowek h2 {
    color: #3d1808;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 34px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .kontakt-naglowek h2 {
        font-size: 48px;
    }
}

.kontakt-naglowek p {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #3d1808;
    max-width: 960px;
    margin: 0 auto 24px;
}

.kontakt-row {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .kontakt-row {
        flex-direction: row;
        gap: 24px;
    }
}

.kontakt-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 320px;
}

.kontakt-group label {
    color: #1e0400;
}

.input-wrapper {
    background: white;
    border: 2px solid #fff;
    border-radius: 8px;
    height: 58px;
    display: flex;
    align-items: center;
    padding: 0 16px;
}

.kontakt-group input {
    width: 100%;
    border: none;
    font-size: 19px;
    color: #000;
    font-family: 'Open Sans', sans-serif;
    outline: none;
    height: 56px;
}

.kontakt-tresc textarea {
    width: 100%;
    min-height: 120px;
    border-radius: 8px;
    padding: 16px;
    font-size: 19px;
    font-family: 'Open Sans', sans-serif;
    color: #000;
    outline: none;
    resize: vertical;
    border: none;
}

.kontakt-przycisk {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.kontakt-naglowek {
    color: #3d1808;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 34px;
    line-height: 1;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin: 0 auto;
    text-align: center;
}

.kontakt-zamknij {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 9999;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: none;
}

@media (min-width: 768px) {
    .kontakt-naglowek {
        font-size: 48px;
    }
}

.kontakt-opis {
    color: #3d1808;
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.375; /* odpowiada leading-snug */
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
}


.kontakt-przycisk button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #009739;
    border: 2px solid #f9d81b;
    color: #f9d81b;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    padding: 16px 32px;
    text-transform: uppercase;
    width: 310px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.35), -3px -5px 12px rgba(0, 0, 0, 0.25), 3px 5px 12px rgba(0, 0, 0, 0.35);
}

.kontakt-przycisk button:hover {
    color: white;
    text-shadow: 0 0 4px #F9D81B;
}

.kontakt-przycisk img {
    width: 16px;
    height: 17px;
}


.footer {
    background-color: #1e0400;
    color: white;
    position: relative;
    padding: 64px 20px;
    font-family: 'Barlow', sans-serif;
    overflow: hidden;
    width: 100%;
}

.footer-background {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.2;
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    text-align: left;
}

.footer-col {
    flex: 1;
    min-width: 300px;
    font-size: 16px;
    line-height: 1.45;
}

.footer-col.right-align {
    text-align: right;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin-top: 16px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: white;
    text-decoration: underline;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
}

.footer-socials h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons img {
    width: 43px;
    height: 43px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    min-width: 240px;
    text-align: right;
}

.footer-logo img {
    width: 176px;
    height: auto;
}

@media (max-width: 768px) {
    .footer-columns {
        flex-direction: column;
        text-align: left;
        gap: 32px;
    }

    .footer-col.right-align {
        text-align: left;
    }

    .footer-socials {
        flex-direction: column;
        gap: 32px;
        align-items: flex-start;
    }

    .footer-logo {
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 500px) {
    .footer {
        padding: 40px 16px;
    }

    .footer-content {
        gap: 32px;
    }

    .footer-logo img {
        width: 140px;
    }

    .social-icons {
        gap: 12px;
        flex-wrap: wrap;
    }

    .social-icons img {
        width: 36px;
        height: 36px;
    }

    .footer-links li {
        font-size: 14px;
    }

    .footer-content p,
    .footer-socials h3 {
        font-size: 14px;
    }
}

