/* Top Banner Styles */
.top-banner-container {
    background: linear-gradient(135deg, #66676b 0%, #333 100%);
    color: #fff;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 998;
}

.top-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 36px;
}

.top-banner-left .banner-text {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    display: inline-block;
}

.top-banner-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-phone-btn {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-phone-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contact-phone-btn i {
    font-size: 16px;
    margin-right: 8px;
    position: relative;
    top: 1px;
}

.contact-phone-btn span {
    font-weight: 600;
}

/* WhatsApp Button Styles */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #25D366;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    border-color: #128C7E;
}

.whatsapp-btn i {
    font-size: 16px;
    margin-right: 8px;
    position: relative;
    top: 1px;
}

.whatsapp-btn span {
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .top-banner-content {
        flex-direction: column;
        text-align: center;
        padding: 5px 0;
    }
    
    .top-banner-left {
        margin-bottom: 8px;
    }
    
    .top-banner-left .banner-text {
        font-size: 14px;
    }
    
    .contact-phone-btn {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .whatsapp-btn {
        font-size: 13px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .top-banner-left .banner-text {
        font-size: 13px;
    }
    
    .contact-phone-btn span {
        display: none;
    }
    
    .contact-phone-btn i {
        margin-right: 0;
    }
    
    .contact-phone-btn:after {
        content: "İletişim";
        margin-left: 5px;
        font-size: 12px;
    }
    
    .whatsapp-btn span {
        display: none;
    }
    
    .whatsapp-btn i {
        margin-right: 0;
    }
    
    .whatsapp-btn:after {
        content: "WhatsApp";
        margin-left: 5px;
        font-size: 12px;
    }
}

/* Header spacing adjustment */
#wrapper {
    padding-top: 142px; /* 82px (header) + 60px (banner) */
}

#wrapper.wrapper-with-transparent-header {
    padding-top: 60px; /* Only banner height for transparent header */
}

/* Dark theme compatibility */
.top-banner-container.dark-theme {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
} 