*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* ==========================
   BODY
========================== */

body{
    min-height: 100vh;
    color: #fff;
    overflow-x: hidden;
}

/* ==========================
   VIDEO BACKGROUND
========================== */

.background-video{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Dark Overlay */

body::before{
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.60);
    z-index: -1;
}

/* ==========================
   MAIN LAYOUT
========================== */

.landing-page{
    width: 100%;
    min-height: 100vh;

    display: grid;
    grid-template-columns: 35% 65%;
    align-items: center;

    padding: 60px 70px;
    column-gap: 50px;
}

/* ==========================
   HERO
========================== */

.hero{
    max-width: 450px;
    animation: fadeUp .8s ease;
}

.hero h1{
    font-size: 3.8rem;
    color: cyan;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 15px;
    animation: glow 2s infinite alternate;
}

.hero h3{
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.hero p{
    font-size: 18px;
    line-height: 1.8;
    color: #e6e6e6;
}

/* ==========================
   PORTFOLIO GRID
========================== */

.portfolio-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    justify-items: center;
    align-items: center;

    row-gap: 30px;
    column-gap: 25px;
}

/* Center last profile */

.profile-card:last-child{
    grid-column: 2;
}

/* ==========================
   PROFILE CARD
========================== */

.profile-card{
    width: 280px;
    height: 360px; /* Same height for all cards */

    padding: 25px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 20px;

    text-align: center;
    backdrop-filter: blur(12px);

    transition: .35s;
    animation: fadeUp .8s ease;
}

.profile-card:hover{
    transform: translateY(-10px) scale(1.05);
    background: rgba(255,255,255,.15);
    border-color: cyan;
    box-shadow: 0 0 25px cyan;
}

.profile-card a{
    text-decoration: none;
    color: white;
}

/* ==========================
   PROFILE IMAGE
========================== */

.profile-card img{
    width: 170px;
    height: 170px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid cyan;
}

.profile-card:hover img{
    transform: scale(1.08);
    border-color: white;
}

/* ==========================
   PROFILE NAME
========================== */

.profile-card h3{
    margin-top: 20px;
    font-size: 22px;       
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: .5px;
}

/* ==========================
   ANIMATIONS
========================== */

@keyframes fadeUp{

    from{
        opacity: 0;
        transform: translateY(40px);
    }

    to{
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes glow{

    from{
        text-shadow: 0 0 10px cyan;
    }

    to{
        text-shadow:
            0 0 20px cyan,
            0 0 40px cyan,
            0 0 60px cyan;
    }

}

