﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #F2F2F2;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
html, body {
    height: 100%;
}

main {
    flex: 1;
}

.header {
    width: 100%;
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1000;
    margin-bottom: 0px;
}

.header-top {
    display: flex;
    align-items: center;
    padding: 0px 40px;
}

.header-left,
.header-center,
.header-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.header-left {
    justify-content: center;
    padding-right: 40px;
}

.header-center {
    justify-content: center;
    gap: 25px;
    transition: all 0.3s ease;
}

.header-right {
    justify-content: center;
    padding-left: 40px;
    gap: 20px;
    text-align: left;
}

/* Logo */
.logo {
    height: 110px;
}

/* Partner */
.partner-logo {
    height: 60px;
}

/* Ikony */
.icon {
    height: 35px;
    transition: transform 0.2s ease;
}

    .icon:hover {
        transform: scale(1.1);
    }

/* ===== HAMBURGER ===== */

.hamburger {
    width: 30px;
    height: 22px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    display: none;
}

    .hamburger span {
        position: absolute;
        width: 100%;
        height: 3px;
        background: black;
        left: 0;
        transition: 0.3s ease;
    }

        .hamburger span:nth-child(1) {
            top: 0;
        }

        .hamburger span:nth-child(2) {
            top: 9px;
        }

        .hamburger span:nth-child(3) {
            bottom: 0;
        }

    /* animacja X */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 9px;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg);
        bottom: 9px;
    }

.header-bottom {
    height: 50px;
    background-color: #7B669A;
}


@media (max-width: 992px) {
    .header-center {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto; /* przewijanie poziome */
        padding: 0 10px;
        background: white;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        max-height: 0;
        transition: max-height 0.3s ease, padding 0.3s ease;
        /* UKRYCIE SCROLLBARA */
        -ms-overflow-style: none; /* IE/Edge */
        scrollbar-width: none; /* Firefox */
    }

        /* Safari / Chrome */
        .header-center::-webkit-scrollbar {
            display: none;
        }

        .header-center.active {
            max-height: 80px;
            padding: 10px;
        }

        .header-center .icon {
            margin-right: 15px;
            flex: 0 0 auto;
        }

            .header-center .icon:last-child {
                margin-right: 0;
            }

    .hamburger {
        display: block;
    }

    .desktop-partner {
        display: none;
    }
}
/* ===== FOOTER ===== */

.footer {
    margin-top: auto;
    background: white;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.05);
    padding-top: 50px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 40px 40px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
}

/* BRAND */

.footer-logo {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-tagline {
    margin-top: 10px;
    color: #666;
    font-size: 0.95rem;
}

/* SEKCJE */

.footer h4 {
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 600;
}

.footer p {
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: #555;
}

/* LOGIN BUTTON */

.footer-login-btn {
    display: inline-block;
    margin-top: 5px;
    padding: 10px 20px;
    border-radius: 25px;
    background: #5D64AC;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: 0.25s ease;
}

    .footer-login-btn:hover {
        background: #4c5393;
        transform: translateY(-2px);
    }

/* DOLNA BELKA */

.footer-bottom {
    text-align: center;
    padding: 18px;
    font-size: 0.8rem;
    background: #f4f4ff;
    color: #666;
    border-top: 1px solid #eee;
}

/* RESPONSYWNOŚĆ */

@media (max-width: 992px) {
    .footer-inner {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px 40px 20px;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        text-align: center;
    }
}
