:root {
    --bg-dark: #0b0f17;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.08);
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --accent-blue: #3b82f6;
    --accent-gold: #f59e0b;
    --accent-red: #ef4444;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #222b3c;
    border-radius: 4px;
}

/* --- NAVIGATION --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 15, 23, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 5%;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.logo-image {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-main);
}

.nav-cta {
    background: #fff;
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255,255,255,0.15);
}

.nav-cta-group {
    display: flex;
    gap: 1rem;
}

/* --- HERO SECTION --- */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 5%;
    /* Replace URL with a stunning dynamic van life background photo/video */
    background: linear-gradient(to right, rgba(11,15,23,0.95) 40%, rgba(11,15,23,0.4)), 
                url('images/van1.jpg') center/cover no-repeat;
}

.hero-content {
    max-width: 650px;
    z-index: 2;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #9ca3af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), #1e40af);
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    border: 1px solid var(--border-color);
    color: var(--text-main);
    background: var(--bg-card);
    padding: 0.9rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.08);
}

/* --- STATS OVERLAY --- */
.hero-stats {
    position: absolute;
    bottom: 4rem;
    right: 5%;
    display: flex;
    gap: 3rem;
    background: rgba(11, 15, 23, 0.6);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 2px;
}

/* --- SECTIONS GENERAL --- */
section {
    padding: 8rem 5%;
    border-bottom: 1px solid var(--border-color);
}

.section-header {
    max-width: 600px;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-top: 0.5rem;
}

/* --- THE RIG / TRACKER --- */
.grid-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.rig-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.rig-image-wrapper img {
    width: 100%;
    display: block;
    filter: grayscale(20%);
    transition: transform 0.5s ease;
}

.rig-image-wrapper:hover img {
    transform: scale(1.03);
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.spec-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 16px;
}

.spec-card i {
    font-size: 1.5rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.spec-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.spec-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- ADVENTURES GRID (YOUTUBE) --- */
.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.episode-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.episode-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.thumbnail-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #1a2333;
}

.thumbnail-container img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.4);
    transition: transform 0.2s ease;
}

.episode-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

.episode-info {
    padding: 1.5rem;
}

.episode-meta {
    font-size: 0.8rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.episode-info h3 {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

/* --- FOOTER / COMMUNITY --- */
footer {
    background: #06080d;
    padding: 5rem 5% 3rem 5%;
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.footer-text {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.social-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-circle:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}

.social-circle.yt:hover {
    background: var(--accent-red);
    color: #fff;
    border-color: var(--accent-red);
}

.copyright {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 968px) {
    .grid-two-col {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-stats {
        position: static;
        margin-top: 3rem;
        display: inline-flex;
    }
#hero {
    height: auto;
    padding-top: 8rem;
    padding-bottom: 4rem;
    background: linear-gradient(to bottom, rgba(11,15,23,0.95) 60%, rgba(11,15,23,1)), 
                url('images/van1.jpg') center/cover no-repeat;
}
    .hero-content h1 {
        font-size: 3rem;
    }
    .nav-links, .nav-cta {
        display: none; /* Add a burger menu code snippet here if preferred */
    }
}