* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
#contacts {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(120deg, #e53935 0%, var(--yellow-color) 100%);
    font-family: 'Quicksand', Arial, sans-serif;
    color: var(--yellow-color);
    overflow-x: hidden;
}

h1 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2.5rem;
    color: var(--yellow-color);
    text-shadow: 0 4px 32px #e53935cc, 0 1px 0 var(--yellow-color);
    margin: 0 0 10px 0;
    letter-spacing: 6px;
    animation: popIn 1s cubic-bezier(.77,0,.18,1.01);
    text-transform: uppercase;
}
#titre-repertoire {
    padding: 10px 28px;
    text-align: center;
    position: relative;
    color: var(--yellow-color);
    z-index: 2;
}
.titre-encadre {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 18px 0;
}

.titre-encadre img.titre-decoration-gauche,
.titre-encadre img.titre-decoration-droite {
  width: 48px;
  height: 48px;
  margin-bottom: 40px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px #e5393530);
}


#contact-header h1 {
  padding: 10px 28px;
  padding-bottom: 40px;
  font-size: 2.2rem;
  color: var(--yellow-color);
  text-shadow: 0 4px 32px #e53935cc, 0 2px 0 #000000;
  letter-spacing: 4px;
  margin: 0;
  text-align: center;
  position: relative;
  z-index: 2;
}
.contact-form {
  padding: 1rem;
  margin-top: 12px;
  margin-right: 10vw;
  margin-left: 10vw;
  margin-bottom: 24px;
  background: #ffffffdd;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.contact-form h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    color: #cc3300;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    font-weight: 600;
    color: #993300;
    margin-bottom: 6px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    padding: 12px 14px;
    border: 2px solid #ffd699;
    border-radius: 10px;
    font-size: 15px;
    background-color: #fffaf0;
    transition: border 0.3s ease;
}

input:focus,
textarea:focus {
    border-color: #ff9900;
    background-color: #fffef7;
    outline: none;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.full-width {
    grid-column: 1 / -1;
}

input[type="submit"] {
    width: 100%;
    background: linear-gradient(90deg, #ff6600, #ffcc00);
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 14px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
    grid-column: 1 / -1;
}

input[type="submit"]:hover {
    background: linear-gradient(90deg, #e65c00, #e6b800);
}

@media (max-width: 900px) {
    .form-grid {
    grid-template-columns: 1fr;
    }

    .contact-form {
        margin-right: 5vw;
        margin-left: 5vw;
    }

    #contact-header h1 {
        font-size: 2.2rem;
        padding: 10px 20px;
    }

    .titre-encadre img.titre-decoration-gauche,
    .titre-encadre img.titre-decoration-droite {
        width: 24px;
        height: 24px;
        margin-bottom: 4px;
        object-fit: contain;
        filter: drop-shadow(0 2px 8px #e5393530);
        }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: translateY(0);}
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.8);}
  to { opacity: 1; transform: scale(1);}
}
@keyframes cardAppear {
  from { opacity: 0; transform: translateY(40px) scale(0.97);}
  to { opacity: 1; transform: translateY(0) scale(1);}
}


/* Animation sur toutes les cartes, sections, blocs */
.accueil-card, .main-card, section, .presentation-container, .fansmare-title, .presentation-image, .titre-encadre, .contact-form, .form-grid, .form-group {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  animation: cardAppear 1s forwards;
}
.accueil-card, .main-card, section, .presentation-container, .fansmare-title, .presentation-image {
  animation-delay: calc(var(--i, 0) * 0.08s);
}
