body {
    background-color: white;
    /* font-family: Arial, sans-serif; */
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

/* <<< UTILITY BAR SECTION >>> */

.utility-bar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: visible !important;
    z-index: 20;

    height: 5vh;
    width: calc(100% - 4rem);
    margin: 0 2rem 0 2rem;
}
.search-group {
    width: 10%;
    display: flex;
    flex-direction: row;
    border-radius: 10px;
}
.search-input {
    border: none;
    border-bottom: 0.5px solid rgb(188, 186, 186);
    border-radius: 0;
}
.search-button {
    border-radius: 0;
    border: none;
    border-bottom: 0.5px solid rgb(188, 186, 186);
}

@media (max-width: 992px) {
    .utility-bar {
        width: calc(100% - 2rem);
        margin: 0vh 1rem 0vh 1rem;
    }
    .search-group {
        visibility: hidden;
    }
    #utilityNav {
        position: absolute;
        top: 100%;
        right: 1rem;
        background: white;
        z-index: 9999;
        width: max-content;
        border-radius: 8px;
        font-size: 1.1rem !important;
    }
    #utilityNav.collapse {
        transition: height 0.5s ease;
    }
}

/* <<< HEADER SECTION >>> */

.header {
    position: relative;
    display: flex;
    background-color: transparent;
    height: 15vh;

    align-items: center;
    justify-content: space-between;
    text-align: center;
    overflow: hidden;

    width: calc(100% - 22rem);
    margin: 0 11rem 0 11rem;
}

.header-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 70%;
    height: 100%;
}

.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 30%;
}

.logo {
    max-height: 100%;
    width: auto;
    display: block;
    margin-right: 1rem;
    background: transparent;
}

.logo-link {
    display: inline-block;   /* prevents weird stretching */
    text-decoration: none;   /* remove underline */
    line-height: 0;          /* prevent extra space around the image */
}

.school-name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.school-name label {
    color: black;
    text-align: left;
    font-size: 1.4rem;
    font-weight:500;
    line-height: 28px;
}

.auxiliary-img {
    height: 12vh;
    background: transparent;
}

@media (max-width: 992px) {
    .header {
        width: calc(100% - 2rem);
        margin: 0vh 1rem 0vh 1rem;
    }
    .header-left {
        width: 100%;
    }
    .header-right {
        display: none;
    }
    .logo {
        margin: 0vh 1rem 0 0rem;
    }
}

/* <<< MAIN NAV SECTION >>> */

.main-nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: visible !important;
    z-index: 15;
    border-bottom: 2px solid black;

    height: 5vh;
    width: calc(100% - 4rem);
    margin: 0 2rem 0 2rem;
}
.dropdown-menu {
    overflow: hidden;
}
.dropdown-item {
    padding: 8px 16px;
    white-space: nowrap;
}
.main-nav-selected a {
    font-weight:700 !important;
    color: black !important;
}


@media (max-width: 992px) {
    .main-nav {
        justify-content: flex-end !important;
        width: calc(100% - 2rem);
        margin: 0vh 1rem 0vh 1rem;
    }

    #mainNav {
        position: absolute;
        top: 100%;
        right: 1rem;
        background: white;
        z-index: 9999;
        width: max-content;
        border-radius: 8px;
        font-size: 1.1rem !important;
    }

    #mainNav.collapse {
        transition: height 0.5s ease;
    }
}

/* <<< HERO SECTION >>> */

.hero {
    position: relative;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;

    height: 70vh;
    width: calc(100% - 4rem);
    margin: 1rem 2rem 0 2rem;
}
.carousel-item {
    width: 100% !important;
    height: 70vh;
}
.gallery-carousel-img {
    height: 100% !important;
    width: 100% !important;
    object-fit: fill;
    display: block;
}
.carousel-caption-box {
    position: absolute;
    left: 50%;
    bottom: 2%;
    transform: translateX(-50%);
    
    background: rgba(244, 244, 244, 0.8);
    padding: 5px 5px 5px 5px;
    border-radius: 8px;
    color: black;
    font-size: 1.0rem;
    font-weight: 500;
    text-align: center;

    display: flex;
    align-items: center;
    justify-content: center;
    
    margin: 0;
    width: auto;
    min-width: 15%;
    max-width: 90%;
    
    z-index: 10;
    pointer-events: none;
}

.vignette-container {
    position: relative;
}
.vignette-container::after {
    content: "";
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    /* stronger fade */
    /* background: radial-gradient(ellipse, rgba(0,0,0,0) 10%, rgba(0,0,0,0.1) 100%); */
    pointer-events: none;
    z-index: 8;
}

@media (max-width: 992px) {
    .hero {
        width: calc(100% - 2rem);
        height: auto;
        margin: 1rem 1rem 0vh 1rem;
    }
    .carousel-item {
        height:fit-content !important;
    }
    .carousel-caption-box {
        position: relative;
        margin: 1rem 0 1rem 0;
    }
}


/* <<< UNGROUPED SECTION >>> */
nav {
    margin: 20px 0;
}

nav a {
    color:rgb(41, 40, 40);
    text-decoration: none;
    margin: 0 15px;
}

nav a:hover {
    text-decoration: underline;
}

.margin-10-per {
    margin-bottom: 10%;
    margin-top: 10%;
}

.navbar-toggler:focus,
.navbar-toggler:active {
    box-shadow: none;
}

.custom-link {
    color: rgb(55, 54, 54);
    text-decoration: none;
    transition: all 0.3s ease;
}
.custom-link:hover {
    color: #0f53dc;
    text-decoration: underline;
    transform: scale(1.005);
}
.custom-link:active {
    color: #073d99;
}

.vertical-separator {
    color: black;
}

.blocked {
    opacity: 0 !important;
    visibility: hidden;
    /* position: absolute; */
    /* inset: 0; */
    height: 0 !important;
    overflow: hidden !important;
    pointer-events: none;
    display: none;
}

.disco-shadow {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow:
        0 6px 10px rgba(0,0,0,0.10),
        0 12px 24px rgba(0,0,0,0.05),
        0 18px 32px rgba(0,0,0,0.05);
}