/* ==========================================================================
   Chico Fab Lab — Bold Industrial
   Shared stylesheet for all pages
   ========================================================================== */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
}

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

/* ==========================================================================
   Navigation
   ========================================================================== */

.site-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.site-logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #f08017;
}

.nav-cta {
    background: linear-gradient(135deg, #f08017, #ff9a3c);
    color: #000 !important;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(240, 128, 23, 0.5);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    background: none;
    border: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.mobile-menu.active { display: flex; }

.mobile-menu a {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mobile-menu a:hover { color: #f08017; }
.mobile-menu .nav-cta { margin-top: 20px; }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #f08017, #ff9a3c);
    color: #000;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(240, 128, 23, 0.4);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    border-color: #f08017;
    color: #f08017;
}

.btn-small {
    display: inline-block;
    background: linear-gradient(135deg, #f08017, #ff9a3c);
    color: #000;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(240, 128, 23, 0.4);
}

/* ==========================================================================
   Sections
   ========================================================================== */

.section {
    padding: 120px 60px;
}

.section-dark { background: #0f0f0f; }

.section-gradient {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
}

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

.section-header h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.section-header p {
    color: rgba(255,255,255,0.5);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Page hero (interior pages) */
.page-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0a 100%);
    padding: 180px 60px 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    max-width: 650px;
    margin: 0 auto;
}

/* ==========================================================================
   Home: Hero
   ========================================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: 120px 60px 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(240, 128, 23, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 10;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content h1 span {
    background: linear-gradient(135deg, #f08017, #ff9a3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content > p {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 450px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat { text-align: center; }

.hero-stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #f08017;
}

.hero-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Featured news card in hero */
.hero-news {
    display: block;
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(240, 128, 23, 0.2);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.hero-news:hover {
    border-color: rgba(240, 128, 23, 0.5);
    box-shadow: 0 30px 80px rgba(240, 128, 23, 0.15);
    transform: translateY(-5px);
}

.hero-news-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    filter: saturate(0.9);
}

.hero-news-content { padding: 35px; }

.hero-news-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(240, 128, 23, 0.2);
    color: #f08017;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 18px;
}

.hero-news-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #f08017;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-news h3 {
    font-size: 28px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.hero-news p {
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.hero-news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-news-meta {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* ==========================================================================
   Zone cards
   ========================================================================== */

.zones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.zone-card {
    display: block;
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(255,255,255,0.05);
}

.zone-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(240, 128, 23, 0.2);
    border-color: rgba(240, 128, 23, 0.3);
}

.zone-card > img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: grayscale(30%);
    transition: all 0.4s ease;
}

.zone-card:hover > img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.zone-card-content { padding: 25px; }

.zone-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #f08017;
}

.zone-card p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 1.6;
}

/* Zones & Tools page: detailed cards */
.zone-leader {
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
    font-size: 14px;
}

.zone-note {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    font-style: italic;
    margin-bottom: 10px;
}

.zone-note a { color: #f08017; }

.zone-sbu {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.sbu-time {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 15px;
}

.sbu-time.coming-soon {
    color: #f08017;
    font-weight: 600;
}

.zone-sbu .btn-small + .btn-small { margin-left: 8px; }

/* ==========================================================================
   Pricing
   ========================================================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.price-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.price-card.featured {
    background: linear-gradient(145deg, rgba(240, 128, 23, 0.15), rgba(240, 128, 23, 0.05));
    border-color: #f08017;
    transform: scale(1.05);
}

.price-card:hover {
    border-color: #f08017;
    transform: translateY(-10px);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.price-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 15px;
}

.price-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 5px;
}

.price-card.featured .price-amount { color: #f08017; }

.price-period {
    color: rgba(255,255,255,0.4);
    margin-bottom: 30px;
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    flex: 1;
}

.price-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.price-features li::before {
    content: '\2713';
    color: #f08017;
    margin-right: 10px;
    font-weight: bold;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

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

.testimonial-card {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 20px;
    padding: 40px;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 120px;
    font-family: Georgia, serif;
    color: rgba(240, 128, 23, 0.2);
    line-height: 1;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f08017, #ff9a3c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #000;
    font-size: 16px;
    flex-shrink: 0;
}

.testimonial-author-name { font-weight: 600; }

.testimonial-author-title {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-item summary {
    padding: 22px 28px;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 17px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    color: #f08017;
    font-size: 24px;
    font-weight: 400;
}

.faq-item[open] summary::after { content: '\2212'; }

.faq-item p {
    padding: 0 28px 22px;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.7;
}

/* ==========================================================================
   CTA section
   ========================================================================== */

.cta-section {
    padding: 150px 60px;
    text-align: center;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(240, 128, 23, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: 64px;
    margin-bottom: 30px;
    position: relative;
}

.cta-section p {
    font-size: 20px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
    position: relative;
}

.cta-section .btn-primary { position: relative; }

/* ==========================================================================
   Info / reservation blocks (Zones page, Volunteer, etc.)
   ========================================================================== */

.info-panel {
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.05);
    max-width: 900px;
    margin: 0 auto;
}

.info-panel h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #f08017;
}

.info-panel ol,
.info-panel ul {
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    padding-left: 20px;
}

.info-panel li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.info-panel p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
    line-height: 1.7;
}

.button-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Big reservation buttons */
.reservation-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.reservation-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 2px solid rgba(240, 128, 23, 0.3);
    border-radius: 24px;
    transition: all 0.4s ease;
}

.reservation-btn:hover {
    transform: translateY(-10px);
    border-color: #f08017;
    box-shadow: 0 20px 50px rgba(240, 128, 23, 0.3);
    background: linear-gradient(145deg, rgba(240, 128, 23, 0.1), rgba(240, 128, 23, 0.05));
}

.reservation-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.reservation-label {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

/* ==========================================================================
   Two-column content (Volunteer, Metal Shop)
   ========================================================================== */

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.split img {
    border-radius: 20px;
    width: 100%;
}

.split h2 {
    font-size: 40px;
    margin-bottom: 25px;
}

.split p {
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 20px;
}

.split ul {
    color: rgba(255,255,255,0.75);
    padding-left: 20px;
    margin-bottom: 25px;
}

.split li { margin-bottom: 8px; }

/* ==========================================================================
   People cards (Personnel)
   ========================================================================== */

.people-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.person-card {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    transition: all 0.4s ease;
}

.person-card:hover {
    transform: translateY(-8px);
    border-color: rgba(240, 128, 23, 0.3);
    box-shadow: 0 20px 50px rgba(240, 128, 23, 0.15);
}

.person-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.person-card-content { padding: 25px; }

.person-card h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.person-role {
    color: #f08017;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.person-bio {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.person-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.person-links a {
    color: #f08017;
    font-size: 14px;
    font-weight: 600;
}

.person-links a:hover { color: #ff9a3c; }

/* ==========================================================================
   Contact
   ========================================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 40px;
}

.contact-card h3 {
    color: #f08017;
    font-size: 22px;
    margin-bottom: 20px;
}

.contact-card p {
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 10px;
}

.contact-card a { color: #f08017; }
.contact-card a:hover { color: #ff9a3c; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    padding: 60px;
    background: #050505;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

.footer-links a:hover { color: #f08017; }

.site-footer p { color: rgba(255,255,255,0.3); }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1200px) {
    .hero-content h1 { font-size: 56px; }
    .hero-container { gap: 50px; }
}

@media (max-width: 1000px) {
    .site-nav { padding: 15px 20px; }
    .nav-links, .site-nav > .nav-cta { display: none; }
    .hamburger { display: flex; }

    .hero { padding: 100px 30px 60px; }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .hero-content h1 { font-size: 48px; }
    .hero-stats { justify-content: center; }

    .section { padding: 80px 30px; }
    .page-hero { padding: 140px 30px 60px; }
    .page-hero h1 { font-size: 40px; }

    .zones-grid, .pricing-grid, .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .price-card.featured { transform: none; }
    .price-card.featured:hover { transform: translateY(-10px); }

    .split, .contact-grid { grid-template-columns: 1fr; }

    .section-header h2 { font-size: 36px; }
    .cta-section { padding: 100px 30px; }
    .cta-section h2 { font-size: 40px; }
}

@media (max-width: 600px) {
    .hero-content h1 { font-size: 36px; }
    .hero-cta { flex-direction: column; }
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .hero-news-image { height: 200px; }
    .price-amount { font-size: 48px; }
}
