﻿

.app-section-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5px 10px 5px 10px;
    width: var(--app-inner-width);
    margin-left: auto;
    margin-right: auto;
}

.app-section {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    padding-bottom: 20px;
    width: 100%;
}

.app-section-inner-right {
    align-items: flex-end;
    justify-content: flex-end;
}

.app-section-overlay {
    background-color: transparent;
    color: white;
    justify-content: center;
    height: 100%;
}

.app-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}

.app-section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 0 40px 0;
    width: 100%;
}

    .app-section-header h1 {
        font-size: clamp(2rem, 5vw, 56px);
    }

    .app-section-header h2 {
        text-align: center;
        margin: 0 auto;
    }

    .app-section-header h3 {
        text-align: center;
        margin: 0 auto;
    }

    .app-section-header p {
        font-size: var(--app-section-subtitle-font-size, 1.25rem);
        max-width: var(--app-section-subtitle-width, 50%);
        margin: 0 auto;
        margin-top: 20px;
    }
.app-section-subheader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 0 40px 0;
    width: 100%;
}

.app-hero-section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 0 40px 0;
    width: 100%;
}

    .app-hero-section-header h1 {
        font-size: clamp(2rem, 5vw, 56px);
        text-align: center;
        margin: 0 auto;
    }


.app-subsection-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.app-section-h1 {
    font-size: clamp(1.75rem, 3.5vw, 32px);
}

.app-section-h2 {
    font-size: clamp(1.5rem, 3vw, 24px);
}

.app-section-h3 {
    font-size: clamp(1.25rem, 2.5vw, 18.72px);
}

.app-section-h4 {
    font-size: clamp(1.125rem, 2vw, 16px);
}

.app-section-h5 {
    font-size: clamp(1rem, 1.5vw, 13.28px);
}

.app-section-h6 {
    font-size: clamp(0.95rem, 1.2vw, 10.72px);
}

.app-section-footer {
    border-top: 1pt solid lightgray;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    margin-top: 10px;
}
.app-section-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    width: 100%;
    margin-top: 10px;
    gap: 10px;
}
.app-section-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
}

.app-section-card-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    gap: 1em;
    padding-top: 10px;
    padding-bottom: 10px;
}
.app-section-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    border-radius: 0.5rem;
    background-color: var(--app-background-color-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 300px;
    max-width: 400px;
}

    .app-section-card h3 {
        margin-bottom: 15px;
    }


.app-section-dashboard {
    display:block;
    width: 100%;
}
