/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --orange: #F5A623;
    --orange-dark: #E0911A;
    --orange-light: #FFB84D;
    --black: #0D0D0D;
    --dark: #1A1A1A;
    --darker: #111111;
    --gray: #2A2A2A;
    --gray-light: #888;
    --white: #FFFFFF;
    --speed-gradient: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== SPEED LINES ===== */
.speed-lines {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}
.speed-lines::before,
.speed-lines::after {
    content: '';
    position: absolute;
    background: rgba(245, 166, 35, 0.05);
    transform: skewX(-20deg);
}
.speed-lines::before { width: 200px; height: 200%; top: -50%; left: 15%; }
.speed-lines::after { width: 100px; height: 200%; top: -50%; left: 60%; }

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(245, 166, 35, 0.2);
    transition: all 0.3s ease;
}
nav.scrolled {
    background: rgba(13, 13, 13, 0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 0.6rem; }
.nav-logo img {
    height: 40px; width: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.nav-logo span {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--orange);
}
.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    align-items: center;
}
.nav-links a {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    transition: color 0.3s ease;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--orange); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
    background: var(--speed-gradient) !important;
    color: var(--black) !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 4px;
    font-weight: 600 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4) !important;
    color: var(--black) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    background: none;
    border: none;
}
.hamburger span {
    width: 26px; height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    display: block;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
    position: relative;
    padding: 10rem 2rem 4rem;
    text-align: center;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.25);
}
.page-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(13,13,13,0.5) 0%, rgba(13,13,13,0.8) 60%, var(--black) 100%);
}
.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}
.page-hero-content h1 {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.8rem;
}
.page-hero-content h1 span { color: var(--orange); }
.page-hero-content p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SECTIONS ===== */
section {
    position: relative;
    padding: 5rem 1.5rem;
    overflow: hidden;
}
.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
}
.section-title span { color: var(--orange); }
.section-divider {
    width: 80px; height: 3px;
    background: var(--speed-gradient);
    margin: 1.2rem auto 0;
    border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.9rem 2.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-primary {
    background: var(--speed-gradient);
    color: var(--black);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.4);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-3px);
}

/* ===== CHECKERED DIVIDER ===== */
.checkered-divider {
    width: 100%;
    height: 16px;
    background: repeating-conic-gradient(var(--orange) 0% 25%, transparent 0% 50%) 0 0 / 16px 16px;
    opacity: 0.12;
}

/* ===== CARDS ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}
.card {
    background: var(--dark);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(245, 166, 35, 0.12);
}
.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.card:hover .card-image img { transform: scale(1.08); }
.card-badge {
    position: absolute;
    top: 0.8rem; left: 0.8rem;
    background: var(--speed-gradient);
    color: var(--black);
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.7rem;
    border-radius: 4px;
}
.card-body { padding: 1.5rem; }
.card-body h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.card-body p {
    color: var(--gray-light);
    font-size: 0.92rem;
    line-height: 1.65;
}
.tag-row {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}
.tag {
    background: rgba(245, 166, 35, 0.1);
    color: var(--orange);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    border: 1px solid rgba(245, 166, 35, 0.2);
}

/* ===== PRICING CARDS ===== */
.price-card {
    background: var(--dark);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.price-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--speed-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.price-card:hover::before { transform: scaleX(1); }
.price-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 166, 35, 0.2);
}
.price-card.featured {
    border-color: rgba(245, 166, 35, 0.3);
}
.price-card.featured::before { transform: scaleX(1); }
.price-icon {
    width: 50px; height: 50px;
    background: rgba(245, 166, 35, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
.price-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}
.price-card p {
    color: var(--gray-light);
    font-size: 0.9rem;
    line-height: 1.65;
}
.price-amount {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--orange);
    margin: 0.8rem 0 0.2rem;
}
.price-note {
    font-size: 0.78rem !important;
    color: rgba(255,255,255,0.4) !important;
    font-style: italic;
}
.price-list {
    list-style: none;
    margin-top: 0.8rem;
}
.price-list li {
    color: var(--gray-light);
    font-size: 0.88rem;
    padding: 0.25rem 0 0.25rem 1.2rem;
    position: relative;
}
.price-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 0.65rem;
    width: 6px; height: 6px;
    background: var(--orange);
    border-radius: 50%;
}

/* ===== HOURS BAR ===== */
.hours-bar {
    background: var(--gray);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    border: 1px solid rgba(245, 166, 35, 0.15);
}
.hours-item { text-align: center; }
.hours-day {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.2rem;
}
.hours-time {
    font-size: 1.1rem;
    font-weight: 500;
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
    aspect-ratio: 4/3;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(245, 166, 35, 0);
    transition: background 0.3s ease;
}
.gallery-item:hover::after { background: rgba(245, 166, 35, 0.12); }
.gallery-item.wide { grid-column: span 2; }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.lightbox.active { display: flex; }
.lightbox img {
    max-width: 92vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}
.lightbox-close {
    position: absolute;
    top: 1rem; right: 1.5rem;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    z-index: 2001;
    background: none;
    border: none;
}
.lightbox-close:hover { color: var(--orange); }

/* ===== ABOUT GRID ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.about-image {
    border-radius: 8px;
    overflow: hidden;
}
.about-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}
.about-text h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--orange);
}
.about-text p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 1rem;
    line-height: 1.75;
}
.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}
.stat-item {
    text-align: center;
    padding: 1rem;
    background: var(--gray);
    border-radius: 8px;
    border: 1px solid rgba(245, 166, 35, 0.15);
}
.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--orange);
}
.stat-label {
    font-size: 0.78rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.contact-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: var(--orange);
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.3rem;
}
.contact-icon {
    width: 42px; height: 42px;
    min-width: 42px;
    background: rgba(245, 166, 35, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-icon svg {
    width: 20px; height: 20px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.contact-item-text h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
    text-transform: none;
    letter-spacing: 0;
}
.contact-item-text p {
    color: var(--gray-light);
    font-size: 0.88rem;
}
.contact-item-text a {
    color: var(--orange);
    transition: opacity 0.3s;
}
.contact-item-text a:hover { opacity: 0.8; }
.contact-map {
    background: var(--dark);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    min-height: 320px;
}
.contact-map iframe {
    width: 100%; height: 100%;
    min-height: 320px;
    border: none;
    filter: grayscale(0.8) brightness(0.7) contrast(1.2);
    transition: filter 0.5s ease;
}
.contact-map:hover iframe {
    filter: grayscale(0) brightness(0.9) contrast(1);
}
.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}
.social-link {
    width: 46px; height: 46px;
    background: var(--gray);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.social-link:hover {
    background: var(--orange);
    transform: translateY(-3px);
}
.social-link svg { width: 22px; height: 22px; fill: var(--white); }
.social-link:hover svg { fill: var(--black); }

/* ===== SPONSORS ===== */
.sponsors-image {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}
.sponsors-image img { width: 100%; height: auto; }
.sponsors-text {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--gray-light);
    font-size: 0.95rem;
}
.sponsor-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.sponsor-name {
    font-family: 'Oswald', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.4rem 0.8rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    transition: all 0.3s;
}
.sponsor-name:hover {
    color: var(--orange);
    border-color: rgba(245, 166, 35, 0.3);
}

/* ===== FOOTER ===== */
footer {
    background: var(--darker);
    padding: 2.5rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: auto;
}
.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-logo { display: flex; align-items: center; gap: 0.5rem; }
.footer-logo img {
    height: 30px; width: 30px;
    border-radius: 50%;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.3s;
}
.footer-logo:hover img { opacity: 1; }
.footer-text {
    color: rgba(255,255,255,0.3);
    font-size: 0.82rem;
}
.footer-text a {
    color: var(--orange);
    opacity: 0.7;
    transition: opacity 0.3s;
}
.footer-text a:hover { opacity: 1; }

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.wide { grid-column: span 1; }
}

@media (max-width: 768px) {
    section { padding: 3.5rem 1.2rem; }
    .page-hero { padding: 8rem 1.2rem 3rem; }

    .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(13, 13, 13, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.8rem;
        z-index: 999;
    }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 1.2rem; }
    .hamburger { display: flex; }

    .card-grid { grid-template-columns: 1fr; }
    .stat-row { gap: 0.6rem; }
    .stat-number { font-size: 1.4rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .hours-bar { gap: 2rem; padding: 1.2rem; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .btn { width: 100%; justify-content: center; }
    .stat-row { grid-template-columns: 1fr 1fr 1fr; }
    .footer-inner { flex-direction: column; text-align: center; }
}
