/* Insert Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ************ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 10px;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text-color);

    --bg-color: #fff;
    --accent-color: #BB0D2F;
    --dark-text-color: #1e1e1e;
    --light-text-color: #fff;
    
    --nav-bg-color: #c1020200;
    --menu-bg-color: #BB0D2F;
    --nav-text-color: #fff;

    --card-text-color: #fff;
    --card-overlay-color: #BB0D2Fcc;

    --h2-line-color: #fff;

    --main-section-text-color: #fff;

    --footer-bg-color: #BB0D2F;
    --footer-text-color: #fff;    
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
}

h1 {
    font-size: clamp(4rem, 7vw, 8rem);
    font-weight: 700;
    line-height: 1.05;
    /* max-width: 600px; */
}

.pages-header {
    font-size: clamp(3rem, 6vw, 7rem);
    /* color: var(--dark-text-color); */
}

h2 {
    font-size: clamp(2.8rem, 4vw, 4.5rem);
    font-weight: 700;
    text-align: left;
    position: relative;
    margin-bottom: 10px;
}

h3 {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 10px;
}


/* Line under h2 */
/* h2:after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 2px;
    background-color: var(--h2-line-color);
} */

/* Style for anchor elements */
a {
    text-decoration: none;
    color: inherit;
}

/* Style for list elements */
ul {
    list-style: none;
}

/* Style for paragraph elements */
p {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 700px;
}

/* Add this class to images that will serve as background images occupying full with and height */
.bg-img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Add this wrapper class to paragraphs that will have 2 columns */
.sec-text {
    position: relative;
    width: 100%;
    columns: 2;
    column-gap: 50px;
}

/* Section with accent background */
.accent-sec  {
    color: var(--light-text-color);
    background-color: var(--accent-color);
}

/* Add this class to paragraph titles */
.paragraph-title {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.6rem;
    align-self: flex-start;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--accent-color);
    color: var(--light-text-color);
    font-size: 1.4rem;
    font-weight: 600;
    height: 40px;
    min-width: 175px;
    max-width: 250px;
    margin-top: 30px;
    padding: 0 35px;
    border-radius: 50px;
    transition: .3s ease-out;
}

.button:hover {
    background-color: #e22020;
}

.buttons-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

@media screen and (max-width: 900px) {
    
    .button {
        font-size: 1.2rem;
        height: 35px;
    }
}

section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sec-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 70px 50px 50px 50px;
    width: min(100vw, 1150px);
}

.cards-wrap {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    margin-top: 50px;
    width: 100%;
}

.card {
    position: relative;
    margin-bottom: 50px;
    width: 100%;
    height: max-content;
    display: flex;
    align-items: center;
    color: var(--card-text-color);
    font-weight: 600;
}

.card img, .small-card img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.card .overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
    background-color: var(--card-overlay-color);
}

.card-content {
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 2;
    font-size: 2rem;
    padding: 50px;
}

.card-buttons {
    position: relative;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    margin-top: 20px;
}

.two-col {
    padding-right: 50px;
}

.card-text {
    height: 50px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.card a {
    height: 40px;
    width: 245px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 20px;
    margin-right: 35px;
    border: 1px solid var(--card-text-color);
    transition: .3s ease-out;
}

.card a:hover {
    background-color: var(--card-text-color);
    color: var(--dark-text-color) !important;
}

.video {
    position: relative;
    margin-top: 40px;
    width: min(100%, 800px);
    
    border: 2px solid #000;
}

.video video {
    height: auto;
    width: 100%;
}

.calendars-wrap {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 20px;
}

.calendars-wrap img {
    height: 240px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

/* Header */

header {
    position: absolute;
    top: 40px;
    left: 0;
    height: 100px;
    width: 100vw;
    display: flex;
    justify-content: center;
    padding: 0 50px;
    background-color: var(--nav-bg-color);
    z-index: 10;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--nav-text-color);
}

header.active {
    position: fixed;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: min(95vw, 1450px);
}

header nav ul {
    position: relative;
    top: 3px;
    display: flex;
}

header nav ul li a {
    padding: 5px;
    margin: 0 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0);
}

header nav ul li a:hover {
    border-bottom: 1.5px solid var(--nav-text-color);
}

header nav .header-logo {
    height: 50px;
}

header nav .menus-arrow {
    height: 7px;
    position: relative;
    margin-left: 10px;
}


.hamburger-menu {
    display: none;
    position: relative;
    overflow: hidden;
    width: 45px;
    height: 30px;
    align-items: center;
    cursor: pointer;
}

.hamburger-menu div {
    transition: transform 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.line-1 {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 100%;
    height: 1px;
    margin-right: auto;
    margin-left: auto;
    background-color: var(--nav-text-color);
    border-radius: 3px;
    transition: .6s ease-out;

    transform: translate3d(0px, -6px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg); 
    transform-style: preserve-3d;
}

.line-2 {
    position: absolute;
    left: 0;
    right: 0;
    display: block;
    width: 100%;
    height: 1px;
    margin-right: auto;
    margin-left: auto;
    background-color: var(--nav-text-color);
    border-radius: 3px;
    transition: 6s ease-out;

    transform: translate3d(0px, 6px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg); 
    transform-style: preserve-3d; 
}

.line-1.closed {
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(45deg) skew(0deg, 0deg); 
    transform-style: preserve-3d; 
}

.line-2.closed {
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(-45deg) skew(0deg, 0deg); 
    transform-style: preserve-3d; 
}

@media screen and (max-width: 1375px) {
    
    header {
        font-size: 1.4rem;
    }

    header nav ul li a {
        margin: 0 10px;
    }
}

@media screen and (max-width: 1220px) {
    
    header {
        height: 90px;
        padding: 0 30px;
    }

    header nav {
        width: min(95vw, 1450px);
    }

    header nav .header-logo {
        height: 35px;
    }
}

@media screen and (max-width: 1115px) {
    
    header {
        padding: 0 50px;
    }

    header nav{
        width: min(90vw, 1450px);
    }

    .hamburger-menu {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        align-items: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
    }

    header nav ul {
        display: none;
    }
}

@media screen and (max-width: 500px) {

    header {
        padding: 0 20px;
    }
    

    .hamburger-menu {
        height: 20px;
    }

    .banner {
        font-size: 1.2rem;
    }
}


.menu {
    position: fixed;
    left: -100vw;
    height: 100vh;
    width: 100vw;
    background-color: var(--menu-bg-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9;
    transition: .6s;
    transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
    color: var(--nav-text-color);
    overflow-y: auto;
    padding-bottom: 80px;
}

.menu.active {
    left: 0;
}

.menu ul {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
    margin-top: 200px;
    padding-right: 10vw;
}

.menu ul li {
    padding: 25px 0;
}

.menu p {
    position: relative;
    font-size: 1.8rem;
    text-align: center;
    width: min(90vw, 550px);
    left: 50%;
    transform: translateX(-50%);
    line-height: 1.9;
    margin-top: 90px;
}

.menu ul a {
    display: flex;
    line-height: 1;
    align-items: center;
    font-weight: 500;
    text-align: end;
}

.menu .menus-arrow {
    height: 10px;
    margin-right: 15px;
}




/* Section 1 */

.sec-1 {
    position: relative;
    color: var(--main-section-text-color);
    height: 100vh;
    width: 100%;
    left: 0;
    top: 0;
}

.cover-img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: brightness(.7);
}

.layer-blur {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
}

.sec-1 .text-wrap {
    position: absolute;
    left: 200px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    padding-right: 50px;
}

.sec-1 span {
    font-size: clamp(1.4rem, 2vw, 2.2rem);
    display: block;
    position: relative;
    margin-bottom: 5px;
    font-weight: 700;
}

.sec-1 .button {
    width: 175px;
}

@media screen and (max-width: 900px) {
    
    .sec-1 .text-wrap {
        left: 10vw;
    }

    p {
        font-size: 1.4rem;
    }

    .paragraph-title {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 750px) {
    
    .sec-text {
        columns: 1;
    }

    .section-logo {
        height: 110px;
    }

}


/* box section */

.box-section {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    margin-bottom: 50px;
}

.box-section .row {
    position: relative;
    display: flex;
    align-items: center;
}

.box-section .row img {
    position: relative;
    width: 50%;
    object-fit: cover;
}

.box-section .row .row-text {
    width: 50%;
    padding: 80px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media screen and (max-width: 1200px) {
    
    .box-section .row .row-text {
        padding: 40px 50px;
    }
}

@media screen and (max-width: 800px) {
    
    .box-section .row {
        margin-top: 50px;
    }

    .box-section .row img {
        width: 100%;
        height: 100%;
        position: absolute;
        opacity: .15;
    }

    .box-section .row .row-text {
        position: relative;
        z-index: 1;
        width: 100%;
        padding: 50px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* Campus dining map */

.campus-dining-map {
    width: 100%;
    margin-top: 50px;
}


/* Pages */


.title-sec{
    color: var(--main-section-text-color);
    height: min(430px, 35vh);
    width: 100vw;
    left: 0;
    top: 0;
    background-color: var(--accent-color);
}

.title-img {
    position: absolute;
    height: 75%;
    /* width: 100%; */
    object-fit: contain;
    left: 50%;
    opacity: .1;
    transform: translate(-50%, -50%);
    max-width: 100vw;
    top: 50%;
    /* filter: brightness(.7); */
}

.title-sec .text-wrap {
    position: absolute;
    left: 50%;
    top: 62%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.small-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 100px;
}

.no-mt {
    margin-top: 0 !important;
}

.small-sec {
    width: 45%;
}

.small-sec-long {
    width: 100%;
}

.gallery-wrap {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.gallery-wrap img {
    width: min(330px, 100%);
    height: 240px;
    object-fit: cover;
}

.ci-gallery-wrap {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.ci-wrap {
    position: relative;
    width: min(330px, 100%);
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ci-wrap img {
    position: relative;
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: .3;
}

.ci-wrap .button {
    position: absolute;
    z-index: 1;
    cursor: pointer;
}

.retail-header {
    font-size: 2rem;
    font-weight: 600;
    margin-top: 80px;
    margin-bottom: 20px;
}

.logo-wrap {
    display: flex;
    flex-wrap: wrap;
    column-gap: 70px;
    row-gap: 30px;
}

.logo-wrap img {
    object-fit: contain;
    max-width: 150px;
    max-height: 120px;
}

@media screen and (max-width: 800px) {
 
    .retail-header {
        font-size: 1.6rem;
    }

    .logo-wrap img {
        object-fit: contain;
        max-width: 100px;
        max-height: 80px;
    }
}

.galleries-wrap {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: 101;
    display: none;
    pointer-events: none;
    align-items: center;
    justify-content: center;
}

.galleries-wrap.active {
    pointer-events: all;
    display: flex;
}

.gallery-overlay {
    position: absolute;
    height: 100vh;
    width: 100vw;
    background-color: #000000ba;
    cursor: pointer;
}

.gallery-row {
    width: min(80vw, 850px);
    height: auto;
    position: absolute;
    display: flex;
    align-items: center;
}

.gallery {
    position: relative;
    width: 100%;
    overflow-x: scroll;
    align-items: center;
    gap: 50px;
    display: none;
}

.gallery.active {
    display: flex;
}

.gallery img {
    position: relative;
    min-width: 100%;
    max-height: 95vh;
    object-fit: contain;
}

.gallery-row .arrow {
    position: absolute;
    width: 80px; 
    padding: 20px;
    cursor: pointer;
    transition: .3s ease-out;
}

.gallery-row .arrow:hover {
    transform: scale(1.1);
}

.scroll-caption {
    display: flex;
    gap: 25px;
    position: absolute;
    color: #fff;
    margin-right: 5vw;
    left: 50px;
    /* transform: translateX(-50%); */
    top: 10vh;
    font-size: 40px;
}

.scroll-caption img {
    width: 35px;
}

/* .gallery-contents {
    position: relative;
    display: flex;
    width: 100%;
    height: auto;
} */

.arrow.left {
    left: -100px;
}

.arrow.right {
    right: -100px;
}

@media screen and (max-width: 950px) {

    .gallery-row .arrow {
        width: 60px; 
    }
    
    .arrow.left {
        left: -60px;
    }
    
    .arrow.right {
        right: -60px;
    }
}

@media screen and (max-width: 750px) {
    
    .small-sec {
        width: 100%;
    }

    .small-row {
        margin-top: 50px;
    }

    .small-mt-50 {
        margin-top: 50px;
    }

    .scroll-caption {
        display: flex;
        gap: 25px;
        position: absolute;
        color: #fff;
        margin-right: 5vw;
        left: 50px;
        /* transform: translateX(-50%); */
        top: 15vh;
        font-size: 30px;
    }

    .scroll-caption img {
        width: 30px;
    }
}

/* Footer */

footer {
    background-color: var(--footer-bg-color);
    color: var(--footer-text-color);
    display: flex;
    padding: 100px 50px 10px 50px;
    justify-content: center;
}

.footer-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(80vw, 900px);
}

.footer-logo {
    width: min(180px, 50vw);
    margin-bottom: 60px;
}

.footer-text {
    font-style: italic;
    text-align: center;
    font-weight: 400;
    max-width: 500px;
    line-height: 1.7;
}

footer .line {
    position: relative;
    width: min(90vw, 590px);
    background-color: #ffffff5f;
    height: 1px;
    margin: 40px 0;
}

footer ul {
    display: flex;
    margin-bottom: 90px;
    flex-wrap: wrap;
    justify-content: center;
}

footer ul li {
    margin: 5px 0;
    font-weight: 600;
}

footer ul li a {
    padding: 5px;
    margin: 0 15px;
    font-size: 1.4rem;
    border-bottom: 1.5px solid var(--footer-bg-color);
}

footer ul li a:hover {
    border-bottom: 1.5px solid var(--footer-text-color);
}

.copyright {
    text-align: center;
    max-width: 500px;
    padding: 0 20px;
    line-height: 2;
}

@media screen and (max-width: 840px) {
    
    footer ul {
        justify-content: center;
    }

    footer ul li {
        margin: 10px 0;
    }

    footer ul li a {
        padding: 10px 5px;
        font-size: 1.2rem;
    }
}