/* ===== GENERAL RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: linear-gradient(#004f8b, #0077c8);
    object-fit: contain;
}

/* ===== NAVIGATION BAR ===== */
.navbar {
    width: 100%;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #002244;
    color: white;
    position: relative;
    z-index: 100;
}

/* Logo */
.logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 40px;
}

.site-title {
    font-size: 1.3rem;
    font-weight: bold;
}

/* Desktop Links */
.nav-links {
    display: flex; /* visible on desktop */
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffde59;
}

/* Burger */
.burger {
    display: none;
    cursor: pointer;
}

.burger-icon {
    height: 30px;
    width: 30px;
}


/* ===== MOBILE MENU ===== */
/*#navLinks {
    position: fixed;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    background: #002244;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 8px;
    transition: top 0.4s ease;
    gap: 20px;
    z-index: 1000;
}*/

/*#navLinks.open {
    top: 70px;
}*/

/* ===== HERO SECTION ===== */
.hero {
    text-align: center;
    padding: 60px 20px;
    color: white;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}
.banner {
    background: navy;
    background-position: center;
    background-size: cover;
    color: white;
    padding: 120px 20px;
    text-align: center;
    position: relative;
    height: 60vh;
}

.banner .banner-text {
    display: flex;
    height: 95vh;
    flex-direction: column;
}
.banner h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.banner p {
    font-size: 1.2rem;
}


.content-2 {
    max-width: 900px;
    margin: 2rem auto;
   background-image: 
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
    url("../images/IMG-20251120-WA0050.jpg");
    background-size: cover;
    object-fit: cover;
    color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0.4px 12px rgba(0, 0, 0, 0.1);
}
.content-2 .mission p {
    font-size: 1.2rem;
    margin-top: 5%;
    line-height: 1.5rem;
    /*text-align: justify;*/
    
}

section {
    margin-bottom: 2rem;
}

section h2 {
    color: rgb(3, 3, 112);
    margin-bottom: 0.75rem;
    font-size: 2rem;
}

.content-2 .purpose p {
    margin-top: 5%;
    font-size: 1.2rem;
    line-height: 1.5rem;
}

/*.hero .btn:hover {
    background-color: #0066ff;
}*/

/* ===== FEATURES SECTION ===== */
.section {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}
.section h2 {
    text-align: center;
}

.features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-box {
    flex: 1 1 250px;
    padding: 20px;
    background-color: #e6f0ff;
    border-radius: 8px;
    text-align: center;
}

.feature-box h3 {
    margin-bottom: 10px;
    color: #004aad;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #002244;
    padding: 30px 20px;
    text-align: center;
    color: white;
}

.footer-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.social-icon img {
    width: 35px;
    height: 35px;
    transition: transform 0.3s, filter 0.3s;
}

.social-icon img:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px white);
}

.footer-copy {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ===== MOBILE MENU ===== */
@media (max-width: 768px) {
    /* Hide desktop links */
   /* #navLinks {
        display: none;
        position: fixed;
        top: -100%;
        left: 50%;
        transform: translateX(-50%);
        width: 200px;
        background: #002244;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        border-radius: 8px;
        gap: 20px;
        transition: top 0.4s ease;
        z-index: 1000;
    }

    /* Show when burger clicked
    .nav-links.open {
        top: 70px;
    }*/

    #navLinks {
        position: fixed;
        top: -100%;
        left: 50%;
        transform: translateX(-50%);
        width: 500px;
        background: #002244;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        border-radius: 8px;
        transition: top 0.4s ease;
        gap: 20px;
        z-index: 1000;
    }

    #navLinks.open {
        top: 70px;
    }

    /* Show burger icon */
    .burger {
        display: block;
    }
    /*===Content resposiveness===*/
    .content {
        padding: 1.5rem;
    }

    .header h1 {
        font-size: 1.6rem;
    }

    section h2 {
        font-size: 1.25rem;
    }

    p {
        font-size: 0.95rem;
    }
}