/* ================================
   About Us Page Styles
   ================================ */

:root {
    --about-bg: #0a0a0a;
    --card-bg: #141414;
    --accent-red: #ff3c3c;
}

.about-hero {
    padding: 120px 0 60px;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../../assets/images/hero/hardware-hero-1.png');
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--accent-primary);
}

.about-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-family: var(--font-display);
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.about-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
}

.about-content {
    padding: 80px 0;
    background: var(--about-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: transform 0.3s, border-color 0.3s;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.about-icon {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 25px;
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.about-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.highlighted-card {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 1px solid var(--accent-primary);
}

.motto-text {
    font-style: italic;
    font-size: 1.3rem;
    color: #fff !important;
}

.shop-preview {
    padding: 80px 0;
    background: #000;
}

.preview-text {
    text-align: center;
    margin-bottom: 50px;
}

.preview-text h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.preview-text p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

.preview-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.image-placeholder {
    aspect-ratio: 16/9;
    background: #111;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.2);
    border: 2px dashed rgba(255, 255, 255, 0.05);
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .preview-gallery {
        grid-template-columns: 1fr;
    }

    .about-hero {
        padding: 100px 0 40px;
    }
}