/* Logo OREPH Stylisé */
.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    padding: 8px 15px;
    text-decoration: none;
}

.logo-text span {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8c42 50%, #ffa500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(255, 107, 157, 0.4));
}

/* Effet de câble électrique */
.logo-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff6b9d 0%, #ffa500 100%);
    transform: translateY(-50%);
    z-index: 1;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 107, 157, 0.5);
}

/* Effet antenne télécom */
.logo-text::after {
    content: '📡';
    position: absolute;
    right: -20px;
    top: -8px;
    font-size: 16px;
    z-index: 3;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Version footer (blanc) */
.logo-text-footer {
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text-footer span {
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text-footer::before {
    background: linear-gradient(90deg, #ffffff 0%, #ffa500 100%);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

/* Hover effect */
.logo-text:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

/* Titres des services en blanc */
.services-one__title {
    color: #ffffff !important;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-text {
        font-size: 28px;
    }
}

