/* */
/* Body */
.background_body {
    padding: 0;
    margin: 0;
    background-color: var(--main-background-color);
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;

    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* */
/* Navigation Bar Stuff */
.navigation_bar {
    /* Display */
    display: flex;
    align-items: center;

    /* Blur stuff */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);  

    /* Colors */
    border-bottom: 1px solid var(--generic-glow-color);
    background-color: var(--transparency-effect-background-color);

    /* Navigation bar bottom glow */
    -webkit-box-shadow: var(--plain-accents);
    -moz-box-shadow: var(--plain-accents);
    box-shadow: var(--plain-accents);

    /* Sizing and positioning */
    width: 100%;
    height: 40px;
    padding: 0;
    
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
}

.navigation_bar_text {
    display: inline-block;
    position: relative;
    margin-right: 1.5rem;
    color: var(--title-text-color);
    text-decoration: none;
}

.navigation_bar_text:last-child {
    margin-right: 0;
}

.navigation_bar_text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 1px;
    background: var(--title-text-color);
    transition: width 0.3s ease;
}

.navigation_bar_text:hover::after {
    width: 100%;
}

/* Ensures that content does not get under the navigation bar */
.navigation_bar_invisible_gap {
    margin: 0;
    height: 41px;
    width: 100%
}

/* Dark mode / light mode button */
.theme_toggle_button {
    width: 30px;
    height: 30px;
    background-color: var(--constant-color-div-base);
    border-radius: 8px;
    border-color: var(--card-border-color);

    display: flex;
    align-items: center;
    justify-content: center;
}


/* */
/* Main Content Containers */
.content_section {
    margin: 0;
    width: 100%;
    height: 100%;

    flex: 1 0 auto;
    min-height: 0;

    display: flex;
    justify-content: center;
}

/* Page Content Containers */
.skinny_pane {
    width: 100%;
    max-width: 1000px;
    margin-inline: auto;

    /* Ensures gap for mobile devices */
    padding-inline: clamp(1rem, 4vw, 3rem);
    padding-block: clamp(1.25rem, 3vw, 2rem);

    /* Layout */
    text-align: left;
    display: flex;
    flex-direction: column;
}

.div_in_section {
    display: flex;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 2rem;
}

/* */
/* Brand Name stuff */
.brand_name_acronym {
    font-family: "Anton", sans-serif;
    font-style: normal;
    font-weight: 400;
}

.brand_name_full_name {
    font-family: "Kanit", sans-serif;
    font-style: normal;
    font-weight: 900;
    background: linear-gradient(180deg, rgb(0, 119, 255), #1a1a4c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand_name_acronym_nav_bar_spacing {
    margin-right: 2rem;
    margin-left: 10px;
}

/* */
/* Gaps & separators*/
.big_gap {
    padding: 2rem;
}

.gap {
    padding: 1rem;
}

.mini_gap {
    padding: 0.5rem;
}

.section_separator {
    background-color: var(--title-text-color);
    height: 1px;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 20px;
}

/* */
/* Titles & Page Text */
.sub_section_title {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
    color: var(--title-text-color);
}

.sub_section_text {
    font-size: 1.3rem;
    margin: 0;
    color: var(--paragraph-text-color);
}

/* */
/* Footer */
.footer {
  width: 100%;
  margin-top: 5rem;
  background-color: var(--footer-color);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

* {
  transition: all 0.6s ease;
}

/* Handle mobile devices for navigation bar */
@media (pointer: coarse), (max-width: 475px) {
    .navigation_bar {
        justify-content: center;
    }
    
    .navigation_bar_text {
        margin-left: clamp(3px, 1vw, 10px);;
        margin-right: clamp(3px, 1vw, 10px);;
    }

    .brand_name_acronym_nav_bar_spacing {
        margin-right: 0px
    }
}