/* ===================================================================
   One Painters Header Widget - Elementor Styles
   Professional header with sticky functionality
   =================================================================== */

/* Header Container */
.ope-header {
    position: relative;
    width: 100%;
    transition: all 0.3s ease;
    background: #ffffff;
}

.ope-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 30px;
    gap: 40px;
}

/* Sticky Header */
.ope-sticky {
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ope-sticky.is-stuck {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Logo */
.ope-logo {
    flex-shrink: 0;
}

.ope-logo a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.ope-logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

.ope-site-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1d29;
    margin: 0;
}

.ope-tagline {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}

/* Navigation */
.ope-nav {
    flex: 1;
}

.ope-nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    align-items: center;
}

.ope-nav-menu li {
    margin: 0;
}

.ope-nav-menu a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
    position: relative;
}

.ope-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.ope-nav-menu a:hover::after {
    width: 100%;
}

/* Contact Info */
.ope-contact-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.ope-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.ope-phone i {
    color: #ff6b35;
}

/* CTA Button */
.ope-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #ff6b35 0%, #ffb84d 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.ope-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .ope-header-container {
        flex-wrap: wrap;
        gap: 20px;
    }

    .ope-nav {
        order: 3;
        flex-basis: 100%;
    }

    .ope-nav-menu {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .ope-header-container {
        padding: 15px 20px;
    }

    .ope-nav-menu {
        flex-direction: column;
        gap: 15px;
    }

    .ope-contact-info {
        flex-direction: column;
        gap: 10px;
    }

    .ope-cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }
}