/* --- FUNDAMENTY I CZCIONKI --- */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Montserrat:wght@700&family=Orbitron:wght@700&display=swap');

:root {
    --primary-color: #ffffff;
    --secondary-color: #3498db; /* Twój niebieski akcent */
    --text-color: #E0E0E0;
    --main-bg-color: #1a1a1a;
    --section-bg-color: #222222;
    --white-color: #ffffff;
    --footer-bg: #111111;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--main-bg-color);
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 1rem;
}

/* --- NAGŁÓWEK I LOGO --- */
.main-header {
    background-color: rgba(26, 26, 26, 0.95);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--secondary-color);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--white-color) !important; /* Całe białe logo główne */
    font-weight: 700;
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.8rem;
    color: var(--secondary-color); /* Niebieski slogan pod logo */
    font-weight: 400;
}

/* --- NAWIGACJA --- */
.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li {
    margin-left: 20px;
}

.main-nav ul li a {
    text-decoration: none;
    color: var(--white-color);
    font-weight: 700;
    transition: color 0.3s;
}

.main-nav ul li a:hover, .main-nav ul li a.active {
    color: var(--secondary-color);
}

/* --- SEKOCJA HERO (WIDEO) --- */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 0 20px;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-section h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
}

.hero-section h2 {
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* --- PRZYCISKI --- */
.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: transform 0.3s, background 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.secondary-button {
    display: inline-block;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 10px 25px;
    text-decoration: none;
    margin-top: 15px;
    font-weight: 700;
    transition: all 0.3s;
}

.secondary-button:hover {
    background: var(--secondary-color);
    color: white;
}

/* --- UKŁAD DWUKOLUMNOWY (O NAS) --- */
.about-short-section {
    padding: 80px 0;
}

.two-columns {
    display: flex;
    gap: 40px;
    align-items: center;
}

.column-left, .column-right {
    flex: 1;
}

/* POPRAWIONA RAMKA I NAPIS (BIAŁY) */
.logo-placeholder {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--white-color); /* Napis biały */
    text-align: center;
    border: 1px solid var(--white-color); /* Ramka biała */
    padding: 60px 20px;
    opacity: 0.9;
}

/* --- SEKCJA SKALI --- */
.scale-section {
    padding: 80px 0;
    background-color: var(--section-bg-color);
    text-align: center;
}

.scale-section p {
    max-width: 800px;
    margin: 0 auto 1rem;
}

.scale-cta {
    margin-top: 2rem;
    font-weight: 700;
}

.scale-cta a {
    color: var(--secondary-color);
    text-decoration: none;
}

/* --- PROCES 3 KROKÓW --- */
.process-section {
    padding: 80px 0;
    text-align: center;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 50px 0;
}

.step {
    flex: 1;
    padding: 30px;
    background: #2a2a2a;
    border-radius: 10px;
    transition: transform 0.3s;
}

.step:hover {
    transform: translateY(-10px);
}

.icon-placeholder {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* --- MARKI --- */
.brands-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--section-bg-color);
}

.section-intro { margin-bottom: 20px; }
.section-outro { margin-top: 20px; font-style: italic; }

/* --- STOPKA --- */
.main-footer {
    background-color: var(--footer-bg);
    padding: 60px 0 20px;
    border-top: 1px solid #333;
}

.main-footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #bbb;
    text-decoration: none;
}

.footer-bottom a {
    color: #666;
    text-decoration: underline;
    transition: color 0.3s;
}
.footer-bottom a:hover {
    color: var(--secondary-color);
}

/* --- MENU MOBILNE --- */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
}

/* --- RESPONSYWNOŚĆ (RWD) --- */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--main-bg-color);
        padding: 20px;
        border-bottom: 2px solid var(--secondary-color);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }

    .main-nav ul li {
        margin: 15px 0;
    }

    .two-columns {
        flex-direction: column;
        text-align: center;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .step {
        width: 100%;
        max-width: 400px;
    }

    .hero-section {
        height: auto;
        padding: 100px 20px;
    }
}