/* ---------- BASE : MOBILE (par défaut) ---------- */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    background-image: none;
}

/* HEADER */
header {
    text-align: center;
    padding: 5rem 0 2rem;
    background-image: url('../images/background/image0.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: changeBackground 20s infinite;
    border-bottom: 2px solid #ff69b4;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header h1 {
    font-size: 3rem;
    margin: 3rem auto;
    color: #ff69b4;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(255, 105, 180, 0.8);
    text-align: center;
}

/* TEAM SECTION */
.team-section {
    margin: 2rem 0;
    padding: 2rem 0;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(255,105,180,0.1));
}

.team-section h3 {
    color: #ff69b4;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-members {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.team-member {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #333;
    transition: transform 0.3s ease;
}

.team-member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid #ff69b4;
    object-fit: cover;
}

.team-member-name {
    color: #ff69b4;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.team-member-title {
    color: #ffffff;
    font-style: italic;
    margin-bottom: 1rem;
}

.team-member-description {
    text-align: left;
    line-height: 1.4;
    font-size: 0.9rem;
}

/* SERVICES */
.services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-card {
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 2px solid #ff69b4;
    transition: all 0.3s ease;
}

/* GALERIE */
.gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* INFO GRID */
.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

/* STUDIO INFO */
.studio-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
}

.studio-image,
.studio-description {
    max-width: 100%;
    margin-bottom: 1.5rem;
}

/* BUTTONS */
button, .nav-button {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    border: 2px solid #ff69b4;
    background-color: transparent;
    color: #ff69b4;
    cursor: pointer;
}

.info-card {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    text-align: center;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.info-card i {
    font-size: 2rem;
    color: #ff69b4;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ff69b4;
}

.info-card-gacha {
    grid-column: 1 / -1;
    background: linear-gradient(45deg, rgba(255,105,180,0.1), rgba(255,105,180,0.2));
    border: 2px solid #ff69b4;
    box-shadow: 0 0 20px rgba(255,105,180,0.3);
}

.info-card-gacha .special-offer {
    font-size: 1.2em;
    color: #ff69b4;
    font-weight: bold;
    text-align: center;
    margin: 1rem 0;
    text-shadow: 0 0 5px rgba(255,105,180,0.5);
}

.info-card-gacha:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255,105,180,0.5);
}

.contact {
    text-align: center;
    padding: 3rem 0;
    margin-top: 3rem;
    border-top: 2px solid #ff69b4;
    background: linear-gradient(to bottom, transparent, rgba(255, 105, 180, 0.05));
}

/* ---------- VERSION PC : STYLES ORIGINAUX ---------- */
@media (min-width: 769px) and (pointer: fine) {
    header {
        padding: 10rem 0 4rem;
    }
    header h1 {
        font-size: 6rem;
        margin: 6rem auto;
        letter-spacing: 4px;
        text-shadow: 0 0 50px rgba(255, 105, 180, 0.8), 0 0 100px rgba(255, 105, 180, 0.5);
    }
    .team-section {
        margin: 4rem 0;
        padding: 6rem 0;
    }
    .team-section h3 {
        font-size: 2rem;
        margin-bottom: 3rem;
        letter-spacing: 2px;
    }
    .team-members {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        max-width: 1200px;
    }
    .team-member-image {
        width: 200px;
        height: 200px;
    }
    .services {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin: 3rem 0;
    }
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin: 3rem 0;
    }
    .gallery img {
        height: 300px;
    }
    .info-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin: 3rem 0;
    }
    .studio-info {
        flex-direction: row;
        align-items: flex-start;
    }
    .studio-image {
        max-width: 50%;
        margin-right: 2rem;
    }
    .studio-description {
        max-width: 50%;
    }
    button, .nav-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
    .info-card {
        background-color: rgba(0, 0, 0, 0.3);
        padding: 1.5rem;
        text-align: center;
        border: 2px solid #333;
        transition: all 0.3s ease;
    }
    .info-card:hover {
        border-color: #ff69b4;
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(255, 105, 180, 0.2);
    }
    .info-card i {
        font-size: 2.5rem;
        color: #ff69b4;
        margin-bottom: 1.5rem;
        transition: transform 0.3s ease;
    }
    .info-card:hover i {
        transform: scale(1.1);
    }
    .info-card h3 {
        color: #ff69b4;
        margin-bottom: 1.5rem;
        font-size: 1.4rem;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
}

@keyframes changeBackground {
    0% { background-image: url('../images/background/image0.jpg'); }
    25% { background-image: url('../images/background/image1.jpg'); }
    50% { background-image: url('../images/background/image28.jpg'); }
    75% { background-image: url('../images/background/image30.jpg'); }
    100% { background-image: url('../images/background/image0.jpg'); }
}
