/* style.css */
:root {
    --text-color: #222;
    --link-color: #555;
    --hover-color: #000;
    --bg-color: #fff;
    --font-main: 'Inter', Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-main); color: var(--text-color); background: var(--bg-color); line-height: 1.6; }

/* Header & Menu */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text-color);
}

.logo-container img { height: 60px; width: auto; }
.logo-text { font-size: 14px; font-weight: 700; line-height: 1.2; text-transform: uppercase;}

.main-nav { display: flex; align-items: center; gap: 20px; font-size: 15px; }
.main-nav a { text-decoration: none; color: var(--link-color); transition: color 0.2s; }
.main-nav a:hover, .main-nav a.active { color: var(--hover-color); font-weight: 600; }

/* Dropdown logic */
.dropdown { position: relative; padding-bottom: 10px; margin-bottom: -10px; }
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #0a0a0a;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    list-style: none;
    min-width: 240px;
    z-index: 100;
    padding: 0;
}

/* Wskaźnik (trójkąt) u góry menu */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    border-width: 0 8px 8px 8px;
    border-style: solid;
    border-color: transparent transparent #0a0a0a transparent;
}

.dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu li { border-bottom: 1px solid #1a1a1a; }
.dropdown-menu li:last-child { border-bottom: none; }

.dropdown-menu li a { 
    display: block; 
    padding: 12px 20px; 
    color: #e5b340; 
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.dropdown-menu li a:hover { 
    background: #1a1a1a; 
    color: #fff; 
}

/* Layout Główny */
.container { max-width: 900px; margin: 60px auto; padding: 0 20px; }
.page-title { font-size: 42px; font-weight: 400; margin-bottom: 40px; text-align: left; }

.content-split {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}
.content-text { flex: 1; font-size: 16px; color: #444; }
.content-image { flex: 0 0 200px; }
.content-image img { width: 100%; height: auto; }

.contact-info { margin-top: 40px; font-size: 16px; }
.contact-info strong { font-size: 18px; color: #000; display: block; margin-bottom: 20px;}
.contact-info a { color: var(--text-color); font-weight: bold; text-decoration: none; }

/* Siatka lokalizacji (Grid) */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.location-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #fdfdfd;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.location-card:hover {
    border-color: #0a0a0a;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transform: translateY(-3px);
    color: #0a0a0a;
}

/* --- MULTIMEDIA --- */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.video-card {
    background-color: #fdfdfd;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.04);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* Wymuszenie proporcji 16:9 */
    height: 0;
    overflow: hidden;
    background-color: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-info {
    padding: 20px;
}

.video-info h2 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #1a1a1a;
}

.video-disclaimer {
    font-size: 12px;
    color: #777;
    margin: 0;
    line-height: 1.4;
}

.channel-info-card {
    background-color: #f4f6f8;
    border-left: 4px solid #e5b340;
    padding: 25px;
    border-radius: 6px;
    margin-top: 40px;
}

.channel-info-card h2 {
    margin-top: 0;
    font-size: 22px;
    margin-bottom: 15px;
}

.channel-link {
    display: inline-block;
    background-color: #222;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 20px;
    transition: background-color 0.2s ease;
}

.channel-link:hover {
    background-color: #e5b340;
    color: #111;
}

.channel-info-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 10px;
}