/* glow de la souris*/

.cursor-glow {
    position: fixed;
    width: 20px;
    height: 20px;
    background-color: rgba(245, 119, 192, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 20px 10px rgba(239, 125, 192, 0.6);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.1s linear;

}

.navbar .logo {
    width: 10%;
    /* Le logo prendra 10% de la largeur du conteneur */
    max-width: 60px;
    /* Taille maximale pour éviter qu'il ne devienne trop grand */
    height: auto;
    /* Garde les proportions */
}

.vitrine {
    position: relative;
    width: 100%;
    height: 500px;
    background-image: url('img/print2.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }

    100% {
        transform: scale(1);
    }
}

/* taille du logo posé sur la vitrine */
.logo-animé {
    position: absolute;
    width: 38%;
    /* Taille initiale de l'image */
    max-width: 700px;
    /* Taille maximale de l'image */
    animation: resizeLogo 5s ease-in-out infinite;
    /* Animation de redimensionnement infini */
}



body {
    background-color: #ffbce4;
}





/* Effet de lumière au survol */
.clickable:hover {
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.8), 0 0 40px rgba(255, 105, 180, 0.5);
    transform: scale(1.1);
    /* Légère augmentation de taille */
    background-color: #ffebf3;
    /* Effet de couleur plus douce */
}




header {
    background-color: #000000;
    padding: 10px 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    width: 100px;
    animation: pulse 4s infinite;
}

.navbar .menu a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1rem;
    font-weight: bold;
    position: relative;
}

.navbar .menu a:hover {
    color: #ffbce4;
}

.navbar .menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #ffbce4;
    transition: 0.3s;
}


html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1; /* Permet à cette section de prendre tout l'espace restant */
}

/* Footer fixé en bas */
footer {
    background-color: #000000;
    color: white;
    text-align: center;
    padding: 20px;
    width: 100%;
}

/* Style global */
body {

    background: linear-gradient(135deg, #de2c97, #f3afbb);
    #f3c8d0
}


.contact {
    
    background-color: #ffbce4;
}
#submitButton {
    background-color: #1c5bd0; /* Rose */
    border-color: #2800ee;
    color: white;
    transition: background 0.3s ease;
}

#submitButton:hover {
    background-color: #d63384; /* Rose un peu plus foncé au survol */
    border-color: #d63384;
}

