/* === SIMPLE HEADER STYLES === */
.simple-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

.simple-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.header-logo {
    flex: 0 0 auto;
}

.header-logo img {
    height: 50px;
    width: auto;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 25px;
    padding: 8px 15px;
    gap: 10px;
    min-width: 250px;
}

.search-icon {
    width: 18px;
    height: 18px;
    color: #666;
    flex-shrink: 0;
}

.search-box input {
    border: none;
    background: transparent;
    outline: none;
    flex: 1;
    padding: 0;
    font-size: 14px;
}

.language-switch {
    display: flex;
    align-items: center;
}

.lang {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.lang.active {
    color: #fff;
    font-weight: 600;
}

.lang:hover {
    background: rgba(255, 255, 255, 0.1);
}

.divider {
    color: #fff;
}

.grid-toggle {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
}

.grid-toggle span {
    display: block;
    width: 4px;
    height: 4px;
    background: #333;
    border-radius: 50%;
    position: absolute;
    transition: all 0.3s ease;
}

.grid-toggle span:nth-child(1) { top: 6px; left: 6px; }
.grid-toggle span:nth-child(2) { top: 6px; left: 13px; }
.grid-toggle span:nth-child(3) { top: 6px; right: 6px; }
.grid-toggle span:nth-child(4) { top: 13px; left: 6px; }
.grid-toggle span:nth-child(5) { top: 13px; left: 13px; }
.grid-toggle span:nth-child(6) { top: 13px; right: 6px; }
.grid-toggle span:nth-child(7) { bottom: 6px; left: 6px; }
.grid-toggle span:nth-child(8) { bottom: 6px; left: 13px; }
.grid-toggle span:nth-child(9) { bottom: 6px; right: 6px; }

/* Navigation */
.header-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 15px 0;
    flex-wrap: wrap;
}

.header-navigation .nav-item {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.header-navigation .nav-item:hover {
    color: #007bff;
}

.header-navigation .nav-item.active {
    color: #007bff;
}

.header-navigation .nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #007bff;
}

.header-navigation .nav-item.home {
    color: #666;
    font-size: 13px;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Breadcrumb */
.breadcrumb {
    margin-top: 30px;
}

.breadcrumb ol {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb li {
    font-size: 14px;
    opacity: 0.8;
}

.breadcrumb li:not(:last-child)::after {
    content: '>';
    margin-left: 10px;
    opacity: 0.6;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-top {
        padding: 10px 0;
    }
    
    .search-box {
        min-width: 200px;
    }
    
    .header-navigation {
        gap: 20px;
        justify-content: center;
    }
    
    .header-navigation .nav-item {
        font-size: 13px;
    }
    
    .page-hero {
        padding: 40px 0;
    }
    
    .page-hero-content h1 {
        font-size: 2rem;
    }
    
    .grid-toggle {
        display: block;
    }
    
    .header-navigation {
        display: none;
    }
}

@media (max-width: 480px) {
    .simple-header-container {
        padding: 0 15px;
    }
    
    .header-top {
        gap: 10px;
    }
    
    .search-box {
        min-width: 150px;
    }
    
    .header-logo img {
        height: 40px;
    }
    
    .page-hero-content h1 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .page-hero-content p {
        font-size: 1rem;
    }
}
