/* ==========================================
   CAMPFEST 2027
   Holding Page Styles
   ========================================== */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: #111;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

.hero{

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

    padding:20px;

}

.logo{

    width:80%;

    max-width:900px;

    height:auto;

    margin-top:10px;

    margin-bottom:10px;
}

h2{

    font-size:2.5rem;

    color:#ffb300;

    margin-bottom:10px;

}

p{

    font-size:1.4rem;

    margin-bottom:20px;

}

.tagline {

    font-size: 1.1rem;

    color: #dddddd;

    margin-bottom: 40px;
}

#countdown{

    margin: top 10px;

    padding:15px 30px;

    border:3px solid #ffb300;

    border-radius:12px;

    font-size:1.5rem;

    font-weight:bold;

}

.comingsoon{

    margin-top:20px;

    color:#bbbbbb;

    font-size:1.2rem;


}

.venue{

    font-size:1.5rem;

    color: white;

    margin: bottom 20px;;

}

/* Mobile */

@media (max-width:768px){

    .logo{

        width:95%;
    }

    h2{

        font-size:1.6rem;
    }

    p{

        font-size:1rem;
    }
    .venue{

        font-size:1.2rem;
        }

    #countdown{

        font-size:1.2rem;

        min-width:260px;

        padding:15px;
    }

}