body {
    margin: 0;
    font-family: sans-serif;
    color: white;
}

/* Background flou */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url("bg.png") center / cover no-repeat;
    filter: blur(4px);
    transform: scale(1.05);
    z-index: -2;
}

/* Overlay sombre pour lisibilité */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: -1;
}

header {
    text-align: center;
    padding: 40px 20px;
}

header h1 {
    color: bisque;
    margin: 0;
}

main {
    position: relative;
    overflow: hidden;

    max-width: 750px;
    margin: 60px auto;
    padding: 30px;

    display: flex;
    flex-direction: column;
    gap: 25px;

    /* Fond léger de la card */
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

/* Logo full size en transparence DANS la card */
main::before {
    content: "";
    position: absolute;
    inset: 0;

    background: url("Logo.jpeg") center / cover no-repeat;
    opacity: 0.08;              /* transparence du logo */
    filter: grayscale(1) contrast(1.1); /* optionnel: plus “pro” */
    pointer-events: none;
    z-index: 0;
}

/* couche sombre légère par-dessus le logo (pour garder le texte lisible) */
main::after {
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.15);
    pointer-events: none;
    z-index: 0;
}

/* Le contenu passe au-dessus du logo */
main > * {
    position: relative;
    z-index: 1;
}

section {
    text-align: center;
}

a {
    color: bisque;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.socials {
    display: inline-flex;
    justify-content: center;
    margin-top: 10px;
}

.insta-icon {
    width: 34px;
    height: 34px;
    color: bisque;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.insta-icon:hover {
    transform: scale(1.15);
    opacity: 0.8;
}

.contact-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 22px;

    color: bisque;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;

    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);

    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 999px;

    transition: all 0.25s ease;
}

/* Hover festival chic */
.contact-btn:hover {
    background: bisque;
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,228,196,0.25);
}

#countdown {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-top: 10px;
}

.ticket-btn {
    display: none; /* caché au départ */
    margin-top: 15px;
    padding: 12px 24px;

    background: bisque;
    color: black;
    font-weight: bold;
    text-decoration: none;

    border-radius: 999px;
    transition: all 0.25s ease;
}

.ticket-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255,228,196,0.3);
}

footer {
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;

    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

footer a {
    color: bisque;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
