/* Variables */
:root {
    --ha_red: #b91a00;
    --ha_gold: #fbae17;
    --ha_grey: #8a98a0;
}

body {
    background-color: #FFF;
    padding: 0;
    font-family: 'Oswald', sans-serif;
}

ul {
    list-style:  none;
    padding-inline-start: 0px;
}

.first-level-list {
    font-weight: bold;
}

#main_content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#sub_content {
    display: flex;
    width: 800px;
    flex-direction: column;    
}

#main_body {
    width: 100%;
    margin: 0 auto;
    padding: 0px;
}

#main_nav {
    width: 100%;
    min-height: 30px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

#main_footer {
    display: flex;
    justify-content: center;
}

#footer_nav {
    width: 75%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;}

#col_1 {
    margin: 0 50px;    
}
#col_2 {
    margin: 0 50px;    
    
}
#col_3 {
    margin: 0 50px;    
    
}

a {
    color: #000000;
    text-decoration: none;

}
.hamburger {
    display: none;
}


a:hover {
    color: var(--ha_red);
}

.main_nav_link {
    text-transform: uppercase;
    margin: 0 30px;
}

#hero_image {
    display: flex;
    justify-content: center;
    width: 25%;
}

#hero_logo {
    display: flex;
    justify-content: center;
    width: 100%;
}

#index_content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    /* align-content: flex-end; */
    align-items: center;}

#main_description {
    width: 800px;
    margin-left: 25px;
}

#store_links {
    display: flex;
    justify-content: space-around;
}

.main_logo {
    max-width: 500px;
    margin-top: 35px;
}

.app_image {
    max-width: 350px;
}

.store_images {
    max-width: 300px;
}

.pricing_section {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
}

.sub_content {
    width: 650px;
}

.app_section-images {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.login_container {
    position: absolute;
    top: 0; 
    right: 10px;
}

.options_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.option-card {
    width: 200px;
    height: 150px;
    background-color: #f0f0f0;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: #333 1px solid;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.75);
}
.tickets {
    display: flex;
}
.ticket {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    width: 300px;
    margin: 10px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}

.ticket p {
    margin: 0;
}
.ticket h3, h4 {
    margin: 0;
}
@media (max-width: 576px) {
    body {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    #index_content {
        flex-direction: column;
    }
    #main_nav {
        flex-direction: column;
        display: none;
    }

    #main_content {
        display: flex;
    }
    .hamburger {
        display: inline-block;
    }
    .main_nav_link {
        margin: 5px 40px;
        font-size: 40px;
    }
    .main_logo {
        max-width: 80%;
    }

    .fa-bars {
        font-size: 36px;
        cursor: pointer;
    }
    #store_links {
        display: flex;
        flex-direction: column;
        align-items: center;    
    }

    #main_description {
        width: 90%;
        font-size: larger;
        margin-left: 0;
    }

    .store_images {
        margin-top: 10px;
    }

    #col_1, #col_2, #col_3 {
        margin: 5px;
    }
    #footer_nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .sub_content {
        width: 100%;
    }

    .pricing_section {
        flex-direction: column;
    }



}


