/*-- -------------------------- -->
<---     Hero                   -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem){
    #hero{
        padding: var(--headerPadding);
        background-color: #fff;
        overflow: hidden;
    }
    #hero h2{
        font-size: 2rem;
    }
    #hero p{
        font-size: 1.5rem;
    }
    .hero-container{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .hero-content{
        max-width: 70%;
        line-height: 1.5em;
    }
    .hero-btn {
        display: inline-block;
        margin-top: 1.5rem;
        padding: 1rem 2rem;
        background-color: var(--secondary);
        color: #fff;
        text-decoration: none;
        border-radius: 8px;
        font-size: 1.4rem;
        font-weight: 600;
        transition: background-color 0.2s ease, transform 0.15s ease;
    }
    .hero-btn:hover {
        background-color: #5a3ca0;
    }
}
@media only screen and (max-width: 63.9375rem){
    #hero {
        padding: 1rem 0.2rem;
    }
    .hero-container{
        padding: 1rem;
    }
}

/*-- -------------------------- -->
<---     Camp Guides            -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem){
    #camp-guides {
        background-color: #f7f7f7;
        padding: 3rem 2rem;
        margin: 2rem 0;
    }
    .camp-guides-container{
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .camp-guides-container h2 {
        text-align: center;
        margin-bottom: 2rem;
        font-size: 2rem;
    }
    #state-camps.alt-bg {
        background-color: #f8f5ff;
    }   
    .category-links{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        width: 100%;
        max-width: 900px;
    }
    .category-link{
        background-color: var(--secondary);
        color: #fff;
        text-decoration: none;
        padding: 1.5rem 1rem;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    .category-link:hover{
        transform: translateY(-3px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        text-decoration: none;
    }
    .category-name{
        font-size: 1.4rem;
        font-weight: 600;
        color: #fff;
    }
}

@media only screen and (max-width: 63.9375rem){
    #camp-guides {
        padding: 2rem 1rem;
    }
    .category-links{
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    .category-link{
        padding: 1.2rem 0.8rem;
    }
    .category-name{
        font-size: 1.2rem;
    }
}

/*-- -------------------------- -->
<---     State Camps            -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem){
    #state-camps {
        padding: 3rem 2rem;
        background-color: #fff;
    }
    .state-camps-container{
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .state-camps-container h2 {
        text-align: center;
        margin-bottom: 1rem;
        font-size: 2rem;
    }
    .state-camps-intro {
        text-align: center;
        max-width: 700px;
        margin-bottom: 2rem;
        color: #666;
        font-size: 1.3rem;
    }
    .states-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 1rem;
        width: 100%;
    }
    #state-camps .state-link {
        color: var(--secondary);
        text-decoration: none;
        font-size: 1.3rem;
        padding: 0.8rem 1rem;
        border: 2px solid var(--secondary);
        border-radius: 5px;
        text-align: center;
        transition: all 0.3s ease;
        background-color: #fff;
        display: block;
    }
    #state-camps .state-link:hover {
        background-color: var(--secondary);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    }
}

@media only screen and (max-width: 63.9375rem){
    #state-camps {
        padding: 2rem 1rem;
    }
    .states-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 0.8rem;
    }
    #state-camps .state-link {
        font-size: 1.1rem;
        padding: 0.6rem 0.8rem;
    }
}

/*-- -------------------------- -->
<---     State Links (OLD)      -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem){
    .state-pages-container{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 1rem 2rem;
    }
    .state-links{
        display: flex;
        align-items: center;
        gap: 2rem;
        flex-wrap: wrap;
        max-width: 100%;
    }
    .state-link{
        flex: 1 1 10rem;
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width: 63.9375rem){
    .state-links{
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .state-link {
        width: 100%;
        margin: 0.5rem 0;
        flex: 1 1 2rem;
    }
}