*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#111;
    color:#fff;
    line-height:1.6;
}

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    background:
        linear-gradient(rgba(0,0,0,.70),rgba(0,0,0,.70)),
        url('../images/hero.jpg') center center/cover no-repeat;
    overflow:hidden;
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to bottom,
        rgba(0,0,0,.35),
        rgba(0,0,0,.80));
}

.content{
    position:relative;
    z-index:2;
    width:90%;
    max-width:1000px;
}

.logo{
    width:240px;
    max-width:90%;
    margin-bottom:25px;
}

h1{
    font-size:3.5rem;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#fff;
}

.tagline{
    margin-top:15px;
    color:#00c853;
    font-size:1.2rem;
    font-weight:500;
}

.event{
    padding:90px 20px;
    background:#181818;
    text-align:center;
}

.event h2{
    font-size:2rem;
    margin-bottom:35px;
    color:#ffd400;
    text-transform:uppercase;
}

.flyer{
    width:100%;
    max-width:700px;
    border-radius:12px;
    box-shadow:0 0 30px rgba(0,0,0,.45);
    transition:.3s;
}

.flyer:hover{
    transform:scale(1.02);
}

.contact{
    padding:70px 20px;
    text-align:center;
    background:#101010;
}

.contact h2{
    color:#e53935;
    font-size:2rem;
    margin-bottom:20px;
}

.contact p{
    font-size:1rem;
    color:#fff;
}

footer{
    padding:35px 20px;
    text-align:center;
    background:#000;
    border-top:4px solid #d50000;
}

footer p{
    margin-bottom:8px;
    color:#ccc;
}

footer small{
    color:#777;
}

@media(max-width:768px){

    .hero{
        min-height:75vh;
    }

    h1{
        font-size:2.2rem;
    }

    .tagline{
        font-size:1rem;
    }

    .logo{
        width:170px;
    }

    .contact p{
        font-size:1.5rem;
    }

}