/* ppuzzl.bid - Pop Art Neon Electric Theme */
/* Colors: #1a1a1a, #000000, #ffffff, #66ff00, #00ffff, #ff0066, #ff6600, #ffff00 */
/* Fonts: Libre Baskerville (display), Barlow (body), Inter (UI) */

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

:root {
    --black: #000000;
    --charcoal: #1a1a1a;
    --white: #ffffff;
    --yellow: #ffff00;
    --pink: #ff0066;
    --cyan: #00ffff;
    --orange: #ff6600;
    --green: #66ff00;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    background-color: var(--charcoal);
    color: var(--white);
    overflow-x: hidden;
    position: relative;
}

/* Ben-Day Dot Overlay */
.benday-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.03;
    background-image: radial-gradient(circle, var(--white) 1px, transparent 1px);
    background-size: 8px 8px;
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    background: var(--black);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-block {
    display: flex;
    align-items: baseline;
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 32px;
    color: var(--white);
    letter-spacing: -1px;
    text-transform: uppercase;
}

.logo-dot {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 32px;
    color: var(--yellow);
    letter-spacing: -1px;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 2px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--pink);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--yellow);
}

.nav-link:hover::after {
    width: 100%;
}

.header-rule {
    height: 4px;
    background: linear-gradient(90deg, var(--pink), var(--yellow), var(--cyan), var(--green), var(--orange));
}

/* ========== SECTION RULES ========== */
.section-rule {
    height: 4px;
    background: linear-gradient(90deg, var(--yellow), var(--pink), var(--cyan));
    margin-top: 60px;
}

/* ========== HERO ========== */
.hero {
    padding: 140px 40px 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--black);
    position: relative;
}

.hero-content {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    gap: 60px;
}

.hero-left {
    flex: 0 0 60%;
}

.hero-right {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-headline {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.headline-line {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(48px, 8vw, 120px);
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1;
}

.line-cyan {
    color: var(--cyan);
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5), 0 0 40px rgba(0, 255, 255, 0.3);
}

.line-pink {
    color: var(--pink);
    text-shadow: 0 0 20px rgba(255, 0, 102, 0.5), 0 0 40px rgba(255, 0, 102, 0.3);
}

.line-yellow {
    color: var(--yellow);
    text-shadow: 0 0 20px rgba(255, 255, 0, 0.5), 0 0 40px rgba(255, 255, 0, 0.3);
}

.hero-tagline {
    font-family: 'Libre Baskerville', serif;
    font-size: 20px;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 40px;
    max-width: 500px;
    font-style: italic;
}

.cta-button {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--black);
    background: var(--yellow);
    padding: 18px 48px;
    border: 4px solid var(--black);
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    box-shadow: 6px 6px 0 var(--pink);
}

.cta-button:hover {
    background: var(--pink);
    color: var(--white);
    box-shadow: 6px 6px 0 var(--yellow);
    transform: translate(-2px, -2px);
}

/* Pop Art Frame */
.pop-art-frame {
    position: relative;
    width: 300px;
    height: 300px;
}

.halftone-circle {
    position: absolute;
    border-radius: 50%;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 20px;
    left: 50px;
    background: radial-gradient(circle, var(--pink) 30%, transparent 31%);
    background-size: 12px 12px;
    opacity: 0.8;
}

.circle-2 {
    width: 160px;
    height: 160px;
    top: 80px;
    left: 10px;
    background: radial-gradient(circle, var(--cyan) 30%, transparent 31%);
    background-size: 10px 10px;
    opacity: 0.6;
}

.circle-3 {
    width: 140px;
    height: 140px;
    top: 60px;
    left: 120px;
    background: radial-gradient(circle, var(--yellow) 30%, transparent 31%);
    background-size: 10px 10px;
    opacity: 0.6;
}

.comic-burst {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    filter: drop-shadow(3px 3px 0 rgba(0,0,0,0.3));
    animation: burstPulse 2s ease-in-out infinite;
}

@keyframes burstPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.08); }
}

/* ========== F-PATTERN LAYOUT ========== */
.f-layout {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.f-primary {
    flex: 0 0 60%;
}

.f-secondary {
    flex: 0 0 35%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========== SECTION TITLES ========== */
.section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(36px, 5vw, 64px);
    text-transform: uppercase;
    letter-spacing: -1px;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.1;
}

.title-accent {
    color: var(--yellow);
    text-shadow: 0 0 15px rgba(255, 255, 0, 0.4);
}

.center-title {
    text-align: center;
}

/* ========== ABOUT SECTION ========== */
.about-section {
    padding: 100px 40px 40px;
    background: var(--charcoal);
}

.body-text {
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.center-text {
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Vintage Photo Block */
.vintage-photo-block {
    width: 100%;
}

.photo-frame {
    position: relative;
    width: 240px;
    height: 240px;
    margin: 0 auto;
    border: 4px solid var(--white);
    overflow: hidden;
    background: var(--charcoal);
}

.photo-halftone {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, var(--white) 25%, transparent 26%);
    background-size: 6px 6px;
    opacity: 0.15;
}

.photo-color-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--pink), var(--cyan));
    mix-blend-mode: multiply;
    opacity: 0.6;
}

.geometric-ornament {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    animation: ornamentSpin 20s linear infinite;
}

@keyframes ornamentSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ========== GALLERY SECTION ========== */
.gallery-section {
    padding: 100px 40px 40px;
    background: var(--black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 40px auto 0;
}

.gallery-card {
    position: relative;
    aspect-ratio: 1;
    border: 4px solid var(--white);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 var(--yellow);
}

.card-dots {
    position: absolute;
    inset: 0;
    background-size: 8px 8px;
    opacity: 0.4;
}

.item-1 .card-dots { background: radial-gradient(circle, var(--pink) 30%, transparent 31%); background-size: 8px 8px; }
.item-2 .card-dots { background: radial-gradient(circle, var(--cyan) 30%, transparent 31%); background-size: 8px 8px; }
.item-3 .card-dots { background: radial-gradient(circle, var(--yellow) 30%, transparent 31%); background-size: 8px 8px; }
.item-4 .card-dots { background: radial-gradient(circle, var(--green) 30%, transparent 31%); background-size: 8px 8px; }
.item-5 .card-dots { background: radial-gradient(circle, var(--orange) 30%, transparent 31%); background-size: 8px 8px; }
.item-6 .card-dots { background: radial-gradient(circle, var(--pink) 30%, transparent 31%); background-size: 8px 8px; }

.item-1 .gallery-card { background: linear-gradient(135deg, rgba(255,0,102,0.3), var(--black)); }
.item-2 .gallery-card { background: linear-gradient(135deg, rgba(0,255,255,0.3), var(--black)); }
.item-3 .gallery-card { background: linear-gradient(135deg, rgba(255,255,0,0.3), var(--black)); }
.item-4 .gallery-card { background: linear-gradient(135deg, rgba(102,255,0,0.3), var(--black)); }
.item-5 .gallery-card { background: linear-gradient(135deg, rgba(255,102,0,0.3), var(--black)); }
.item-6 .gallery-card { background: linear-gradient(135deg, rgba(0,255,255,0.3), var(--charcoal)); }

.card-content {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 2;
}

.card-number {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 60px;
    color: var(--white);
    opacity: 0.15;
    position: absolute;
    top: -50px;
    left: -4px;
    line-height: 1;
}

.card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 20px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 0 var(--black);
}

/* ========== FEATURES SECTION ========== */
.features-section {
    padding: 100px 40px 40px;
    background: var(--charcoal);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.feature-item:hover {
    border-color: var(--yellow);
    background: rgba(255, 255, 0, 0.03);
}

.feature-icon {
    flex-shrink: 0;
}

.feature-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 8px;
}

.feature-desc {
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* Stats Block */
.stats-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 48px;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.6);
}

/* Neon Glow Classes */
.neon-glow-yellow {
    color: var(--yellow);
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.6), 0 0 20px rgba(255, 255, 0, 0.4), 0 0 40px rgba(255, 255, 0, 0.2);
}

.neon-glow-pink {
    color: var(--pink);
    text-shadow: 0 0 10px rgba(255, 0, 102, 0.6), 0 0 20px rgba(255, 0, 102, 0.4), 0 0 40px rgba(255, 0, 102, 0.2);
}

.neon-glow-cyan {
    color: var(--cyan);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.6), 0 0 20px rgba(0, 255, 255, 0.4), 0 0 40px rgba(0, 255, 255, 0.2);
}

.neon-glow-green {
    color: var(--green);
    text-shadow: 0 0 10px rgba(102, 255, 0, 0.6), 0 0 20px rgba(102, 255, 0, 0.4), 0 0 40px rgba(102, 255, 0, 0.2);
}

/* ========== MARQUEE BAND ========== */
.marquee-band {
    background: var(--yellow);
    padding: 16px 0;
    overflow: hidden;
    border-top: 4px solid var(--black);
    border-bottom: 4px solid var(--black);
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marqueeScroll 20s linear infinite;
}

.marquee-text {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 4px;
    padding-right: 20px;
}

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

/* ========== CONTACT SECTION ========== */
.contact-section {
    padding: 100px 40px 40px;
    background: var(--black);
}

.contact-inner {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    margin-top: 40px;
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.form-input,
.form-textarea {
    width: 100%;
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--white);
    background: var(--charcoal);
    border: 3px solid rgba(255, 255, 255, 0.2);
    padding: 16px 20px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
    font-weight: 600;
    letter-spacing: 2px;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    margin-bottom: 20px;
}

.submit-btn {
    width: 100%;
    font-size: 18px;
    border: 4px solid var(--black);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--charcoal);
    padding: 60px 40px;
    border-top: 4px solid var(--pink);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: baseline;
}

.footer-logo .logo-text {
    font-size: 24px;
}

.footer-logo .logo-dot {
    font-size: 24px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-link {
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--yellow);
}

.footer-copy p {
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-left {
        flex: 1;
    }

    .hero-right {
        flex: 1;
    }

    .hero-tagline {
        margin-left: auto;
        margin-right: auto;
    }

    .f-layout {
        flex-direction: column;
    }

    .f-primary,
    .f-secondary {
        flex: 1;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        flex-direction: column;
    }

    .nav {
        gap: 16px;
    }

    .nav-link {
        font-size: 12px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .stats-block {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .header-inner {
        padding: 12px 20px;
    }

    .hero {
        padding: 120px 20px 40px;
    }

    .about-section,
    .gallery-section,
    .features-section,
    .contact-section {
        padding: 80px 20px 40px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .headline-line {
        font-size: 48px;
    }

    .section-title {
        font-size: 32px;
    }

    .pop-art-frame {
        width: 200px;
        height: 200px;
    }

    .comic-burst {
        width: 140px;
        height: 140px;
    }

    .nav {
        gap: 10px;
    }

    .nav-link {
        font-size: 11px;
        letter-spacing: 1px;
    }
}
