/* Základné nastavenia */
body {
    background-color: #121212; /* Takmer čierna sivá */
    color: #ffffff;
    font-family: 'Poppins', sans-serif; /* Príklad moderného fontu, treba ho importovať */
    margin: 0;
    text-align: center;
}

/* Import fontu - pridať na začiatok CSS */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

/* Hlavička a logo */
.main-header {
    padding: 20px 0;
}

.logo {
    height: 100px; /* Upravte podľa veľkosti vášho finálneho loga */
    width: auto;
}

/* Hlavná sekcia a slogan */
.hero-section {
    padding: 40px 20px;
}

.slogan {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

.hero-section::before {
    content: 'HERNÁ KOMUNITA'; /* "HERNÁ" z návrhu, dá sa upraviť */
    display: block;
    color: #ff6600; /* Oranžová akcentová */
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}


/* Panely */
.panels-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
}

.panel {
    width: 300px;
    height: 400px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    position: relative;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: flex-end; /* Text dole */
    justify-content: center; /* Text na stred */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.panel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0)); /* Gradient pre lepšiu čitateľnosť textu */
}

.panel:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
}

.panel-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Pozadia pre panely - treba nahrať reálne obrázky */
.panel-f1 { background-image: url('../images/bg-f1.png'); }
.panel-fifa { background-image: url('../images/bg-fifa.png'); }
.panel-streamers { background-image: url('../images/bg-streamers.png'); }


/* Partneri */
.partners-section {
    padding: 60px 20px;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.partner-logo img {
    max-height: 70px;
    filter: grayscale(100%) opacity(0.7);
    transition: filter 0.3s ease;
}

.partner-logo img:hover {
    filter: grayscale(0%) opacity(1);
}

/* Pätička */
.main-footer {
    padding: 40px 20px;
    border-top: 1px solid #333;
    margin-top: 40px;
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    margin: 0 15px;
}

.social-links img {
    height: 24px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-links img:hover {
    opacity: 1;
}

.main-footer p {
    font-size: 0.9rem;
    color: #888;
}

/* Responzivita pre mobilné zariadenia */
@media (max-width: 768px) {
    .slogan {
        font-size: 2rem;
    }
    .panels-section {
        flex-direction: column;
        align-items: center;
    }
}