:root {
    --accent: #d4af37;
    --text: #1e3d58;
}

body {
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    background: #1a1a2e;
    color: #f9f7f3;
}

nav {
    margin-top: 12px
}

nav a {
    margin-right: 12px;
    color: #0077be;
    text-decoration: none
}

form {
    margin-top: 18px;
    display: grid;
    gap: 10px
}

input,
textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit
}

button {
    background: var(--accent);
    color: white;
    padding: 10px 14px;
    border: 0;
    border-radius: 8px
}

main {
    margin-top: 18px;
    line-height: 1.6;
    color: #222;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.wrap {
    max-width: 700px;
    margin: 48px auto;
    padding: 24px;
    background: #e6ec93;
    color: #1e3d58;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(11, 36, 54, 0.08)
}

.concert-photo {
    max-width: 80%;
    /* L'image ne dépasse pas de son conteneur */
    height: auto;
    /* Garde les proportions */
    display: block;
    /* Évite les espaces indésirables sous l'image */
    margin: 1rem auto;
    /* Centre l'image et ajoute un espace autour */
    border-radius: 8px;
    /* Optionnel : coins arrondis pour un rendu moderne */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.concert-photoVerticale {
    max-height: 80%;
    /* L'image ne dépasse pas de son conteneur */
    width: auto;
    /* Garde les proportions */
    display: block;
    /* Évite les espaces indésirables sous l'image */
    margin: 1rem auto;
    /* Centre l'image et ajoute un espace autour */
    border-radius: 8px;
    /* Optionnel : coins arrondis pour un rendu moderne */
    box-shadow: 0 8px 4px rgba(0, 0, 0, 0.1);
}

.concert-photo:hover {
    transform: scale(1.02);
    /* Légèrement agrandie au survol */
    transition: transform 0.3s ease;
}


/* Conteneur de la galerie */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

/* Style des miniatures */
.video-thumbnail {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Style des descriptions */
.video-description {
    text-align: center;
    padding: 10px 0;
}

.video-description h3 {
    margin: 0.5rem 0;
    color: #333;
}

.video-description p {
    margin: 0;
    color: #333;
    font-size: 0.9rem;
}

/* Footer général */
.site-footer {
    background-color: #f8f8f8;
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    margin-top: 2rem;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    /* Permet le retour à la ligne */
    justify-content: center;
    gap: 0.5rem;
    /* Espacement réduit */
}

.footer-nav li {
    margin: 0.2rem;
}

.footer-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.footer-nav a:hover {
    color: #007BFF;
}

/* Logo dans le footer */
.footer-logo {
    width: 50px;
    height: auto;
    vertical-align: middle;
    margin-left: 5px;
}

/* Section contact */
.contact-social,
.contact-phone,
.contact-email{
    margin-bottom: 2rem;
    text-align: center;
}

.social-icon {
    width: 120px;
    height: 120px;
    vertical-align: middle;
    margin-right: 10px;
}

.phone-image {
     display: block;
     margin: 0 auto;
     max-width: 300px;
 }

.email-image {
    display: block;
    margin: 0 auto;
    max-width: 300px;
}

.success {
    color: green;
    font-weight: bold;
}

.error {
    color: red;
    font-weight: bold;
}

/* Footer */
.site-footer {
    background-color: #f8f8f8;
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    margin-top: 2rem;
}

#vignetteConcert-img {
    height: auto;
    display: block;
    /* Assure que l'image se comporte comme un bloc */
    margin-left: auto;
    /* Centre horizontalement */
    margin-right: auto;
    /* Centre horizontalement */
    max-width: 250px;
}

/* Styles pour les pages contact2.html et merci.html */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: bold;
    color: #1e3d58;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Quicksand', sans-serif;
}

.button {
    background: #d4af37;
    color: #1e3d58;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 0.5rem;
}

.return-link {
    display: inline-block;
    margin-top: 1rem;
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

/* Style pour centrer le bouton du formulaire */
.form-center {
    text-align: center;
    margin-top: 1rem;
}


