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

body {
    font-family: 'Inter', sans-serif;
    color: white;
    overflow-x: hidden;
}

/* ===== VIDEO BACKGROUND ===== */

.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: -1;
}

/* ===== HERO SECTION ===== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

/* ===== CARTE ===== */

.card {
    width: 380px;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 40px 30px 25px 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.profile-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.6);
    margin-bottom: 20px;
}

h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.subtitle {
    font-size: 15px;
    font-weight: 300;
    opacity: 0.85;
    margin-bottom: 25px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    text-decoration: none;
    transition: 0.3s ease;
    margin-bottom: 25px;
}

.btn:hover {
    background: white;
    color: black;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.socials a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: 0.3s ease;
    backdrop-filter: blur(5px);
}

.socials a:hover {
    background: white;
    color: black;
    transform: translateY(-5px);
}

/* ===== GALERIE SECTION ===== */

.gallery-section {
    background: #0f0f12;
    padding: 80px 5%;
}

.gallery-title {
    text-align: center;
    font-size: 26px;
    margin-bottom: 40px;
    font-weight: 600;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    transition: 0.4s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}