﻿:root {
    --green: #2e8b57;
    --navy: #00428E;
    --lightgreen: #00A58B;
    --white: #ffffff;
    --muted: rgba(255,255,255,0.85);
    --glass: rgba(255,255,255,0.08);
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

.welcomeBoxShared {
    margin: 0;
    min-height: 100vh;
    /*background: linear-gradient(135deg, var(--navy), #124232);*/
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
}

.welcome-boxCaptain {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background: linear-gradient(135deg, var(--navy), #124232);
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border-radius: 24px;
    padding: 40px 50px;
    max-width: 900px;
    animation: fadeSlide 1.2s ease forwards;
}

.welcome-boxPresident {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background: linear-gradient(135deg, var(--green), #124232);
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border-radius: 24px;
    padding: 40px 50px;
    max-width: 900px;
    animation: fadeSlide 1.2s ease forwards;
}


.welcome-boxAngela {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background: linear-gradient(135deg, var(--lightgreen), #124232);
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border-radius: 24px;
    padding: 20px 10px;
    max-width: 900px;
    animation: fadeSlide 1.2s ease forwards;
}



.captain-photo {
    flex: 0 0 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 40px;
    animation: fadeIn 1.5s ease forwards;
}

    .captain-photo img {
        width: 160px;
        height: 160px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid var(--navy);
        box-shadow: 0 0 20px rgba(46,139,87,0.5);
        transition: transform 0.5s ease;
    }

        .captain-photo img:hover {
            transform: scale(1.05);
        }




.president-photo {
    flex: 0 0 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 40px;
    animation: fadeIn 1.5s ease forwards;
}

    .president-photo img {
        width: 160px;
        height: 160px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid var(--green);
        box-shadow: 0 0 20px rgba(46,139,87,0.5);
        transition: transform 0.5s ease;
    }

        .president-photo img:hover {
            transform: scale(1.05);
        }



.angela-photo {
    flex: 0 0 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 40px;
    animation: fadeIn 1.5s ease forwards;
}

    .angela-photo img {
        width: 260px;
        height: 260px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid var(--green);
        box-shadow: 0 0 20px rgba(46,139,87,0.5);
        transition: transform 0.5s ease;
    }

        .angela-photo img:hover {
            transform: scale(1.05);
        }


.welcome-content {
    flex: 1;
    min-width: 250px;
    animation: slideUp 1.2s ease forwards;
}

    .welcome-content h1 {
        color: var(--white);
        font-size: 1.8rem;
        font-weight: 600;
        margin-bottom: 10px;
    }

.divider {
    width: 60px;
    height: 3px;
    background: var(--green);
    border-radius: 3px;
    margin-bottom: 20px;
}

.welcome-content p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.signature {
    font-style: italic;
    color: var(--white);
    font-weight: 600;
    margin-top: 10px;
}

.details {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.detailslarger {
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
}

/* Animations */
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 700px) {
    .welcome-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }

    .captain-photo {
        margin: 0 0 20px 0;
    }

    .welcome-content h1 {
        font-size: 1.5rem;
    }
}
