/* ==========================================
   HEADER & NAVIGATION STYLES
   ========================================== */

.site-header {
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.site-logo img {
    height: 40px;
    margin-right: 10px;
}

.site-logo span {
    background: linear-gradient(135deg, #38bdf8, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-logo:hover {
    transform: scale(1.05);
    color: #ffffff;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.5rem;
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.main-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.main-menu li {
    margin: 0;
}

.main-menu a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    transition: all 0.2s ease-in-out;
    position: relative;
    display: block;
}

.main-menu a:hover,
.main-menu a.current-menu-item,
.main-menu .current_page_item>a {
    color: #ffffff;
    background-color: rgba(56, 189, 248, 0.1);
}

.main-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #38bdf8, #2563eb);
    transform: translateX(-50%);
    transition: width 0.2s ease-in-out;
}

.main-menu a:hover::before,
.main-menu a.current-menu-item::before,
.main-menu .current_page_item>a::before {
    width: 80%;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #0f172a;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.2s ease-in-out;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-menu {
        flex-direction: column;
        gap: 0.5rem;
    }

    .main-menu li {
        width: 100%;
    }

    .main-menu a {
        display: block;
        width: 100%;
        padding: 1rem;
    }
}

/* ==========================================
   FOOTER STYLES
   ========================================== */

.site-footer {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.footer-info {
    max-width: 600px;
}

.footer-creator {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.6;
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    justify-content: center;
}

.footer-menu li {
    margin: 0;
}

.footer-menu a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease-in-out;
}

.footer-menu a:hover {
    color: #38bdf8;
}

.footer-copyright {
    color: #64748b;
    font-size: 0.875rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

@media (max-width: 768px) {
    .footer-menu {
        flex-direction: column;
        gap: 1rem;
    }
}