/* Home page styles */
header {
    background: url('/public/SEASON_11.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

header h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    font-size: 1.2em;
    color: #fff;
    background: #007bff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background: #0056b3;
    transform: scale(1.05);
}

main {
    padding: 40px;
}

.intro-section, .highlights-section, .team-section, .contact-section {
    margin-bottom: 40px;
}

.intro-section h2, .highlights-section h2, .team-section h2, .contact-section h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 15px;
}

.intro-section p, .team-section p, .contact-section p {
    font-size: 1.2em;
    color: #666;
}

.highlight-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.highlight-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    padding: 15px;
}

.highlight-card img {
    width: 100%;
    border-radius: 10px;
}

.highlight-card h3 {
    margin-top: 10px;
    font-size: 1.5em;
    color: #333;
}

.highlight-card p {
    color: #666;
    font-size: 1em;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
}
