/* 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;
    min-height: 400px;
    margin: 10px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}

.ticket p {
    margin: 0;
}
.ticket h3, h4 {
    margin: 0;
}

.pit_ticket {
    max-width: 300px;
    height: auto;
}

/* ── Auth Forms ────────────────────────────────────────────────── */

.auth-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.auth-card h2 {
    margin: 0 0 8px;
    font-size: 1.8rem;
    color: #222;
}

.auth-card .auth-subtitle {
    margin: 0 0 24px;
    color: var(--ha_grey);
    font-size: 0.95rem;
    font-weight: 300;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--ha_gold);
    box-shadow: 0 0 0 3px rgba(251, 174, 23, 0.15);
}

.form-group input.is-invalid,
.form-group select.is-invalid {
    border-color: var(--ha_red);
}

.field-error {
    display: block;
    margin-top: 4px;
    color: var(--ha_red);
    font-size: 0.82rem;
    font-weight: 400;
}

.btn-primary {
    display: block;
    width: 100%;
    padding: 14px;
    background-color: var(--ha_red);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    margin-top: 24px;
}

.btn-primary:hover {
    background-color: #9a1600;
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-primary:focus-visible {
    outline: 3px solid var(--ha_gold);
    outline-offset: 2px;
}

.auth-links {
    margin-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

.auth-links a {
    color: var(--ha_red);
    font-weight: 400;
}

.auth-links a:hover {
    text-decoration: underline;
}

.auth-divider {
    display: flex;
    align-items: center;
    margin: 16px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e0e0e0;
}

.auth-divider span {
    padding: 0 12px;
    color: var(--ha_grey);
    font-size: 0.85rem;
    font-weight: 300;
}

.alert {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 18px;
    font-size: 0.9rem;
    font-weight: 400;
}

.alert-success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.alert-danger {
    background-color: #fbe9e7;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.auth-terms {
    font-size: 0.82rem;
    color: var(--ha_grey);
    margin-top: 16px;
    text-align: center;
}

.auth-terms a {
    color: var(--ha_red);
}

/* ── Responsive ───────────────────────────────────────────────── */

@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%;
    }

    .auth-card {
        padding: 24px 20px;
        margin: 0 12px;
    }

    .pricing_section {
        flex-direction: column;
    }



}


