/* Header Background */
.header-background {
    position: relative;
    min-height: 60vh;
    overflow: hidden;
    background-color: #0d0e10;
}

/* Hero Section */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-attachment: fixed;
    background-position: top;
    background-repeat: no-repeat;
    filter: brightness(0.5) blur(5px);
    background-image: url("../../images/backgrounds/TournamentPage/tournamentHeader.webp");
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeIn 2s ease-in-out;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    color: #b8b8b8;
}

/* Pozvané školy Section */
.pozvané-školy {
    padding: 5rem 2rem;
    background-color: #08080C;
    color: white;
    text-align: center;
}

.pozvané-školy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.pozvané-školy h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}
.pozvané-školy .description {
    font-size: 1.1rem;
    color: #b8b8b8;
    margin-bottom: 2rem;
}
/* PDF Container for Desktop */
.pdf-container {
    display: block;
    margin-bottom: 2rem;
}

.pdf-container iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 12px;
}

/* Download Button for Mobile */
.download-button {
    display: none;
    margin-top: 2rem;
}

.download-button a {
    background-color: #1e1e1e;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.download-button a:hover {
    background-color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pdf-container {
        display: none;
    }

    .download-button {
        display: block;
    }
}


/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* Mobile Styles */
@media (max-width: 768px) {
    /* Header Background */
    .header-background {
        min-height: 50vh;
    }

    /* Hero Section */
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* Pozvané školy Section */
    .pozvané-školy {
        padding: 2rem 1rem;
    }

    .pozvané-školy h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .pozvané-školy .description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* PDF Container for Mobile */
    .pdf-container {
        display: none;
    }

    /* Download Button for Mobile */
    .download-button {
        display: block;
        margin-top: 1.5rem;
    }

    .download-button a {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}
