/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(rgb(114 148 203 / 50%), rgb(247 247 247 / 90%)), url(../img/astro-bg-seamless-2.webp), linear-gradient(135deg, rgb(114 148 203 / 50%), rgb(247 247 247 / 90%));
    background-repeat: repeat;
    background-size: 2500px auto;
    background-attachment: scroll;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Contenu textuel */
.text-content {
    padding-left: 2rem;
}

.intro-text {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: -2px;
    color: #2c3e50;
    line-height: 0.9;
}

.sub-title {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 0.15em;
    color: #2c3e50;
}

/* Description section */
.description {
    margin-bottom: 3rem;
}

.tagline {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.bio-list {
    list-style: none;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.bio-list li {
    font-size: 1rem;
    color: #2c3e50;
    padding: 0.5rem 0;
    line-height: 1.4;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.bio-list li:hover {
    transform: translateX(5px);
}

.bio-list li:last-child {
    margin-bottom: 0;
}

/* Boutons */
.buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: capitalize;
}

.btn i {
    font-size: 1.2rem;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.3);
}

.btn-tiktok {
    background-color: #000000;
    color: white;
}

.btn-tiktok:hover {
    background-color: #161823;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Image de profil */
.profile-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.image-container img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.decorative-circles {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    border: 2px solid rgba(44, 62, 80, 0.2);
    z-index: 1;
}

.decorative-circles::before,
.decorative-circles::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(44, 62, 80, 0.1);
}

.decorative-circles::before {
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
}

.decorative-circles::after {
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .text-content {
        padding-left: 0;
        order: 2;
    }
    
    .profile-image {
        order: 1;
    }
    
    .image-container {
        width: 250px;
        height: 250px;
        --eye1-left: 41%;
        --eye1-top: 39%;
        --eye1-size: 7.2%;
        --eye2-left: 59.5%;
        --eye2-top: 38%;
        --eye2-size: 7.2%;
        --pupil-scale: 0.25;
        --pupil-max: 0.2;
    }
    
    .buttons {
        justify-content: center;
    }
    
    .hero-section {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .image-container {
        width: 200px;
        height: 200px;
        --eye1-left: 41%;
        --eye1-top: 39%;
        --eye1-size: 9%;
        --eye2-left: 59.5%;
        --eye2-top: 38%;
        --eye2-size: 9%;
        --pupil-scale: 0.25;
        --pupil-max: 0.2;
    }
}

/* Animation */
    .image-container {
        --eye1-left: 41%;
        --eye1-top: 40%;
        --eye1-size: 6.0%;
        --eye2-left: 59.5%;
        --eye2-top: 38%;
        --eye2-size: 6.0%;
        --pupil-scale: 0.25;
        --pupil-max: 0.2;
    }

    .eye {
      position: absolute;
      width: var(--size);
      aspect-ratio: 1 / 1;
      left: var(--left);
      top: var(--top);
      transform: translate(-50%, -50%);
      border-radius: 50%;
      overflow: hidden;
      pointer-events: none;
      outline: 2px dashed transparent;
      z-index: 3;
    }

    .pupil {
      position: absolute;
      left: 50%; top: 50%;
      width: calc(var(--pupil-scale) * 100%);
      aspect-ratio: 0.55/1;
      border-radius: 45% 45% 40% 40% / 60% 60% 65% 65%;
      transform: translate(-50%, -50%);
      background: radial-gradient(closest-side, rgba(0,0,0,.95) 50%, rgba(0,0,0,.98) 75%, rgba(0,0,0,1) 100%);
      filter: blur(1px);
      mix-blend-mode: multiply;
    }

    .calibrating .eye { outline-color: rgba(0, 255, 170, .8); }