/*Color brand*/
:root {
    --camel: #f8eee6;
    --lightBlue: #b9d7f2;
    --pink: #f6b6b8;
    --purple: #6B2138;
    --orange: #e95226;
    --yellow: #d0c460;
    --brown: #4d4342;
}

/*Polices d'écriture*/
@font-face {
    font-family: 'poppins';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'lora';
    src: url('../fonts/Lora-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.headPage {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.premiereSection {
    margin-top: 12vw;
    margin-bottom: 2vw;
}

.premiereSection h1.titre1 {
    font-family: poppins, sans-serif;
    font-size: 3vw;
    letter-spacing: 1px;
    font-weight: bold;
    margin: auto;
    display: flex;
    justify-content: center;
    color: var(--brown);
    text-align: center;
}

.premiereSection .date {
    font-family: poppins, sans-serif;
    font-style: italic;
    font-size: 1.2vw;
    font-weight: 500;
    margin: auto;
    display: flex;
    justify-content: center;
    margin-top: 3vw;
    color: var(--brown)
}

.premiereSection p.point-vente {
    font-family: poppins, sans-serif;
    font-size: 1vw;
    font-weight: 400;
    margin: auto;
    display: flex;
    justify-content: center;
    margin-top: 2vw;
    color: var(--brown);
    text-align: center;
}

.souris {
    display: flex;
    justify-content: center;
    margin: 5vw 0;
}

.mouseLtraf {
    width: 30px;
    height: 50px;
    border: 2px solid var(--brown);
    border-radius: 25px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.scrollerMouseLtraf {
    width: 6px;
    height: 10px;
    background-color: var(--brown);
    border-radius: 3px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        top: 10px;
    }

    50% {
        top: 15px;
    }

    100% {
        top: 10px;
    }
}

.formulaire {
    margin-top: 5vw;
    margin-bottom: 5vw;
}

.enregistrement {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 3vw;
}

.formulaire1,
.formulaire2 {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.formulaire3 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3vw;
}

.titleFormParticiper {
    font-family: poppins, sans-serif;
    font-size: 2.2vw;
    font-weight: 900;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    color: var(--camel);
    width: 20vw;
    height: 20vw;
    background-color: var(--orange);
}

.titleFormInfoARentrer {
    font-family: poppins, sans-serif;
    font-size: 2.2vw;
    font-weight: 900;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px;
    color: red;
    width: 20vw;
    height: 20vw;
    background-color: red;
}

.formNom {
    background-image: url(../images/Background/BackgroundInput3.webp);
    background-size: cover;
    width: 17vw;
    height: 17vw;
    border: none;
    font-family: poppins, sans-serif;
    font-size: 1.5vw;
    padding-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.formPrenom {
    background-image: url(../images/Background/BackgroundInput3.webp);
    background-size: cover;
    width: 17vw;
    height: 17vw;
    border: none;
    font-family: poppins, sans-serif;
    font-size: 1.5vw;
    padding-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.formNbBillets {
    background-image: url(../images/Background/BackgroundInput2.webp);
    background-size: cover;
    width: 17vw;
    height: 17vw;
    border: none;
    font-family: poppins, sans-serif;
    font-size: 1.5vw;
    padding-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.formTel {
    background-image: url(../images/Background/BackgroundInput1.webp);
    background-size: cover;
    width: 17vw;
    height: 17vw;
    border: none;
    font-family: poppins, sans-serif;
    font-size: 1.5vw;
    padding-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.formEmail {
    background-image: url(../images/Background/BackgroundInput3.webp);
    background-size: cover;
    width: 17vw;
    height: 17vw;
    border: none;
    font-family: poppins, sans-serif;
    font-size: 1.5vw;
    padding-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inpNom,
.inpPrenom,
.inpNbBillets {
    font-family: poppins, sans-serif;
    width: 15vw;
    height: 4vw;
    background-color: var(--orange);
    border: none;
    border-radius: 10px;
    color: var(--camel);
    padding: 10px;
    padding-left: 20px;
    font-size: 1.2vw;
    font-weight: 700;
}

.inpNom::placeholder,
.inpPrenom::placeholder,
.inpNbBillets::placeholder {
    font-family: poppins, sans-serif;
    color: var(--camel);
    opacity: 0.9;
}

.nomForm,
.prenomForm,
.nbbilletForm {
    position: absolute;
    margin-left: -10vw;
    margin-top: -5vw;
    background-color: var(--brown);
    width: 7vw;
    color: var(--yellow);
    font-family: poppins, sans-serif;
    font-size: 1.1vw;
    border: none;
    border-radius: 10px;
    padding: 5px;
    transform: rotateZ(-20deg);
    display: flex;
    justify-content: center;
}



.inpTel {
    font-family: poppins, sans-serif;
    width: 15vw;
    height: 4vw;
    background-color: var(--pink);
    border: none;
    border-radius: 10px;
    color: var(--purple);
    padding: 10px;
    padding-left: 20px;
    font-size: 1.2vw;
    font-weight: 700;
}

.inpTel::placeholder {
    font-family: poppins, sans-serif;
    color: var(--purple);
    opacity: 0.9;
}

.inpEmail {
    font-family: poppins, sans-serif;
    width: 15vw;
    height: 4vw;
    background-color: var(--orange);
    border: none;
    border-radius: 10px;
    color: var(--camel);
    padding: 10px;
    padding-left: 20px;
    font-size: 1.2vw;
    font-weight: 700;
}

.inpEmail::placeholder {
    font-family: poppins, sans-serif;
    color: var(--camel);
    opacity: 0.9;
}

.telForm {
    position: absolute;
    margin-left: -10vw;
    margin-top: -5vw;
    background-color: var(--brown);
    width: 7vw;
    color: var(--yellow);
    font-family: poppins, sans-serif;
    font-size: 1.1vw;
    border: none;
    border-radius: 10px;
    padding: 5px;
    transform: rotateZ(-20deg);
    display: flex;
    justify-content: center;
}

.emailForm {
    position: absolute;
    margin-left: -10vw;
    margin-top: -5vw;
    background-color: var(--brown);
    width: 7vw;
    color: var(--yellow);
    font-family: poppins, sans-serif;
    font-size: 1.1vw;
    border: none;
    border-radius: 10px;
    padding: 5px;
    transform: rotateZ(-20deg);
    display: flex;
    justify-content: center;
}

.obtenirBillet {
    font-family: poppins, sans-serif;
    font-size: 1.7vw;
    font-weight: 900;
    color: var(--pink);
    background-color: var(--purple);
    border: none;
    border-radius: 15px;
    width: 20vw;
    height: 7vw;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5vw;
    cursor: pointer;
    transition: .3s ease-in-out;
}

.obtenirBillet:hover {
    transform: scale(1.05);
}

a.addEventAgenda {
    text-decoration: none;
}



.addEvent {
    font-family: poppins, sans-serif;
    font-size: 1.5vw;
    color: var(--yellow);
    background-color: var(--brown);
    border: none;
    border-radius: 10px;
    width: 15vw;
    height: 5vw;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .3s ease-in-out;
}

.addEvent:hover {
    transform: scale(1.05);
}


.billetUser {
    display: flex;
    justify-content: space-evenly;
}

.billetPrenom {
    background-image: url(../images/Background/BackgroundInput3.webp);
    background-size: cover;
    width: 17vw;
    height: 17vw;
    border: none;
    font-family: poppins, sans-serif;
    font-size: 1.5vw;
    padding-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.billetNom {
    background-image: url(../images/Background/BackgroundInput2.webp);
    background-size: cover;
    width: 17vw;
    height: 17vw;
    border: none;
    font-family: poppins, sans-serif;
    font-size: 1.5vw;
    padding-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.billetEmail {
    background-image: url(../images/Background/BackgroundInput3.webp);
    background-size: cover;
    width: 17vw;
    height: 17vw;
    border: none;
    font-family: poppins, sans-serif;
    font-size: 1.5vw;
    padding-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.billetBus {
    background-image: url(../images/Background/BackgroundInput2.webp);
    background-size: cover;
    width: 17vw;
    height: 17vw;
    border: none;
    font-family: poppins, sans-serif;
    font-size: 1.5vw;
    padding-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.billetPrenom label,
.billetNom label,
.billetEmail label,
.billetBus label {
    position: absolute;
    margin-left: -10vw;
    margin-top: -5vw;
    background-color: var(--brown);
    width: 7vw;
    color: var(--yellow);
    font-family: poppins, sans-serif;
    font-size: 1.1vw;
    border: none;
    border-radius: 10px;
    padding: 5px;
    transform: rotateZ(-20deg);
    display: flex;
    justify-content: center;
}

.billetEmail input,
.billetNom input {
    font-family: poppins, sans-serif;
    width: 15vw;
    height: 4vw;
    background-color: var(--orange);
    border: none;
    border-radius: 10px;
    color: var(--camel);
    padding: 10px;
    padding-left: 20px;
    font-size: 1.2vw;
    font-weight: 700;
}

.billetPrenom input {
    font-family: poppins, sans-serif;
    width: 15vw;
    height: 4vw;
    background-color: var(--pink);
    border: none;
    border-radius: 10px;
    color: var(--purple);
    padding: 10px;
    padding-left: 20px;
    font-size: 1.2vw;
    font-weight: 700;
}

.billetPrenom input::placeholder {
    font-family: poppins, sans-serif;
    color: var(--purple);
    opacity: 0.9;
}

.billetEmail input::placeholder,
.billetNom input::placeholder {
    font-family: poppins, sans-serif;
    color: var(--camel);
    opacity: 0.9;
}

.billetBus select {
    font-family: poppins, sans-serif;
    width: 15vw;
    height: 4vw;
    background-color: var(--orange);
    border: none;
    border-radius: 10px;
    color: var(--camel);
    padding: 10px;
    padding-left: 20px;
    font-size: 1.2vw;
    font-weight: 700;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23f8eee6' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    padding-right: 40px;
}

.billetBus select:focus {
    outline: 2px solid var(--yellow);
    outline-offset: 2px;
}

.billetBus select option {
    background-color: var(--orange);
    color: var(--camel);
    padding: 10px;
    font-weight: 700;
}

.billetBus select option:hover {
    background-color: var(--yellow);
    color: var(--brown);
    cursor: pointer;
}

.billetBus select option:checked {
    background-color: var(--brown);
    color: var(--yellow);
}

.billetBus select option:disabled {
    background-color: #999;
    color: #666;
    opacity: 0.5;
    cursor: not-allowed;
}

.titleBillets {
    font-family: poppins, sans-serif;
    font-size: 2.2vw;
    font-weight: 900;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

#billets h3 {
    font-family: poppins, sans-serif;
    font-size: 1.7vw;
    font-weight: 900;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3vw;
}

.payementBtn {
    display: flex;
    justify-content: center;
    margin-top: 5vw;
    background-color: var(--brown);
    align-items: center;
    width: 15vw;
    height: 6vw;
    border-radius: 10px;
    font-family: poppins, sans-serif;
    font-size: 1.5vw;
    font-weight: 700;
    color: var(--yellow);
    border: none;
    cursor: pointer;
    margin: 5vw auto;
}

.headPage {
    display: flex;
    justify-content: space-evenly;
    align-items: center;

    margin-top: 7vw;
}

.insta {
    background-color: white;
    width: 18vw;
    height: auto;
    background: #fff;
    box-shadow:
        0 1px 1px rgba(0, 0, 0, 0.12),
        0 2px 2px rgba(0, 0, 0, 0.12),
        0 4px 4px rgba(0, 0, 0, 0.12),
        0 8px 8px rgba(0, 0, 0, 0.12);
    transform: rotate(-2deg);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    font-family: lora, sans-serif;
    padding: 1vw;
}

.insta:hover {
    box-shadow:
        0 4px 4px rgba(0, 0, 0, 0.25),
        0 8px 8px rgba(0, 0, 0, 0.25),
        0 16px 16px rgba(0, 0, 0, 0.25),
        0 32px 32px rgba(0, 0, 0, 0.25);
    transform: rotate(0deg) scale(1.05);
}

.insta img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.insta h3,
.insta .highlight-text {
    font-size: 1.5vw;
    color: var(--purple);
}

.insta .highlight-text {
    font-family: lora, sans-serif;
    margin: 0;
}


.insta2 {
    background-color: white;
    width: 18vw;
    height: auto;
    background: #fff;
    box-shadow:
        0 1px 1px rgba(0, 0, 0, 0.12),
        0 2px 2px rgba(0, 0, 0, 0.12),
        0 4px 4px rgba(0, 0, 0, 0.12),
        0 8px 8px rgba(0, 0, 0, 0.12);
    transform: rotate(3deg);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    font-family: lora, sans-serif;
    padding: 1vw;
}

.insta2:hover {
    box-shadow:
        0 4px 4px rgba(0, 0, 0, 0.25),
        0 8px 8px rgba(0, 0, 0, 0.25),
        0 16px 16px rgba(0, 0, 0, 0.25),
        0 32px 32px rgba(0, 0, 0, 0.25);
    transform: rotate(0deg) scale(1.05);
}

.insta2 img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.insta2 h3,
.insta2 .highlight-text {
    font-size: 1.5vw;
    color: var(--brown);
}

.insta2 .highlight-text {
    font-family: lora, sans-serif;
    margin: 0;
}

.error-message {
    background-color: #ffebee;
    border-left: 4px solid #f44336;
    color: #c62828;
    padding: 1.5vw;
    margin: 2vw 5vw;
    border-radius: 5px;
    font-family: poppins, sans-serif;
    font-size: 1.2vw;
}

/* Media Queries pour le responsive */

/* Mobile (téléphone) - Détection basée sur le ratio d'aspect et l'orientation */
@media screen and ((orientation: portrait) and (max-aspect-ratio: 2/3)),
       screen and ((max-width: 768px) and (hover: none) and (pointer: coarse)) {

    /* Section headPage */
    .headPage {
        flex-direction: column;
        gap: 8vw;
        padding: 8vw 0;
    }

    .insta,
    .insta2 {
        width: 70vw;
        height: auto;
    }

    .insta img,
    .insta2 img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .insta h3,
    .insta2 h3,
    .insta .highlight-text,
    .insta2 .highlight-text {
        font-size: 5vw;
        margin-top: 2vw;
    }

    /* Première section */
    .premiereSection {
        margin-top: 0;
        padding: 0 5vw;
    }

    .premiereSection h1.titre1 {
        font-size: 8vw;
        text-align: center;
    }

    .premiereSection h2.date {
        font-size: 4.5vw;
        margin-top: 4vw;
        text-align: center;
    }

    .premiereSection p.point-vente {
        font-size: 3.5vw;
        margin-top: 3vw;
        text-align: center;
        padding: 0 5vw;
    }

    /* Formulaire */
    .formulaire {
        margin: 8vw 5vw;
    }

    .enregistrement {
        gap: 5vw;
    }

    .formulaire1,
    .formulaire2 {
        flex-direction: column;
        gap: 5vw;
    }

    .titleFormParticiper,
    .titleFormInfoARentrer {
        width: 80vw;
        height: 80vw;
        font-size: 6vw;
        padding: 4vw;
    }

    .formNom,
    .formPrenom,
    .formNbBillets,
    .formTel,
    .formEmail {
        width: 80vw;
        height: 80vw;
        font-size: 4vw;
    }

    .inpNom,
    .inpPrenom,
    .inpNbBillets,
    .inpTel,
    .inpEmail {
        width: 70vw;
        height: 15vw;
        font-size: 4vw;
        padding-left: 5vw;
    }

    .nomForm,
    .prenomForm,
    .nbbilletForm,
    .telForm,
    .emailForm {
        width: 25vw;
        font-size: 3.5vw;
        margin-left: -57vw;
        margin-top: -20vw;
        padding: 2vw;
    }

    .obtenirBillet {
        width: 70vw;
        height: 20vw;
        font-size: 5vw;
        margin-top: 8vw;
    }

    .addEvent {
        width: 60vw;
        height: 18vw;
        font-size: 4.5vw;
        margin-top: 5vw;
        margin-bottom: 8vw;
    }

    /* Billets multiples */
    .titleBillets {
        font-size: 6vw;
        margin: 5vw;
    }

    #billets h3 {
        font-size: 5vw;
        margin: 5vw;
    }

    .billetUser {
        flex-direction: column;
        gap: 5vw;
        margin: 5vw 0;
    }

    .billetPrenom,
    .billetNom,
    .billetEmail,
    .billetBus {
        width: 80vw;
        height: 80vw;
        font-size: 4vw;
        margin: 0 auto;
    }

    .billetPrenom input,
    .billetNom input,
    .billetEmail input {
        width: 70vw;
        height: 15vw;
        font-size: 4vw;
        padding-left: 5vw;
    }

    .billetBus select {
        width: 70vw;
        height: 15vw;
        font-size: 4vw;
        padding-left: 5vw;
        padding-right: 10vw;
        background-position: right 5vw center;
        background-size: 30px;
    }

    .billetPrenom label,
    .billetNom label,
    .billetEmail label,
    .billetBus label {
        width: 25vw;
        font-size: 3.5vw;
        margin-left: -40vw;
        margin-top: -30vw;
        padding: 2vw;
    }

    .payementBtn {
        width: 60vw;
        height: 20vw;
        font-size: 5vw;
        margin-top: 8vw;
    }

    .error-message {
        font-size: 4vw;
        padding: 4vw;
        margin: 5vw;
    }
}

/* Tablette - Écrans moyens en portrait ou paysage tactile */
@media screen and ((orientation: portrait) and (min-aspect-ratio: 2/3) and (max-width: 1024px)),
       screen and ((orientation: landscape) and (max-width: 1366px) and (hover: none)),
       screen and ((min-width: 769px) and (max-width: 1024px) and (orientation: portrait)) {

    /* Section headPage */
    .headPage {
        gap: 5vw;
        padding: 5vw 0;
    }

    .insta,
    .insta2 {
        width: 30vw;
        height: auto;
    }

    .insta img,
    .insta2 img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .insta h3,
    .insta2 h3,
    .insta .highlight-text,
    .insta2 .highlight-text {
        font-size: 2.5vw;
    }

    /* Première section */
    .premiereSection h1.titre1 {
        font-size: 4vw;
    }

    .premiereSection h2.date {
        font-size: 2vw;
    }

    .premiereSection p.point-vente {
        font-size: 1.5vw;
        margin-top: 2vw;
    }

    /* Formulaire */
    .titleFormParticiper,
    .titleFormInfoARentrer {
        width: 25vw;
        height: 25vw;
        font-size: 2.8vw;
    }

    .formNom,
    .formPrenom,
    .formNbBillets,
    .formTel,
    .formEmail {
        width: 22vw;
        height: 22vw;
        font-size: 2vw;
    }

    .inpNom,
    .inpPrenom,
    .inpNbBillets,
    .inpTel,
    .inpEmail {
        width: 18vw;
        height: 5vw;
        font-size: 1.5vw;
    }

    .nomForm,
    .prenomForm,
    .nbbilletForm,
    .telForm,
    .emailForm {
        width: 8vw;
        font-size: 1.3vw;
        margin-left: -12vw;
        margin-top: -6vw;
    }

    .obtenirBillet {
        width: 25vw;
        height: 9vw;
        font-size: 2vw;
    }

    .addEvent {
        width: 20vw;
        height: 6vw;
        font-size: 1.8vw;
    }

    /* Billets multiples */
    .titleBillets {
        font-size: 3vw;
    }

    #billets h3 {
        font-size: 2.2vw;
    }

    .billetPrenom,
    .billetNom,
    .billetEmail,
    .billetBus {
        width: 22vw;
        height: 22vw;
        font-size: 2vw;
    }

    .billetPrenom input,
    .billetNom input,
    .billetEmail input {
        width: 18vw;
        height: 5vw;
        font-size: 1.5vw;
    }

    .billetBus select {
        width: 18vw;
        height: 5vw;
        font-size: 1.5vw;
        padding-left: 2vw;
        padding-right: 5vw;
        background-position: right 1.5vw center;
        background-size: 25px;
    }

    .billetPrenom label,
    .billetNom label,
    .billetEmail label,
    .billetBus label {
        width: 8vw;
        font-size: 1.3vw;
        margin-left: -12vw;
        margin-top: -6vw;
    }

    .payementBtn {
        width: 20vw;
        height: 8vw;
        font-size: 1.8vw;
    }

    .error-message {
        font-size: 1.5vw;
        padding: 2vw;
    }
}


/* countdown */
.countdown-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.countdown-container {
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.countdown-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-family: 'Lora', serif;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.time-box {
    background: white;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    min-width: 150px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.time-box:hover {
    transform: translateY(-5px);
}

.time-value {
    display: block;
    font-size: 4rem;
    font-weight: bold;
    color: #34495e;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.time-label {
    display: block;
    font-size: 1.2rem;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown-message {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
}

.addEventDiv

.add-calendar-btn {
    text-decoration: none;
}

.addEvent {
    background: var(--yellow);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    color: var(--purple);
    width: 25vw;
}

.addEvent:hover {
    background: var(--purple);
    color: var(--camel);
    transform: scale(1.05);
}

.dateEtBillet {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    margin: auto;
}

.addEventDiv a {
    text-decoration: none;
}

.addEventDiv {
    display: flex;
    justify-content: center;
    margin: 5vw auto;
}

/* Responsive countdown pour mobile */
@media screen and ((orientation: portrait) and (max-aspect-ratio: 2/3)),
       screen and ((max-width: 768px) and (hover: none) and (pointer: coarse)) {
    .countdown-title {
        font-size: 1.8rem;
    }

    .countdown-timer {
        gap: 1rem;
    }

    .time-box {
        min-width: 100px;
        padding: 1.5rem 1rem;
    }

    .time-value {
        font-size: 2.5rem;
    }

    .time-label {
        font-size: 0.9rem;
    }

    .countdown-message {
        font-size: 1.2rem;
    }

    .addEvent {
        width: 65vw;
    }
}