/* Base layout */
body {
    font-family: "Segoe UI", Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fafafa;
    color: #222;
    line-height: 1.6;
}

header {
    background: #343D45;
    color: blue;
    text-align: center;
    padding: 2.5rem 1rem;
}

    header h1 {
        margin: 0;
        font-size: 2.5rem;
    }

    header p {
        margin: 0.5rem 0 1rem;
    }






nav a {
    color: black;
    margin: 0 0.75rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 2rem;
}

    nav a:hover {
        text-decoration: underline;
    }





.gen-nav {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    display: flex;
    gap: 1.5rem;
    z-index: 2;
}

    .gen-nav a {
        color: white;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }

        .gen-nav a:hover {
            color: #ffd700; /* gold highlight */
        }




/* === HERO SECTION === */
.hero {
    position: relative;
    width: 100%;
    height: 100vh; /* full viewport height */
    overflow: hidden;
    color: white;
}

/* Full-screen video background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    object-fit: cover; /* makes it fill the frame */
    z-index: 0;
}

/* Navigation links at top-right */
.hero-nav {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    display: flex;
    gap: 1.5rem;
    z-index: 2;
}

    .hero-nav a {
        color: white;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }

        .hero-nav a:hover {
            color: #ffd700; /* gold highlight */
        }

/* Text overlay in center */
.hero-text {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
    background: rgba(0, 0, 0, 0.4); /* translucent overlay */
    padding: 0.75rem 0.75rem;
    border-radius: 10px;
}

    .hero-text h1 {
        font-size: 3rem;
        margin-bottom: 0.25rem;
    }

    .hero-text p {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }


/* === MAIN SECTION === */
main {
/*    max-width: 900px;*/
    margin: 2rem auto;
    padding: 0 1rem;
}

    main h1 {
        margin: 2rem;
        line-height: 4rem;
        font-size: 5rem;
        color: black;
    }

    main h2 {
        font-size: 2rem;
        color: black;
    }

    main h3 {
        margin: 2.5rem;
        font-size: 1.5rem;
        
    }

    main em {
        margin: 2.5rem;
        font-size: 1.5rem;
    }


.mep-internship {
    max-width: 900px;
    margin: 0 auto; /* center horizontally */
    text-align: left; /* keeps text aligned left */
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}


.intro {
    max-width: 900px;
    margin: 0 auto; /* center horizontally */
    text-align: left; /* keeps text aligned left */
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

    .intro p {
        flex: 1; /* take available space */
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 3rem;
    }

.documents {
    max-width: 900px;
    margin: 0 auto; /* center horizontally */
    text-align: left; /* keeps text aligned left */
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}


.row {
    display: flex; /* turn on flex layout */
    justify-content: space-between; /* optional: spacing control */
    align-items: center; /* vertical alignment */
}




.profile-container {
    width: 500px; /* visible width on page */
    height: 500px; /* visible height on page */
    overflow: hidden; /* hide parts of the image outside the box */
    border: 2px solid black;
    position: relative; /* for positioning inside if needed */
}

.profile-pic {
    width: 100%; /* scale image to fill container */
    height: 100%;
    object-fit: cover; /* fill container while keeping aspect ratio */
    transform: scale(1.8); /* zoom in (1 = normal, 1.2 = 120% zoom) */
    transition: transform 0.3s; /* optional smooth zoom */
}

.general-container {
    width: 500px; /* visible width on page */
    /*height: 500px;*/ /* visible height on page */
    overflow: hidden; /* hide parts of the image outside the box */
    border: 2px solid black;
    position: relative; /* for positioning inside if needed */
}

.general-pic {
    width: 100%; /* scale image to fill container */
    /*    height: 100%;*/
    object-fit: cover; /* fill container while keeping aspect ratio */
    transform: scale(1); /* zoom in (1 = normal, 1.2 = 120% zoom) */
    transition: transform 0.3s; /* optional smooth zoom */
}

.highlights ul {
    list-style-type: disc; /* default: solid bullet */
    padding-left: 1.5rem;
}



/* === RIBBON SECTION === */
.swiper {
    width: 98vw; /* full width */
    height: 450px; /* adjust as you like */
    background: #343D45; /* ribbon color */
    padding: 1rem 0;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .swiper-slide img {
        margin-top: 3.5rem;
        margin-bottom: 0.5rem;
        width: 60%;
        height: 300px;
        object-fit: cover;
        border-radius: 12px;
        transition: transform 0.3s ease;
    }

        .swiper-slide img:hover {
            transform: scale(1.05);
        }

    .swiper-slide p {
        color: white;
        margin-top: 0.5rem;
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
        font-style: normal; 
    }

.swiper-button-next,
.swiper-button-prev {
    color: white;
}


.link-wrapper {
    text-decoration: none;
    color: inherit;
    display: inline-block; /* so it wraps the div neatly */
}


/* === FOOTER SECTION === */
footer {
    background: #eee;
    text-align: center;
    padding: 1rem;
    margin-top: 3rem;
    font-size: 0.9rem;
}


/* === RIBBON SECTION === */
/*.ribbon {
    background: #004aad;
    color: white;
    padding: 1rem 1rem;
    text-align: center;
    position: relative;
}

    .ribbon h2 {
        margin-bottom: 1rem;
    }*/

/* Slideshow container */
/*.slideshow-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}*/

/* Hide all slides by default */
/*.slide {
    display: none;
    position: relative;
}

    .slide img {
        width: 100%;
        border-radius: 10px;
    }*/

/* Caption styling */
/*.caption {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    font-size: 1.1rem;
    padding: 0.5rem;
    border-radius: 0 0 10px 10px;
}*/

/* Arrows */
/*.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 1rem;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 2rem;
    transition: 0.3s ease;
    user-select: none;
    border-radius: 3px;
}

.prev {
    left: 0px;*/ /* distance from the left edge of the container */
/*}

.next {
    right: 0;
}

    .prev:hover, .next:hover {
        background-color: rgba(255, 255, 255, 0.3);
    }*/

/* Simple fade animation */
/*.fade {
    animation: fadeEffect 1s;
}

@keyframes fadeEffect {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}*/



