/* YAU Shared Navigation CSS v1.0.1 */

/* Hide old inline headers/footers in Elementor widgets */
.elementor-widget-html .header { display: none !important; }
.elementor-widget-html .footer { display: none !important; }

/* ── SHARED HEADER ── */
.yau-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.75rem 0;
    font-family: 'DM Sans', sans-serif;
}
.yau-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.yau-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.yau-header .logo img { height: 45px; width: auto; }
.yau-nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.yau-nav-link {
    color: #e0e0e0;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
}
.yau-nav-link:hover { color: #f7e733; }
.yau-nav-link.active { color: #f7e733; }

/* Nav CTA buttons */
.yau-nav-links .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
    line-height: 1.4;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-family: 'DM Sans', sans-serif;
}
.yau-nav-links .btn-primary {
    background: #f7e733;
    color: #1a1a2e;
    border-color: #f7e733;
}
.yau-nav-links .btn-primary:hover {
    background: #e6d62e;
    border-color: #e6d62e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(247, 231, 51, 0.3);
}
.yau-nav-links .btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}
.yau-nav-links .btn-outline:hover {
    background: #f7e733;
    border-color: #f7e733;
    color: #1a1a2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(247, 231, 51, 0.2);
}

/* Mobile menu toggle */
.yau-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.yau-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}
@media (max-width: 900px) {
    .yau-mobile-toggle { display: flex; }
    .yau-nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: rgba(26, 26, 46, 0.98);
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .yau-nav-links.active { display: flex; }
    .yau-nav-link { padding: 0.75rem 1rem; }
}

/* ── SHARED FOOTER ── */
.yau-footer {
    padding: 3rem 0 1.5rem;
    background: #16162a;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-family: 'DM Sans', sans-serif;
    color: #fff;
}
.yau-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.yau-footer-brand-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.yau-footer-logo { height: 55px; width: auto; }
.yau-footer-tagline {
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.5;
    white-space: nowrap;
}
.yau-footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}
.yau-footer-column h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #f7e733;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.yau-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.yau-footer-links li { margin-bottom: 0.4rem; }
.yau-footer-links a {
    color: #9ca3af;
    font-size: 0.85rem;
    transition: color 0.2s ease;
    text-decoration: none;
}
.yau-footer-links a:hover { color: #f7e733; }
.yau-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.yau-footer-copyright {
    color: #6b7280;
    font-size: 0.8rem;
    margin: 0;
}
.yau-footer-social {
    display: flex;
    gap: 1rem;
}
.yau-footer-social a {
    color: #9ca3af;
    font-size: 1.1rem;
    transition: color 0.2s ease;
    text-decoration: none;
}
.yau-footer-social a:hover { color: #f7e733; }

@media (max-width: 768px) {
    .yau-footer-brand-row {
        flex-direction: column;
        text-align: center;
    }
    .yau-footer-tagline { white-space: normal; }
    .yau-footer-columns {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .yau-footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
