/* gabs.reviews - Y2K Chrome Metallic Community Review Board */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Archivo', sans-serif;
    color: #333333;
    background: #E8E8E8;
    overflow-x: hidden;
}

.section {
    width: 100%;
    position: relative;
}

/* ========== CHROME TEXT EFFECTS ========== */

.chrome-text {
    background: linear-gradient(180deg, #FFFFFF 0%, #888888 50%, #FFFFFF 80%, #666666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chrome-text-light {
    background: linear-gradient(180deg, #FFFFFF 0%, #AAAAAA 50%, #DDDDDD 80%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== CHROME BANNER HERO ========== */

.hero {
    min-height: 100vh;
    background: linear-gradient(180deg, #C0C0C0 0%, #E8E8E8 30%, #A0A0A0 70%, #808080 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%);
    animation: chromeReveal 800ms ease forwards;
}

@keyframes chromeReveal {
    from { transform: translateX(0); }
    to { transform: translateX(50%); }
}

.hero-content {
    text-align: center;
    z-index: 1;
    position: relative;
}

.hero-title {
    font-family: 'Archivo Black', sans-serif;
    font-weight: 400;
    font-size: clamp(4rem, 10vw, 8rem);
    opacity: 0;
    animation: fadeIn 400ms ease 400ms forwards;
}

.hero-subtitle {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    opacity: 0;
    animation: fadeIn 300ms ease 700ms forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* ========== FILTER BAR ========== */

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 1.5rem 2rem;
    background: linear-gradient(180deg, #D0D0D0, #B8B8B8);
    border-bottom: 1px solid #A0A0A0;
    opacity: 0;
    transform: translateY(-20px);
    animation: slideDown 300ms ease 1000ms forwards;
}

@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.filter-pill {
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 20px;
    background: linear-gradient(180deg, #E0E0E0, #C0C0C0);
    border: 1px solid #A0A0A0;
    border-radius: 20px;
    cursor: pointer;
    transition: background 200ms ease;
    color: #333333;
}

.filter-pill:hover {
    background: linear-gradient(0deg, #E0E0E0, #C0C0C0);
}

.filter-pill.active {
    background: linear-gradient(180deg, #FFD700, #B8860B);
    border-color: #B8860B;
    color: #333333;
}

/* ========== MASONRY GRID ========== */

.reviews-section {
    padding: 2rem;
    min-height: auto;
}

.masonry-grid {
    column-count: 3;
    column-gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.review-card {
    break-inside: avoid;
    background: linear-gradient(180deg, #F8F8F8, #E8E8E8);
    border: 1px solid #D0D0D0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 300ms ease, transform 300ms ease;
    position: relative;
    overflow: hidden;
}

.review-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.review-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
    transition: none;
    pointer-events: none;
}

.review-card:hover::after {
    animation: sheenSweep 400ms ease forwards;
}

@keyframes sheenSweep {
    from { left: -100%; }
    to { left: 100%; }
}

.reviewer-name {
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #333333;
    display: block;
    margin-bottom: 0.5rem;
}

.stars {
    display: flex;
    gap: 2px;
    margin-bottom: 0.75rem;
}

.star-icon {
    width: 14px;
    height: 14px;
}

.review-text {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.65;
    color: #444444;
    margin-bottom: 0.75rem;
}

.helpful-count {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
    color: #808080;
}

/* ========== STATS STRIP ========== */

.stats-strip {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(180deg, #D0D0D0, #A0A0A0);
    min-height: auto;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Archivo Black', sans-serif;
    font-weight: 400;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    display: block;
}

.stat-label {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    color: #444444;
    margin-top: 0.25rem;
    display: block;
}

/* ========== CHROME FOOTER ========== */

.footer {
    background: linear-gradient(180deg, #808080, #606060);
    padding: 2rem;
    text-align: center;
}

.footer-brand {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 768px) {
    .masonry-grid {
        column-count: 2;
    }

    .stats-strip {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .masonry-grid {
        column-count: 1;
    }

    .filter-bar {
        flex-wrap: wrap;
    }
}
