/* Zmienne zgodne z głównym plikiem style.css */
:root {
    --color-primary: #D8EC48;
    --color-secondary: #0A1A2F;
    --color-bg-body: #F9F9FB; /* Lekko szare tło, by odtwarzacz się wyróżniał */
    --color-white: #FFFFFF;
    --color-text-body: #0A1A2F;
    --color-text-muted: #556070;
    --font-main: 'Inter', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--color-text-body);
    background-color: var(--color-bg-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Zapewnia, że stopka jest na dole nawet przy małej ilości treści */
}

.container {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

/* Header */
.site-header {
    padding: 1.5rem 0;
    background-color: var(--color-white);
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.nav-container {
    display: flex;
    justify-content: center;
}

.logo-img {
    max-height: 80px;
    width: auto;
    display: block;
}

/* Sekcja Wideo */
.video-section {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 0;
}

.video-section h1 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
}

.subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
}

/* Odtwarzacz */
.video-wrapper {
    width: 100%;
    max-width: 800px; /* Optymalna szerokość dla czytelności wideo */
    margin: 0 auto;
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(10, 26, 47, 0.15);
    /* Utrzymanie proporcji 16:9 dla responsywności */
    aspect-ratio: 16 / 9;
    position: relative;
}

.video-wrapper video,
.video-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
}

/* Stopka */
.site-footer {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 3rem 0;
    margin-top: auto;
}

.footer-logo {
    max-height: 60px;
    width: auto;
    margin: 0 auto 1.5rem auto;
    display: block;
}

.footer-copyright {
    opacity: 0.6;
    font-size: 0.875rem;
}

/* Media Queries dla telefonów */
@media (max-width: 768px) {
    .video-section {
        padding: 2rem 0;
    }
    .video-section h1 {
        font-size: 1.75rem;
    }
    .subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .logo-img {
        max-height: 60px;
    }
}