/* BizzieBee Arcade Portfolio - Styles */

:root {
    --primary: #FFB81C;
    --primary-dark: #FFA500;
    --secondary: #000;
    --accent: #22d3ee;
    --text: #f8fafc;
    --text-secondary: #94a3b8;
    --bg-dark: #0f0f1a;
    --bg-card: #1a1a2e;
    --border: rgba(255, 184, 28, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-card) 100%);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
}

.logo-icon {
    font-size: 18px;
    color: var(--primary);
}

.logo span.accent {
    color: var(--accent);
}

.portfolio-badge {
    background: rgba(255, 184, 28, 0.15);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 184, 28, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(34, 211, 238, 0.05) 0%, transparent 50%);
}

.scanlines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.arcade-title {
    font-family: 'Press Start 2P', monospace;
    font-size: clamp(3rem, 8vw, 5.5rem);
    color: var(--primary);
    text-shadow: 0 0 20px rgba(255, 184, 28, 0.5),
                 3px 3px 0px rgba(34, 211, 238, 0.3);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.arcade-subtitle {
    font-size: 1.2rem;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border: 2px solid transparent;
    font-size: 14px;
}

.btn-primary {
    background: var(--primary);
    color: var(--secondary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 184, 28, 0.3);
}

.btn-accent {
    background: var(--accent);
    color: var(--secondary);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.3);
}

/* Sections */
.section {
    padding: 80px 0;
    position: relative;
}

.section-alt {
    background: rgba(26, 26, 46, 0.5);
}

.section-dark {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(26, 26, 46, 0.8) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.badge {
    display: inline-block;
    background: rgba(255, 184, 28, 0.2);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--text);
    margin-bottom: 20px;
}

/* Overview Grid */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.overview-card {
    background: linear-gradient(135deg, rgba(255, 184, 28, 0.05) 0%, rgba(34, 211, 238, 0.05) 100%);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.overview-card h3 {
    color: var(--primary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.overview-card p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.meta {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: normal;
}

.link-primary {
    color: var(--primary);
    font-weight: 600;
}

/* Challenge & Solution */
.challenge-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.challenge h3,
.solution h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
}

.challenge p,
.solution p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-secondary);
}

.feature-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 184, 28, 0.1) 0%, rgba(26, 26, 46, 0.8) 100%);
    border: 1px solid var(--border);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(255, 184, 28, 0.15) 0%, rgba(26, 26, 46, 0.9) 100%);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.tech-item {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.05) 0%, rgba(0, 0, 0, 0.3) 100%);
    border: 1px solid rgba(34, 211, 238, 0.2);
    padding: 30px;
    border-radius: 8px;
}

.tech-item h4 {
    color: var(--accent);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.tech-item p {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 8px;
}

.tech-meta {
    color: var(--text-secondary);
    font-size: 13px;
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.result-card {
    background: linear-gradient(135deg, rgba(255, 184, 28, 0.15) 0%, rgba(26, 26, 46, 0.9) 100%);
    border: 2px solid var(--primary);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
}

.result-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.result-label {
    color: var(--text-secondary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Testimonial */
.testimonial {
    background: linear-gradient(135deg, rgba(255, 184, 28, 0.1) 0%, rgba(34, 211, 238, 0.05) 100%);
    border-left: 4px solid var(--primary);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial p {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.8;
    font-style: italic;
}

.testimonial cite {
    color: var(--text-secondary);
    font-size: 14px;
    font-style: normal;
}

/* CTA Content */
.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--primary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 13px;
}

.footer-bottom a {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .arcade-title {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .challenge-solution {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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