@font-face {
    font-family: 'eurostile';
    src: url('/asset/font/eurostile.TTF');
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'eurostile';
    background: #0a0a0a ;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

/* Conteneurs dynamiques */
#navbar {
    position: relative;
    z-index: auto;
}

.soulidified-section {
  background: transparent;
  color: #eaeaea;
  max-width: 700px;
  margin: -15px auto 20px auto;
  padding: 40px 20px;
  border-radius: 16px;
  text-align: center;
  font-family: 'Eurostile';
  position: relative;
  overflow: hidden;
}

/* Glow subtil derrière */
.soulidified-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255,255,255,0.08), transparent 60%);
  z-index: 0;
}

.soulidified-section p {
  position: relative;
  z-index: 1;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 16px;
}

/* Intro stylée */
.soulidified-section .intro {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
}

/* Nom du groupe = effet néon discret */
.soulidified-section strong {
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4),
               0 0 20px rgba(255, 255, 255, 0.15);
}

/* Outro impact */
.soulidified-section .outro {
  margin-top: 30px;
  font-size: 18px;
}

/* Ligne finale stylée */
.soulidified-section .outro strong {
  display: inline-block;
  margin-top: 10px;
  font-size: 20px;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #ffffff, #888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    margin-top: 120px;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 30px;
    animation: fadeInDown 0.8s ease-out;
}

.title {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    animation: glow 3s ease-in-out infinite;
}

.title-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    margin: 0 auto 1rem;
    border-radius: 2px;
    animation: expandWidth 1s ease-out;
}

.subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    letter-spacing: 2px;
    font-weight: 300;
}

/* Cards Wrapper */
.cards-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Member Card Styles */
.member-card {
    background: #ffffff;
    backdrop-filter: blur(15px);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    cursor: pointer;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.card-1 { animation-delay: 0.1s; }
.card-2 { animation-delay: 0.2s; }
.card-3 { animation-delay: 0.3s; }
.card-4 { animation-delay: 0.4s; }

.member-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 35px 55px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Card border gradient animation */
.member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    border-radius: 28px 28px 0 0;
}

.member-card:hover::before {
    transform: scaleX(1);
}

/* Card shine effect */
.member-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.member-card:hover::after {
    transform: rotate(30deg) translate(30%, 30%);
}

/* Card Image */
.card-image {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
}

.card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.member-card:hover .card-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.member-card:hover .image-overlay {
    opacity: 1;
}

.music-note {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.6);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
    pointer-events: none;
}

.member-card:hover .music-note {
    opacity: 1;
    transform: translateX(0);
}

/* Card Content */
.card-content {
    padding: 1.5rem;
    text-align: center;
}

.member-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.3rem;
    letter-spacing: 1px;
}

.member-role {
    font-size: 0.85rem;
    color: #a8c0ff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.2rem 0.8rem;
    background: rgba(102, 126, 234, 0.3);
    border-radius: 20px;
}

.member-bio {
    font-size: 0.85rem;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.social-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
}

.social-icon.instagram:hover {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
}

.social-icon.twitter:hover {
    background: #1DA1F2;
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.4);
}

.social-icon.spotify:hover {
    background: #1DB954;
    box-shadow: 0 5px 15px rgba(29, 185, 84, 0.4);
}

.social-icon.youtube:hover {
    background: #FF0000;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.social-icon.tiktok:hover {
    background: #000;
    color: #00f2ea;
    box-shadow: 0 5px 15px rgba(0, 242, 234, 0.4);
}

.social-icon.snapchat:hover {
    background: #000;
    color: #eada4d;
    box-shadow: 0 5px 15px #eada4d;
}

/* Tooltip for social icons */
.social-icon {
    position: relative;
}

.social-icon:hover::after {
    opacity: 1;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80px;
        opacity: 1;
    }
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
    }
    50% {
        text-shadow: 0 0 40px rgba(102, 126, 234, 0.6);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 1rem;
    }
    
    .cards-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-bottom: 3rem;
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .member-name {
        font-size: 1.4rem;
    }
    
    .social-icon {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }
    
    .card-content {
        padding: 1.2rem;
    }
    
    .member-bio {
        font-size: 0.8rem;
    }
}

/* Ripple effect on click */
.member-card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

/* Footer removed */

/* Padding pour desktop avec footer fixe */
@media (min-width: 769px) {
    body {
        padding-bottom: 130px;
    }
}

/* Mobile - pas de padding */
@media (max-width: 768px) {
    body {
        padding-bottom: 0;
    }
}