/* _content/WarriorCombatGym.Public/Components/Layout/MainLayout.razor.rz.scp.css */
/* Main Layout Scoped Styles */
.page[b-rkazml0yv5] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content[b-rkazml0yv5] {
    flex: 1;
}

/* Header & Navigation */
.site-header[b-rkazml0yv5] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(220, 38, 38, 0.3);
}

.navbar[b-rkazml0yv5] {
    padding: 0;
}

.nav-container[b-rkazml0yv5] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand[b-rkazml0yv5] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #fff;
}

.brand-icon[b-rkazml0yv5] {
    font-size: 1.75rem;
}

.brand-text[b-rkazml0yv5] {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #dc2626 0%, #f87171 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu[b-rkazml0yv5] {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.nav-link[b-rkazml0yv5] {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.nav-link:hover[b-rkazml0yv5] {
    color: #fff;
    background: rgba(220, 38, 38, 0.2);
}

.nav-cta[b-rkazml0yv5] {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #fff !important;
}

.nav-cta:hover[b-rkazml0yv5] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
}

.nav-toggle[b-rkazml0yv5] {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger[b-rkazml0yv5] {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger[b-rkazml0yv5]::before,
.hamburger[b-rkazml0yv5]::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

.hamburger[b-rkazml0yv5]::before {
    top: -8px;
}

.hamburger[b-rkazml0yv5]::after {
    top: 8px;
}

/* Footer */
.site-footer[b-rkazml0yv5] {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    border-top: 1px solid rgba(220, 38, 38, 0.3);
    padding: 4rem 0 0;
    margin-top: auto;
}

.footer-container[b-rkazml0yv5] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid[b-rkazml0yv5] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3[b-rkazml0yv5] {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section h4[b-rkazml0yv5] {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #dc2626;
}

.footer-section p[b-rkazml0yv5] {
    color: #9ca3af;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-section ul[b-rkazml0yv5] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li[b-rkazml0yv5] {
    margin-bottom: 0.5rem;
}

.footer-section ul a[b-rkazml0yv5] {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul a:hover[b-rkazml0yv5] {
    color: #dc2626;
}

.footer-bottom[b-rkazml0yv5] {
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p[b-rkazml0yv5] {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .footer-grid[b-rkazml0yv5] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle[b-rkazml0yv5] {
        display: block;
    }
    
    .nav-menu[b-rkazml0yv5] {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        padding: 1rem;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-menu.open[b-rkazml0yv5] {
        max-height: 500px;
        border-bottom: 1px solid rgba(220, 38, 38, 0.3);
    }
    
    .nav-link[b-rkazml0yv5] {
        padding: 1rem;
        text-align: center;
    }
    
    .footer-grid[b-rkazml0yv5] {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
