*,
*::after,
*::before {
    box-sizing: border-box;
}
nav{
    background-color: #1f1f1f;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1rem 0 2rem 0;
}
nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #373737;
    color: #eee;
}
.about-main {
    padding: 3rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Section Walk of Fame */
.walk-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Bande noire Hollywood / Walk of Fame */
.walk-band {
    width: 100%;
    max-width: 600px;
    background: #000000;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 0 16px rgba(255,215,0,0.3),
                0 0 0 2px #222 inset;
    margin-bottom: 3rem;
}

/* Étoile + nom */
.walk-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}


.star {
    font-size: 3rem;
    color: #f5c518;
}

/* Classe name */
.name {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Photo à côté de l’étoile */
.photo {
    width: 100px;
    height: 130px;
    border-radius: 8px;
    border: 2px solid #f5c518;
    box-shadow: 0 0 10px rgba(245,197,24,0.6);
    overflow: hidden;
}

.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Texte en dessous */
.about-text {
    line-height: 1.7;
    text-align: center;
}

.about-text h2 {
    margin-top: 0;
    color: #f5c518;
}

.about-text p {
    margin-bottom: 1rem;
}

/* mention légales */

details summary {
    width: 100%;
    max-width: 900px;
      margin: 2.5rem auto 0;
    display: block;
    padding: 0.5rem 0.8rem;
    background: #333;
    color: #ffffff;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

details summary h4 {
    margin: 0;
    display: inline;
}

details summary:hover {
    background: #3a3a3a;
    box-shadow: 0 0 4px rgb(255, 255, 255);
}


details p {
    margin: 0.7rem 1.2rem;
    padding-left: 1.2rem;
    border-left: 1px solid #ffffff;
}
