/* ===========================================
   Header Styles
   =========================================== */

/* Header Base Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Header Top Section */
.header-top {
    padding: 10px 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Header Navigation Section */
.header-navigation {
    background-color: var(--primary-color);
    padding: 10px 0;
}

.site-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Logo Styles */
.site-branding {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.site-branding .custom-logo {
    max-height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.site-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    margin-left: 15px;
}

.site-title a {
    color: var(--text-color);
    text-decoration: none;
}

/* Header Contact Info */
.header-contact {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-contact a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.header-contact a i {
    color: var(--primary-color);
    font-size: 16px;
}

.header-contact a:hover {
    color: var(--primary-color);
}

.header-contact .btn {
    padding: 6px 20px;
    border-radius: 30px;
    background-color: var(--primary-color);
    color: #ffffff;
    border: 2px solid var(--primary-color);
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.header-contact .btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .header-contact {
        display: none; /* Hide contact info on mobile */
    }
}

/* Sticky Header */
.site-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    animation: fadeInDown 0.5s ease-in-out;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}