/* Hero section */
.hero {
background: url('../FPL_Soup_Main_turquoise.png') center center/cover no-repeat;
height: 60vh;
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
}


.hero-content {
text-align: center;
color: var(--turquoise);
animation: zoomIn 2s ease forwards;
opacity: 0;
}

.hero-logo {
width: 120px;
height: 120px;
object-fit: contain;
margin-bottom: 10px;
filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}


.hero-title {
font-size: 4rem;
font-weight: 900;
margin: 0;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(64, 224, 208, 0.3);
}


.hero-subtitle {
font-size: 1.5rem;
font-weight: 500;
margin-top: 0.5rem;
color: var(--grey);
text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}


@keyframes zoomIn {
0% { transform: scale(0.5); opacity: 0; }
100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
    .hero {
        height: 50vh;
    }

    .hero-logo {
        width: 80px;
        height: 80px;
        margin-bottom: 8px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        width: 50%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 45vh;
    }

    .hero-logo {
        width: 60px;
        height: 60px;
        margin-bottom: 6px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        width: 50%;
        margin-left: auto;
        margin-right: auto;
    }
}

main {
    padding: 40px;
    font-size: 16px
}