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


:root {
    --header-height: 80px;
    --footer-height: 60px;
    --padding-standard: clamp(1rem, 2vw, 2rem);
}


html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
    background-image: url('../assets/city-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    font-family: Arial, sans-serif;
    padding-top: var(--header-height);
    position: relative;
}


.overlay {
    flex: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    position: relative;
    z-index: 2;
    min-height: calc(100vh - var(--header-height) - var(--footer-height));
}


.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}


.top-header {
    width: 100%;
    background: linear-gradient(to right, #085f34, #042A5E, #002451);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding-standard);
    position: fixed;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
}

.top-header h1 {
    font-size: clamp(1.2rem, 3vw, 2rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-logo {
    height: calc(var(--header-height) - 20px);
    width: auto;
    object-fit: contain;
}

.main-section {
    flex: 1;
    padding: var(--padding-standard);
    min-height: calc(100vh - var(--header-height) - var(--footer-height));
    position: relative;
    z-index: 1;
}




@media (min-width: 768px) {
    .overlay {
        flex-direction: row;
        align-items: flex-start;
    }
}


.left-section, .right-section {
    flex: 1;
    width: 100%;
}

.left-section {
    text-align: center;
    padding: 1rem;
}

.left-section h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.left-section p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.5;
}

.right-section {
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: clamp(1rem, 3vw, 2rem);
    border-radius: 10px;
}


.info-box {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.info-box:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-box .icon {
    width: clamp(30px, 4vw, 40px);
    height: auto;
    flex-shrink: 0;
}

.info-box h2 {
    font-size: clamp(1.2rem, 3vw, 1.75rem);
    color: #1C355A;
    margin-bottom: 0.5rem;
}

.info-box p {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: #666;
    line-height: 1.5;
}


.side-nav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 2000;
    top: 0;
    right: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: var(--header-height);
}

.side-nav a {
    padding: 1rem 2rem;
    text-decoration: none;
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: white;
    display: block;
    transition: 0.3s;
    white-space: nowrap;
}

.side-nav .close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
}


footer {
    flex-shrink: 0;
    background-color: #002451;
    color: white;
    text-align: center;
    padding: 20px;
    width: 100%;
    position: relative;
    z-index: 2;
    opacity: 0.9;
}




@media screen and (max-width: 768px) {
    .overlay {
        flex-direction: column;
        padding: 1rem;
        min-height: calc(100vh - var(--header-height) - var(--footer-height) - 2rem);
    }
}

.team-section {
    padding: var(--padding-standard);
    background-color: #f9f9f9;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.profile-card {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.profile-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1rem;
}


.mission-section {
    position: relative;
    padding: var(--padding-standard);
    text-align: center;
}

.mission-section .overlay {
    background-color: rgba(0, 0, 0, 0.6);
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: 10px;
}

.mission-section h1 {
    font-size: clamp(1.5rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.mission-section p {
    font-size: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.6;
    margin-bottom: 1rem;
}


.menu-icon {
    font-size: clamp(2rem, 4vw, 4rem);
    cursor: pointer;
    padding: 0.5rem;
}


@media screen and (max-width: 480px) {
    .top-header {
        padding: 0 1rem;
    }
    
    .info-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .profile-card {
        margin: 0 auto;
        max-width: 300px;
    }
}


@media print {
    .menu-icon,
    .side-nav,
    .background-overlay {
        display: none;
    }
    
    body {
        background-image: none;
        color: black;
    }
    
    .right-section {
        box-shadow: none;
        break-inside: avoid;
    }
}

.right-section {
    flex: 1;
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    max-width: 600px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}


.info-box {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.info-box:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-box .icon {
    width: 35px;
    height: auto;
    flex-shrink: 0;
    object-fit: contain;
}

.info-box h2 {
    font-size: 1.5rem;
    color: #1a2b4e;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.info-box p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}


@media screen and (max-width: 768px) {
    .overlay {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }

    .right-section {
        width: 100%;
        margin-top: 2rem;
        padding: 1.5rem;
    }

    .info-box {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }

    .info-box .icon {
        width: 30px;
    }

    .info-box h2 {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 480px) {
    .right-section {
        padding: 1rem;
    }

    .info-box {
        gap: 1rem;
    }

    .info-box .icon {
        width: 25px;
    }

    .info-box h2 {
        font-size: 1.1rem;
    }
}


.left-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.logo-container .logo {
    width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

.logo-container h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

.logo-container p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.logo-container span {
    font-weight: normal;
}



@media screen and (max-width: 768px) {
    .overlay {
        flex: 1 0 auto;
        flex-direction: column;
        padding: 1rem;
    }
    
    .main-section {
        min-height: calc(100vh - var(--header-height) - var(--footer-height));
        padding: var(--padding-standard);
    }
}


.logo-container h1 {
    font-size: clamp(1.2rem, 4vw, 2rem);
    margin-bottom: 0.5rem;
    white-space: normal; 
    text-align: center;
    line-height: 1.2;
}

.logo-container p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    line-height: 1.6;
}


@media screen and (max-width: 768px) {
    .overlay {
        flex: 1 0 auto;
        flex-direction: column;
        padding: 1rem;
    }
    
    .main-section {
        min-height: calc(100vh - var(--header-height) - var(--footer-height));
        padding: var(--padding-standard);
    }
    
    .logo-container h1 {
        padding: 0 1rem; 
    }
}

@media screen and (max-width: 480px) {
    .logo-container h1 {
        font-size: clamp(1rem, 5vw, 1.2rem); 
    }
}