/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Shadows+Into+Light&display=swap');

/* ===== Base ===== */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(160deg, #101810, #1f2a1f);
    color: #e0ffe0;
    text-align: center;
    overflow-x: hidden;
}

header {
    padding: 50px;
    background: #0d150d;
    border-bottom: 3px solid #7eff7e;
    animation: fadeInDown 1s ease;
}

header h1 {
    font-family: 'Pacifico', cursive;
    color: #7eff7e;
    font-size: 56px;
    letter-spacing: 2px;
    animation: glow 2s infinite alternate;
}

header p {
    font-family: 'Shadows Into Light', cursive;
    font-size: 22px;
    margin-top: 10px;
}

/* ===== Sections ===== */
section {
    padding: 60px 20px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s forwards;
}

section:nth-of-type(1) { animation-delay: 0.2s; }
section:nth-of-type(2) { animation-delay: 0.4s; }
section:nth-of-type(3) { animation-delay: 0.6s; }
section:nth-of-type(4) { animation-delay: 0.8s; }

/* ===== Créateurs ===== */
.creators {
    text-align: center; /* titre centré */
    margin-bottom: 50px;
}

.cards-container {
    display: flex;
    justify-content: center;   /* centre horizontalement */
    align-items: stretch;      /* toutes les cartes au même niveau */
    gap: 50px;
    flex-wrap: wrap;           /* responsive */
    margin-top: 30px;
}

.creator-card {
    background: #1a2a1a;
    padding: 25px;
    border-radius: 20px;
    width: 260px;
    border: 2px solid #7eff7e;
    display: flex;
    flex-direction: column;
    align-items: center;       /* centre le contenu */
    justify-content: flex-start;
    transition: transform 0.3s, box-shadow 0.3s;
}

.creator-card:hover {
    transform: scale(1.08) rotate(-1deg);
    box-shadow: 0 0 20px #7eff7e;
}

.creator-card h3 {
    font-family: 'Shadows Into Light', cursive;
    font-size: 24px;
    margin-bottom: 15px; /* espace entre nom et image */
}

.creator-card img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 3px solid #7eff7e;
    object-fit: cover;
    transition: transform 0.3s;
    margin-bottom: 10px;
}

.creator-card img:hover {
    transform: rotate(10deg) scale(1.1);
}

.creator-card p {
    font-size: 14px;
    margin-top: 5px;
}

/* ===== Map ===== */
.map-btn {
    display: inline-block;
    padding: 15px 30px;
    background: #7eff7e;
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 12px;
    margin-top: 20px;
    transition: transform 0.3s, background 0.3s;
}

.map-btn:hover {
    background: #a0ff9f;
    transform: scale(1.1);
}

/* ===== Discord iframe ===== */
.discord iframe {
    border-radius: 15px;
    border: 2px solid #7eff7e;
    transition: transform 0.3s;
}

.discord iframe:hover {
    transform: scale(1.03);
}

/* ===== Formulaire XXL ===== */
.avis {
    background: #101f10;
    padding: 120px 60px;          /* énorme padding pour rectangle imposant */
    border-radius: 30px;
    width: 98%;                   /* presque toute la largeur */
    max-width: 800px;             /* max large */
    margin: 60px auto;
    box-shadow: 
        0 0 50px #00ff80 inset,   /* glow interne intense */
        0 0 80px #00ff80;         /* glow externe intense */
    border: 4px solid #7eff7e;     /* bordure plus épaisse */
    transition: transform 0.3s, box-shadow 0.3s;
}

.avis:hover {
    transform: scale(1.03);
    box-shadow:
        0 0 60px #00ff80 inset,
        0 0 100px #00ff80;
}

.avis h2 {
    font-family: 'Shadows Into Light', cursive;
    margin-bottom: 30px;
    font-size: 36px;
    color: #7eff7e;
    text-shadow: 0 0 10px #00ff80;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.avis input,
.avis textarea {
    width: 100%;
    padding: 15px 20px;
    background: #1a2a1a;
    border: 2px solid #7eff7e;
    border-radius: 12px;
    color: #e0ffe0;
    font-size: 16px;
    transition: 0.3s;
}

.avis input:focus,
.avis textarea:focus {
    outline: none;
    border-color: #a0ff9f;
    box-shadow: 0 0 15px #a0ff9f;
}

.avis textarea {
    min-height: 120px;
    resize: vertical;
}

button {
    background: #7eff7e;
    color: black;
    border: none;
    padding: 18px 40px;
    font-weight: bold;
    border-radius: 12px;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
    box-shadow: 0 0 15px #00ff80;
}

button:hover {
    background: #a0ff9f;
    transform: scale(1.05);
}

.form-message {
    margin-top: 15px;
    font-weight: bold;
    color: #00ff80;
    text-shadow: 0 0 5px #00ff80;
    min-height: 24px;
}

/* ===== Footer ===== */
footer {
    padding: 25px;
    background: #0d150d;
    margin-top: 30px;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes glow {
    from { text-shadow: 0 0 5px #7eff7e; }
    to { text-shadow: 0 0 20px #a0ff9f, 0 0 30px #7eff7e; }
}