/* gabs.review - Monochrome Review Site */
/* Colors: #0A0A0A, #1A1A1A, #2E2E2E, #333333, #6B6B6B, #B0B0B0, #E8E8E8, #000000, #C45C3E */
/* Fonts: Permanent Marker, Work Sans, Space Mono, Inter */

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: #0A0A0A;
    color: #E8E8E8;
    font-family: 'Work Sans', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
}

/* ============================================
   BOKEH BACKGROUND
   ============================================ */

#bokeh-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bokeh-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(180, 180, 180, 0.08) 0%, transparent 70%);
    opacity: 0;
    animation: bokehFloat 20s ease-in-out infinite, bokehFadeIn 2s ease-out forwards;
}

@keyframes bokehFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(15px, -20px) scale(1.05);
    }
    50% {
        transform: translate(-10px, 15px) scale(0.95);
    }
    75% {
        transform: translate(20px, 10px) scale(1.02);
    }
}

@keyframes bokehFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ============================================
   DUST MOTES
   ============================================ */

#dust-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.dust-mote {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(180, 180, 180, 0.3);
    border-radius: 50%;
    animation: dustDrift linear infinite;
}

@keyframes dustDrift {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-20px) translateX(40px);
        opacity: 0;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.section-hero {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-inner {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-family: 'Permanent Marker', cursive;
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #E8E8E8;
    text-shadow:
        1px 1px 0 #333333,
        2px 2px 0 #333333,
        3px 3px 0 #2E2E2E,
        4px 4px 0 #2E2E2E,
        5px 5px 0 #1A1A1A,
        6px 6px 0 #1A1A1A,
        7px 7px 0 #1A1A1A,
        8px 8px 0 #000000,
        9px 9px 0 #000000,
        10px 10px 0 #000000,
        11px 11px 0 #000000,
        12px 12px 0 #000000,
        13px 13px 0 #000000,
        14px 14px 0 #000000,
        15px 15px 0 #000000,
        16px 16px 0 #000000,
        17px 17px 0 #000000,
        18px 18px 0 #000000;
    opacity: 0;
    transform: scale(0.3);
    animation: inflateTitle 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s forwards;
}

@keyframes inflateTitle {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-tagline {
    font-family: 'Space Mono', monospace;
    font-size: clamp(0.75rem, 2vw, 1.1rem);
    font-weight: 400;
    color: #6B6B6B;
    letter-spacing: 0.15em;
    text-transform: lowercase;
    margin-top: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.6s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    margin-top: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 2.2s forwards;
}

.scroll-arrow {
    display: block;
    width: 20px;
    height: 20px;
    margin: 0 auto;
    border-right: 2px solid #6B6B6B;
    border-bottom: 2px solid #6B6B6B;
    transform: rotate(45deg);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: rotate(45deg) translate(0, 0);
        opacity: 0.5;
    }
    50% {
        transform: rotate(45deg) translate(5px, 5px);
        opacity: 1;
    }
}

/* ============================================
   DIAGONAL SECTIONS
   ============================================ */

.diagonal-section {
    position: relative;
    z-index: 2;
    padding: 120px 0;
    margin-top: -80px;
}

.diagonal-right {
    clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
    background: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);
}

.diagonal-left {
    clip-path: polygon(0 0, 100% 8%, 100% 100%, 0 92%);
    background: linear-gradient(225deg, #1A1A1A 0%, #0A0A0A 100%);
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 24px;
}

/* ============================================
   REVIEW CARDS
   ============================================ */

.review-card {
    position: relative;
    padding: 40px;
    background: rgba(30, 30, 30, 0.6);
    border-left: 3px solid #333333;
    backdrop-filter: blur(4px);
    transition: border-color 0.4s ease, transform 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease, border-color 0.4s ease;
}

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

.review-card:hover {
    color: #F5F5F5;
    border-left-color: #C45C3E;
    transform: translateX(4px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.review-category {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #C45C3E;
    text-transform: uppercase;
}

.review-rating {
    display: flex;
    gap: 6px;
}

.rating-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid #6B6B6B;
    background: transparent;
    transition: background 0.3s ease;
}

.rating-dot.filled {
    background: #C45C3E;
    border-color: #C45C3E;
}

.review-title {
    font-family: 'Permanent Marker', cursive;
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    font-weight: 400;
    color: #E8E8E8;
    margin-bottom: 16px;
    letter-spacing: 0.01em;
    text-shadow:
        1px 1px 0 #333333,
        2px 2px 0 #2E2E2E,
        3px 3px 0 #1A1A1A,
        4px 4px 0 #000000;
}

.review-body {
    font-family: 'Work Sans', sans-serif;
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    font-weight: 300;
    line-height: 1.8;
    color: #B0B0B0;
    margin-bottom: 24px;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #2E2E2E;
}

.review-author {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: #6B6B6B;
    font-style: italic;
}

.review-date {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: #6B6B6B;
    letter-spacing: 0.05em;
}

/* ============================================
   SECTION DIVIDERS
   ============================================ */

.section-divider {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 10px 0;
    margin-top: -40px;
    margin-bottom: -40px;
}

.divider-text {
    font-size: 0.6rem;
    color: #333333;
    letter-spacing: 0.3em;
}

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

.site-footer {
    position: relative;
    z-index: 2;
    padding: 80px 24px 40px;
    text-align: center;
    background: #0A0A0A;
    margin-top: -40px;
}

.footer-inner {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.5rem;
    color: #333333;
    margin-bottom: 8px;
    text-shadow:
        1px 1px 0 #1A1A1A,
        2px 2px 0 #000000;
}

.footer-copy {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: #6B6B6B;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.footer-line {
    width: 60px;
    height: 1px;
    background: #2E2E2E;
    margin: 0 auto 24px;
}

.footer-small {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    color: #333333;
    letter-spacing: 0.05em;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

[data-scroll-reveal] .review-card {
    opacity: 0;
    transform: translateY(40px);
}

[data-scroll-reveal].revealed .review-card {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 768px) {
    .diagonal-right {
        clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
    }

    .diagonal-left {
        clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%);
    }

    .diagonal-section {
        padding: 80px 0;
        margin-top: -40px;
    }

    .review-card {
        padding: 24px;
    }

    .section-content {
        padding: 24px 16px;
    }
}

@media (max-width: 480px) {
    .diagonal-right {
        clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%);
    }

    .diagonal-left {
        clip-path: polygon(0 0, 100% 2%, 100% 100%, 0 98%);
    }

    .review-card {
        padding: 20px 16px;
    }

    .hero-title {
        text-shadow:
            1px 1px 0 #333333,
            2px 2px 0 #2E2E2E,
            3px 3px 0 #1A1A1A,
            4px 4px 0 #000000,
            5px 5px 0 #000000,
            6px 6px 0 #000000,
            7px 7px 0 #000000,
            8px 8px 0 #000000;
    }
}