* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Montserrat', sans-serif;
}

header {
    width: 100%;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #008ef2;
}

body {
    height: auto;
    display: flex;
    flex-direction: column;
    background-size: cover;
    background: url(src/about.jpg);
    background-size: cover;
    background-position: bottom bottom;
    flex: 1 0 center;
}

footer {
    background-color: #008ef2;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 5vh;
    color: white;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

p {
    margin: 0;
}

/* Navigation Bar */

.navbar {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
}

.navbar .logo {
    transition: transform 0.3s ease-in-out;
}

.navbar .logo img {
    object-fit: contain;
    height: 100px; 
    width: 200px; 
    border-radius: 10px;
}

.navbar .logo:hover {
    transform: scale(1.2);
}

.navbar .links {
    display: flex;
    gap: 2rem;
    margin-top: 20px;
}

.navbar .links a{
    color: #ffff;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 2px 15px;
    transition: 0.3s;
    transition-property: inherit;
    transform: scale(0.4) ease;
}

header .links a:hover,
header .links a.active{
    scale: 1.3;
    background: #ffff;
    color: black;
    border-radius: 20px;
}

.navbar .toggle_btn {
    color: #ffff;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.action_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffff;
    color: black;
    height: 50px;
    width: 200px;
    text-align: center;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.action_btn:hover{
    scale: 1.1;
}

.action_btn:active{
    scale: 0.95;
}

li{
    list-style: none;
}

a{
    text-decoration: none;
    color: #ffff;
    font-size: 1rem;
}

h1 {
    color: #ffff;
    font-size: 40px;
    text-transform: uppercase;
    align-items: center;
    justify-content: center;
    display: flex;
}

/* Dropdown Menu */

.dropdown_menu {
    display: none;
    position: absolute;
    right: 2rem;
    top: 60px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown_menu.open {
    display: flex;
    flex-direction: column;
    height: auto;
}

.dropdown_menu li {
    padding: 0.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dropdown_menu .action_btn {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* MAIN */

.mission-vision {
    height: 80vh;
    width: auto;
    display: flex;
}

.mv-holder {
    height: 35vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #008ef2;
}

.mv-content {
    height: 60%;
    width: 80%;
    gap: 1.5rem;
    display: flex;
    flex-direction: column;
    text-align: justify;
    align-items: center;
    justify-content: center;
    color: #ffff;
}

.mv-holder .mv-content h1 {
    font-family: 'Montserrat';
    font-size: 50px;
    font-weight: bold;
    color: #ffff;
}

.mv-holder .mv-content p {
    font-family: 'Source Sans 3';
    font-size: 18px;
}

.maps-holder {
    width: 100%;
    height: 25vh;
}

/* CONTACTS */

.contacts {
    height: auto;
    width: 100%;
    background: #008ef2;
    color: #fff;
    display: flex;
    flex-direction: row;
}

.contacts-holder {
    height: auto;
    width: 60%;
    display: flex;
    flex-direction: column;
}

.contacts-header {
    height: 30%;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.contacts-holder .contacts-header h2 {
    font-family: 'Montserrat';
    font-size: 30px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contacts-content-holder {
    height: 80%;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 3rem;
}

.separation {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 5px;
}

.separation p {
    font-family: 'Source Sans 3';
    padding-left: 20px;
    font-size: 18px;
}

.about-container {
    height: auto;
    width: 40%;
    display: flex;
    flex-direction: column;
}

.about-header {
    height: 30%;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.about-holder {
    height: 80%;
    width: 100%;
    text-align: justify;
}

.about-container .about-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.about-container .about-holder p {
    font-family: 'Source Sans 3';
    font-size: 18px;
}

.about-holder,
.about-header,
.contacts-header,
.contacts-content-holder {
    width: 100%;
    padding: 5px 20px;
}

/* Responsive Styles */

/* Mobile Phones (up to 767px) */
@media only screen and (min-width: 360px) and (max-width: 767px) {
    .navbar .links, .navbar .action_btn {
        display: none;
    }

    .navbar .toggle_btn {
        display: block;
    }

    .dropdown_menu {
        left: 2rem;
        width: unset;
        z-index: 100;
    }

    /* BODY */

    .mission-vision {
        min-height: 100vh;
    }

    .mv-holder {
        height: 70%;
        width: 100%;
        gap: 1rem;
        padding: 10px;
    }

    .mv-content {
        gap: .5rem;
        height: 50%;
    }

    .mv-holder .mv-content h1 {
        font-family: 'Montserrat';
        font-size: 40px;
    }
    
    .mv-holder .mv-content p {
        font-family: 'Source Sans 3';
        font-size: 16px;
    }

    /* CONTACTS */

    .contacts {
        height: auto;
        flex-direction: column;
    }

    .contacts-holder {
        height: 50%;
        width: 100%;
    }

    .contacts-content-holder {
        flex-direction: column;
        gap: 0;
    }

    .contacts-holder .contacts-header h2 {
        font-size: 24px;
    }

    .separation p {
        font-size: 14px;
        padding-left: 5px; 
    }

    .about-container {
        height: 30%;
        width: 100%;
    }

    .about-container .about-header h2 {
        font-size: 24px;
    }

    .about-container .about-holder p {
        font-size: 14px;
    }

    footer p {
        font-size: 10px;
    }

    @media screen and (orientation: landscape) {
        .mission-vision {
            min-height: 500px;
        }
        
        .mv-holder {
            height: 400px;
        }
    }
}

/* Tablets (768px to 991px) */
@media only screen and (min-width: 768px) and (max-width: 992px) {
    .navbar .links, .navbar .action_btn {
        display: none;
    }

    .navbar .toggle_btn {
        display: block;
    }

    .dropdown_menu {
        left: 2rem;
        width: unset;
        z-index: 99;
    }

    /* BODY */

    .mission-vision {
        min-height: 100vh;
    }

    .mv-holder {
        height: 50%;
        width: 100%;
        gap: 1rem;
        padding: 10px;
    }

    .mv-content {
        gap: .5rem;
        height: 50%;
    }

    .mv-holder .mv-content h1 {
        font-family: 'Montserrat';
        font-size: 60px;
    }
    
    .mv-holder .mv-content p {
        font-family: 'Source Sans 3';
        font-size: 18px;
    }

    /* CONTACTS */

    .contacts {
        height: auto;
        flex-direction: column;
    }

    .contacts-holder {
        height: 50%;
        width: 100%;
    }

    .contacts-content-holder {
        flex-direction: column;
        gap: 0;
    }

    .contacts-holder .contacts-header h2 {
        font-size: 24px;
    }

    .separation p {
        font-size: 14px;
        padding-left: 5px; 
    }

    .about-container {
        height: 30%;
        width: 100%;
    }

    .about-container .about-header h2 {
        font-size: 24px;
    }

    .about-container .about-holder p {
        font-size: 14px;
    }

    footer p {
        font-size: 10px;
    }

    @media screen and (orientation: landscape) {
        .mission-vision {
            min-height: 500px;
        }
        
        .mv-holder {
            height: 400px;
        }
    }
}

/* Laptops (992px to 1199px) */
@media only screen and (min-width: 993px) and (max-width: 1199px) {
    
    /* BODY */

    .navbar {
        gap: 0;
    }

    .mission-vision {
        min-height: 100vh;
    }

    .mv-holder {
        height: 50%;
        width: 100%;
        gap: 1rem;
        padding: 10px;
    }

    .mv-content {
        gap: .5rem;
        height: 50%;
    }

    .mv-holder .mv-content h1 {
        font-family: 'Montserrat';
        font-size: 60px;
    }
    
    .mv-holder .mv-content p {
        font-family: 'Source Sans 3';
        font-size: 18px;
    }

    /* CONTACTS */

    .contacts {
        height: auto;
        flex-direction: column;
    }

    .contacts-holder {
        height: 50%;
        width: 100%;
    }

    .contacts-content-holder {
        flex-direction: column;
        gap: 0;
    }

    .contacts-holder .contacts-header h2 {
        font-size: 24px;
    }

    .separation p {
        font-size: 14px;
        padding-left: 5px; 
    }

    .about-container {
        height: 30%;
        width: 100%;
    }

    .about-container .about-header h2 {
        font-size: 24px;
    }

    .about-container .about-holder p {
        font-size: 14px;
    }

    footer p {
        font-size: 10px;
    }
}

/* Monitors (1200px and above) */
@media only screen and (min-width: 1200px) {

    .mv-holder {
        height: 60%;
        width: 100%;
        gap: 1rem;
        padding: 10px;
    }

    .mv-holder .mv-content p {
        font-family: 'Source Sans 3';
        font-size: 22px;
    }
}