:root{
    --logo-color: #ee9b3c;
    --secondary-color: #3498db;

}

.logo-container h1 {
    position: relative;
    display: inline-block;
    font-size: 2rem; /* Ajustez selon votre besoin */
    font-weight: 700;
    background: linear-gradient(90deg, #0606ff, #ff8a00, #4f00ff, #5e9cff, #00d4ff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 8s ease infinite, pulse1 2s ease-in-out infinite alternate;
}

.logo-container h1 span {
    font-weight: 400; /* Style différent pour "HOUSE" */
    text-transform: uppercase;
    letter-spacing: 0px;
    
}

/* Animation du gradient */
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Animation de pulsation */
@keyframes pulse1 {
    0% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
    }
    100% {
        transform: scale(1.03);
        text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
}

/* Optionnel : Animation au survol */
.logo-container:hover h1 {
    animation: gradientFlow 4s ease infinite, pulse1 0.5s ease-in-out infinite alternate;
}





/*social icons style*/
.social-icons {
    display: flex;
    gap: 15px;
  }
  
  .social-icons a {
    width: 30px;
    height: 30px;
    background-color: lightblue;
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }  
  .social-icons a:hover {
    background-color: var(--white-color);
    transform: translateY(-5px);
  }