/* PC Resolution: 3440x1440 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lexend", sans-serif;
}

body {
    max-width: 100vw;
    max-height: 100vh;
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 12.5vh;
    display: flex;
    align-items: center;
    z-index: 1000;
    background: transparent;
    transition: background-color 0.35s ease;
}

.navbar .navbarLogo {
    margin-left: 5rem;
    margin-right: 5rem;
}

.navbar .navbarInfo {
    display: flex;
    align-items: center;
}

.navbarInfo ul {
    display: flex;
}

.navbar .navbarInfo li {
    list-style-type: none;
    display: inline-block;
    position: relative;
    margin-left: 3.75rem;
}

.navbar .navbarInfo li a {
    text-decoration: none;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar .navbarInfo li a i {
    color: white;
    font-size: 2.5rem;
    margin-right: 0.75rem;
    transition: color 0.5s ease;
}

.navbar .navbarInfo li a:hover {
    background-color: white;
    color: black;
}

.navbar .navbarInfo li a:hover i {
    color: black;
}

.navbar .navbarSettings {
    margin-left: auto;
    display: flex;
}

.navbar .navbarSettings {
    background: transparent;
    color: white;
    border: none;
    font-weight: bold;
    border-radius: 5px;
    font-size: 2.5rem;
    margin-right: 3rem;
    transition: 0.5s ease;
    cursor: pointer;
}

.navbar .navbarSettings i {
    margin-right: 0.75rem;
}

#EnLang {
    background: transparent;
    text-decoration: none;
    color: white;
    border: none;
    font-weight: bold;
    font-size: 2.5rem;
    border-radius: 5px;
    padding: 12.5px 7px 10px 19px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 50%;
    margin-right: 2rem;
}

#EnLang:hover {
    background-color: white;
    color: black;
}

#headImage {
    filter: brightness(50%);
}

.image-container {
    width: 100%;
    height: 75vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0px 25px 50px -10px rgba(0, 0, 0, 0.5);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#navLogo {
    width: 7.5vw;
    margin-top: 0.75vh;
}

.slogan {
    position: absolute;
    top: 43%;
    margin-left: 30vw;
    transform: translate(-50%, -50%);
    font-size: 19rem;
    font-weight: bolder;
    display: flex;
    align-items: center;
    color: #caa576;
    text-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
}

.scrolling-text {
    height: 29vh;
    overflow: hidden;
    display: inline-block;
    position: relative;
    margin-left: 0.5em;
}

.scrolling-text span {
    display: block;
    height: 30vh;
    animation: scroll 15s ease infinite;
    text-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
}

@keyframes scroll {
    0%, 20% {
        transform: translateY(0);
    }

    25%, 45% {
        transform: translateY(-100%);
    }

    50%, 70% {
        transform: translateY(-200%);
    }
    
    75%, 95% {
        transform: translateY(-300%);
    }
}

.section1, .section2, .section3, .section4, .section5 {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: calc(85% - 10vw);
    margin-top: 2.5vw;
}

.section1 {
    margin-left: 2.5vw;
}

.section1 .imageContent img {
    width: 18.25vw;
}

.section2 {
    margin-right: 2.5vw;
    margin-bottom: 2.5vw;
    float: right;
}

.section2 .imageContent img {
    width: 18.25vw;
}

.section3 {
    margin-left: 2.5vw;
    margin-bottom: 2.5vw;
}

.section3 .imageContent img {
    width: 15.25vw;
}

.section4 {
    margin-right: 2.5vw;
    margin-bottom: 2.5vw;
    float: right;
}

.section5 {
    margin-left: 2.5vw;
    margin-bottom: 2.5vw;
}

.textContent {
    flex: 1;
    background-color: rgba(202, 165, 118, 0.5);
    padding: 20px;
    box-shadow: 0px 15px 25px 5px rgba(0, 0, 0, 0.4);
}

.textContent h1 {
    text-decoration: none;
    font-size: 3.5rem;
    margin: 1rem;
}

.textContent p {
    line-height: 1.5;
    font-family: "Geologica", sans-serif;
    font-size: 2rem;
    margin: 1rem;
}

#readMore {
    font-size: 1.25rem;
    margin: 1rem;
    background-color: #d1924d;
    padding-left: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-radius: 2.5px;
    cursor: pointer;
    width: 8rem;
}

.imageContent img {
    height: auto;
    box-shadow: 0px 15px 25px 5px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease;
}

.imageContent img:hover {
    transform: scale(0.95);
}

.sectionSplit {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.sectionSplit img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    filter: brightness(50%);
}

.footer {
    width: 100%;
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 3vh;
    background-color: black;
    box-shadow: 0px -25px 50px -10px rgba(0, 0, 0, 0.5);
}

.footerLogo {
    width: 20rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.footerSection {
    flex: 1 1 200px;
    margin: 10px;
}

.footerInfo li {
    margin-left: 3rem;
    font-size: 1.25rem;
}

.footerSection h2 {
    margin-top: 1.25rem;
    margin-bottom: 10px;
    font-size: 2rem;
    color: white;
}

.footerSection ul {
    list-style: none;
    padding: 0rem;
}

.footerSection ul li {
    margin-bottom: 8px;
    text-decoration: none;
    color: white;
    transition: color 0.3s;
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1.75;
}

.footerSection ul li a {
    margin-bottom: 8px;
    text-decoration: underline;
    color: white;
    transition: color 0.3s;
    cursor: pointer;
    font-size: 1.25rem;
}

.footerSection ul li a i {
    color: white;
    transition: color 0.3s;
    cursor: pointer;
    font-size: 2.25rem;
    margin-bottom: 8px;
}

.footerSection span {
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 4;
    margin-left: 3rem;
    margin-bottom: 5rem;
    transition: color 0.3s;
    cursor: pointer;
}

.footerSection ul li:hover {
    color: #e47600;
}

.footerSection ul li a:hover {
    color: #e47600;
}

.footerSection ul li a i:hover {
    color: #e47600;
}

.footerSection span:hover {
    color: #e47600;
}

/* Laptop Resolution: 1920x1200 */
@media only screen and (max-width: 1920px) {
    .navbar .navbarLogo {
        margin-left: 2.5rem;
        margin-right: 0.5rem;
    }
    
    .navbar .navbarInfo li {
        margin-left: 1rem;
    }
    
    .navbar .navbarInfo li a {
        font-size: 1.5rem;
    }

    .navbar .navbarInfo li a i {
        font-size: 1.5rem;
    }

    #EnLang {
        font-size: 1.5rem;
        padding: 10px 3px 10px 13px;
        margin-right: 1rem;
    }

    .slogan {
        font-size: 10rem;
        margin-left: 40vw;
    }

    .scrolling-text {
        height: 32vh;
    }
    
    .scrolling-text span {
        height: 40vh;
    }

    .section1, .section2, .section3, .section4, .section5, .section6 {
        width: calc(100% - 5vw);
    }

    .section1 .imageContent img {
        width: 30vw;
    }

    .section2 .imageContent img {
        width: 30vw;
    }

    .section3 .imageContent img {
        width: 24.5vw;
    }
    
    .textContent h1 {
        font-size: 2.5rem;
        margin-left: 1rem;
        margin-top: 0.5rem;
        margin-bottom: 0rem;
    }
    
    .textContent p {
        line-height: 1.5;
        font-size: 1.15rem;
        margin-left: 1rem;
        margin-bottom: 0.5rem;
        margin-top: 0rem;
    }
    
    .imageContent img {
        max-width: 23rem;
    }
    
    .sectionSplit {
        height: 200px;
    }

    .footer {
        width: 100%;
        margin-top: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding-top: 3vh;
        background-color: black;
        box-shadow: 0px -25px 50px -10px rgba(0, 0, 0, 0.5);
    }
    
    .footerLogo {
        width: 12.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left: 1rem;
        margin-bottom: 0.75rem;
        text-align: center;
    }
    
    .footerSection {
        flex: 1 1 200px;
        margin: 10px;
    }
    
    .footerInfo li {
        margin-left: 1.5rem;
        font-size: 1.25rem;
    }
    
    .footerSection h2 {
        margin-top: 0.5rem;
        margin-bottom: 10px;
        font-size: 1.5rem;
        color: white;
    }
    
    .footerSection ul {
        list-style: none;
        padding: 0rem;
    }
    
    .footerSection ul li {
        margin-bottom: 8px;
        text-decoration: none;
        color: white;
        transition: color 0.3s;
        cursor: pointer;
        font-size: 1.15rem;
        line-height: 1.75;
    }
    
    .footerSection ul li a {
        margin-bottom: 8px;
        text-decoration: underline;
        color: white;
        transition: color 0.3s;
        cursor: pointer;
        font-size: 1.15rem;
    }
    
    .footerSection #socialLogo {
        margin-left: 3rem;
    }

    .footerSection ul li a i {
        display: flex;
        color: white;
        transition: color 0.3s;
        cursor: pointer;
        font-size: 2.25rem;
        margin-bottom: 8px;
        margin-left: 3rem;
        line-height: 1.25;
    }
    
    .footerSection span {
        color: white;
        font-size: 1.15rem;
        font-weight: bold;
        line-height: 4;
        margin-left: 1.5rem;
        transition: color 0.3s;
        cursor: pointer;
    }
}

/* Tablet Resolution: 1100x1500 */
@media only screen and (max-width: 1100px) {
    .navbar .navbarInfo li {
        margin-left: 1rem;
    }
    
    .navbar .navbarInfo li a {
        font-size: 1.25rem;
    }

    .navbar .navbarInfo li a i {
        font-size: 1.25rem;
    }

    .scrolling-text {
        height: 15vh;
    }
    
    .footerLogo {
        width: 10rem;
    }
    
    .footerInfo li {
        margin-left: 1.5rem;
        font-size: 0.75rem;
    }
    
    .footerSection h2 {
        margin-top: 0.5rem;
        margin-bottom: 10px;
        font-size: 1rem;
        color: white;
    }
    
    .footerSection ul {
        list-style: none;
        padding: 0rem;
    }
    
    .footerSection ul li {
        margin-bottom: 8px;
        text-decoration: none;
        color: white;
        transition: color 0.3s;
        cursor: pointer;
        font-size: 0.75rem;
        line-height: 1.75;
    }
    
    .footerSection ul li a {
        margin-bottom: 8px;
        text-decoration: underline;
        color: white;
        transition: color 0.3s;
        cursor: pointer;
        font-size: 0.75rem;
    }
    
    .footerSection #socialLogo {
        margin-left: 3rem;
    }

    .footerSection ul li a i {
        display: flex;
        color: white;
        transition: color 0.3s;
        cursor: pointer;
        font-size: 1.75rem;
        margin-bottom: 8px;
        margin-left: 3rem;
        line-height: 1.25;
    }
    
    .footerSection span {
        color: white;
        font-size: 0.75rem;
        font-weight: bold;
        line-height: 4;
        margin-left: 1.5rem;
        transition: color 0.3s;
        cursor: pointer;
    }
}