﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navbar container */
.navbar {
    overflow: hidden;
    background-color: white;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.5rem, 0.5vw, 5rem);
}

.navbar-logo-container {
    width: 15vw;
    margin-right: 10px;
}

.navbar-logo-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
}


/* The dropdown container */
.dropdown {
    float: left;
    overflow: hidden;
}

    /* Dropdown button */
    .dropdown .dropbtn {
        font-size: 1.2rem;
        font-weight: 600;
        border: none;
        outline: none;
        color: black;
        padding: 14px 16px;
        background-color: inherit;
        font-family: inherit; /* Important for vertical align on mobile phones */
        margin: 0; /* Important for vertical align on mobile phones */
    }

    .dropdown .dropbtn a {
        text-decoration: none;
        color: inherit;
    }


/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    /* Links inside the dropdown */
    .dropdown-content a {
        float: none;
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }

        /* Add a grey background color to dropdown links on hover */
        .dropdown-content a:hover {
            background-color: #ddd;
        }

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* ================= MOBILE ================= */

.navbar-mobile {
    display: none;
    padding: 10px 20px;
}

.mobile-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-top img {
    height: 45px;
}

.hamburger {
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    margin-top: 15px;
}

.mobile-menu a {
    font-family: 'Montserrat', sans-serif;
    padding: 12px 0;
    text-decoration: none;
    color: #224260;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.mobile-menu.active {
    display: flex;
}

.section1{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #224260;
    color: white;
    font-family: 'Century Gothic', sans-serif;
    text-align: center;
    padding: 2rem;

}

.about-caption {
    font-size: 1.5rem;
    font-weight: 400;
}

.about-title {
    font-size: 1.25rem;
    max-width: 28vw;
    margin: 0 auto;
}

.about-text {
    font-size: 1.5rem;
    line-height: 1.5;
    margin: 15px 10vw;
}

.section2 {
    display: flex;
    width: 100%;
    height: 400px; 
    overflow: hidden; 
}

.hero-left,
.hero-right {
    flex: 1; 
}

.hero-left img,
.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.section3 {
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #224260;
    font-family: 'Century Gothic', sans-serif;
    padding: 2rem;
}

.section3-title {
    font-size: 2rem;
    font-weight: bold;
}

.section3-text {
    font-size: 1.5rem;
    white-space: pre-line;
    line-height: 1.5;
    margin: 10px 10vw;
}

.section4 {
    padding: 0;
    margin: 0;
}
.section4 img{
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.section5 {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    text-align: center;
    background-color: #224260;
    color: white;
    font-family: 'Century Gothic', sans-serif
}

.section5-caption {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: bold;
}

.section5-text{
    font-size: 1.3rem;
    margin: 10px 30vw;
}

.section5-values {
    font-size: 2.5rem;
    line-height: 2;
    white-space: pre-line;
    padding: 10px;
}
.section6 {
    background-image: url('../images/herobanner05.png');
    background-size: cover;
    background-position: center;
    min-height: 80vh; /* Adjust based on your image height */
    display: flex;
    align-items: flex-end; /* Keeps text near the bottom as in your original */
    padding: 60px 80px; /* Increased padding to match image margins */

    font-family: 'Century Gothic', sans-serif;
    color: white;
    line-height: 1.4;
    font-size: 1.4rem; /* Slightly larger to match visual weight */
}

.section6 .content-wrapper {
    max-width: 900px; /* Constrains text width like the image */
}

.section6 p {
    margin-bottom: 1.2rem; /* Spacing between the text blocks */
}



/* ================= RESPONSIVE BREAKPOINT ================= */

@media (max-width: 768px) {

    .navbar {
        display: none;
    }

    .navbar-mobile {
        display: block;
    }

    .section1 {
        padding: 1rem;
    }

    .about-caption {
        font-size: 1.5rem;
        font-weight: 400;
    }

    .about-title {
        font-size: 1rem;
        max-width: 60vw;
    }

    .about-text {
        font-size: 1rem;
        margin: 15px 5vw;
    }

    .section2 {
        height: 200px;
    }

    .hero-left img,
    .hero-right img {
        height: 200px;
    }

    .section3 {
        padding: 1rem;
    }

    .section3-title {
        font-size: 1.5rem;
    }

    .section3-text {
        font-size: 1rem;
        margin: 5px 10vw;
    }

    .section5 {
        padding: 1rem;
    }

    .section5-caption {
        font-size: 1.5rem;
    }

    .section5-text {
        font-size: 1rem;
        margin: 5px 10vw;
    }

    .section5-values {
        font-size: 1.5rem;
        line-height: 2;
        white-space: pre-line;
        padding: 10px;
    }

    .section6 {
        padding: 3rem; /* Increased padding to match image margins */
        font-size: 1.25rem; /* Slightly larger to match visual weight */
    }
}


