* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #050505;
    color: #fff;
    /* Change 'hidden' to 'auto' or 'initial' to allow scrolling */
    overflow-x: hidden; /* Prevents horizontal shaking */
    overflow-y: auto;   /* Allows vertical scrolling */
    scroll-behavior: smooth;
}

/* --- Navbar Responsive Logic --- */

/* Desktop remains the same as before, but ensure nav-links is visible */
.menu-toggle {
    display: none; /* Hidden on desktop */
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.bar {
    width: 25px;
    height: 2px;
    background-color: #fff;
    transition: 0.3s;
}

/* Tablet & Mobile Styles */
@media (max-width: 900px) {
    .menu-toggle {
        display: flex; /* Show burger icon */
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Initially hidden off-screen */
        height: 100vh;
        width: 70%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.5s ease;
        gap: 30px;
        z-index: 1000;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* When menu is toggled open */
    .nav-links.active {
        right: 0;
    }

    /* Burger Icon Animation to "X" */
    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Floating Navbar */
.navbar {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    max-width: 1200px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 1000;
    transition: all 0.4s ease;
}

.logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 4px;
    font-weight: 1000;
    color: red;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #fff;
}
/* --- Navbar Responsive Logic --- */

/* Desktop remains the same as before, but ensure nav-links is visible */
.menu-toggle {
    display: none; /* Hidden on desktop */
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.bar {
    width: 25px;
    height: 2px;
    background-color: #fff;
    transition: 0.3s;
}

/* Tablet & Mobile Styles */
@media (max-width: 900px) {
    .menu-toggle {
        display: flex; /* Show burger icon */
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Initially hidden off-screen */
        height: 100vh;
        width: 70%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.5s ease;
        gap: 30px;
        z-index: 1000;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* When menu is toggled open */
    .nav-links.active {
        right: 0;
    }

    /* Burger Icon Animation to "X" */
    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}


/* Hero Slider */
/* Change this */
.hero-slider {
    position: relative;
    height: 100vh; /* Keep this as is for the splash look */
    width: 100%;
}

/* Ensure the body of the home page isn't locked */
.home-body { /* If you added a class to the body */
    overflow-y: auto !important;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide.active {
    opacity: 1;
}

.hero-content h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: 10px;
    margin-bottom: 20px;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
}

.hero-content p {
    font-size: 1.2rem;
    letter-spacing: 2px;
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.8s;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Launching Soon Badge */
.launch-badge {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pulse-ring {
    width: 10px;
    height: 10px;
    background: #00f1f1;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(0, 189, 223, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 204, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 255, 204, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 204, 0); }
}


/* MODELS PAGE */

/* Models Page Layout */
.models-page {
    background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.models-container {
    width: 100%;
    max-width: 1100px;
    padding: 20px;
    margin-top: 80px;
}

/* Carousel Styling */
.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 60vh;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.carousel-viewport {
    width: 100%;
    height: 100%;
}

.model-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.model-slide.active {
    opacity: 1;
}

.model-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Glassmorphism Info Overlay */
.model-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    backdrop-filter: blur(5px);
}

.model-info h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff;
}

.model-info p {
    color: rgba(255,255,255,0.8);
    font-weight: 300;
}

/* Navigation Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    padding: 20px;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
    border-radius: 50%;
    margin: 0 15px;
}

.nav-btn:hover {
    background: rgba(255,255,255,0.3);
}

.next { right: 0; }
.prev { left: 0; }

/* Sub-category Navbar */
.model-selector {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.model-selector a {
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-bottom: 8px;
    transition: 0.3s;
}

.active-category {
    color: #fff;
    border-bottom: 2px solid #fff;
}

.disabled {
    color: rgba(255,255,255,0.2);
    cursor: not-allowed;
    pointer-events: none; /* Disables clicking */
}


/* NEEWSFEED PAGE */

/* Newsfeed Page Specifics */
/* Update the .news-page class */
.news-page {
    min-height: 100vh; /* Change from 'height' to 'min-height' */
    overflow-y: auto;   /* Ensure this is auto */
}

/* Update the split section */
.split-section {
    display: flex;
    min-height: 100vh; /* Change from 'height' to 'min-height' */
    align-items: center;
    padding: 100px 10%; /* Added top padding so it doesn't hide under navbar */
    position: relative;
    z-index: 1;
}

/* Background Video Styling */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Darkens video for text readability */
}

/* Split Section Layout */
.split-section {
    display: flex;
    height: 100vh;
    align-items: center;
    padding: 0 10%;
    position: relative;
    z-index: 1;
}

.side {
    flex: 1;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-box h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    letter-spacing: 5px;
    margin: 15px 0;
}

.content-box p {
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 450px;
}

.label {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: #00ffcc; /* Accent color */
}

/* Vertical Divider */
.middle-line {
    width: 1px;
    height: 40%;
    background: rgba(255, 255, 255, 0.2);
}

/* View Specs Button */
.specs-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    background: transparent;
}

.specs-btn:hover {
    background: #fff;
    color: #000;
}

/* Responsive fix for Split Layout */
@media (max-width: 768px) {
    .split-section {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }
    .middle-line {
        width: 50%;
        height: 1px;
        margin: 40px 0;
    }
    .side {
        padding: 0;
    }
}

/* Reach Us */

/* Ensure content stays within 100vh 
.reach-container-fluid {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 5% 20px; /* Space for navbar 
    overflow: hidden;
}

.preorder-compact {
    text-align: center;
    margin-bottom: 2vh;
}

.preorder-compact h1 {
    font-size: 2.5rem;
    letter-spacing: 15px;
    margin-bottom: 10px;
}

.compact-grid {
    display: flex;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    height: 55vh; /* Fixed height to prevent scrolling 
    gap: 30px;
    border: 1px solid rgba(255,255,255,0.1);
}

.form-box, .map-box { flex: 1; display: flex; flex-direction: column; }

#contactForm input, #contactForm textarea {
    padding: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.map-frame {
    flex-grow: 1;
    border-radius: 10px;
    overflow: hidden;
    filter: grayscale(1) invert(0.9);
} */

/* Base Page Styling */
.reach-page {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), 
                url('front.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 20px 20px; /* Space for fixed navbar */
}

.reach-wrapper {
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Pre-order Section */
.preorder-box {
    text-align: center;
}

.preorder-box h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 5vw, 3rem);
    letter-spacing: 5px;
}

.preorder-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 35px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8rem;
    border-radius: 4px;
    transition: 0.3s ease;
}

/* Grid System */
.reach-grid {
    display: flex;
    flex-wrap: wrap; /* Critical for multi-device */
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.grid-item {
    flex: 1 1 400px; /* Grows to fill, but stacks if less than 400px */
}

.grid-item h3 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #00ffcc;
}

/* Form Styles */
#contactForm {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#contactForm input, #contactForm textarea {
    padding: 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 4px;
    outline: none;
}

#submitBtn {
    padding: 12px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
}

/* Map Styling */
.map-box {
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    filter: grayscale(1) invert(0.9) contrast(1.2); /* Sleek dark map */
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Success State */
.btn-success {
    background: #28a745 !important;
    border-color: #28a745 !important;
    color: #fff !important;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .reach-page { padding-top: 100px; }
    .reach-grid { padding: 20px; }
    .map-box { height: 150px; }
}


/* Beyond Page Styling */
.beyond-page {
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), 
                url('lenter\ logo.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* No scrolling needed here */
}

.beyond-main {
    width: 90%;
    max-width: 1100px;
    margin-top: 50px;
}

.beyond-header {
    text-align: center;
    margin-bottom: 60px;
}

.beyond-header h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 10vw, 6rem);
    letter-spacing: 15px;
    margin-bottom: 10px;
}

.beyond-header .tagline {
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #00ffcc;
    font-size: 0.9rem;
}

/* Grid Layout */
.beyond-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.beyond-col h3 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-size: 1rem;
    color: #fff;
}

.beyond-col ul {
    list-style: none;
}

.beyond-col ul li {
    margin-bottom: 12px;
}

.beyond-col a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: 0.3s;
}

.beyond-col a:hover {
    color: #fff;
    padding-left: 8px; /* Subtle movement effect */
}

/* Credits Footer */
.beyond-credits {
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.author {
    color: rgba(255, 255, 255, 0.6);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .beyond-page {
        height: auto;
        padding: 120px 20px 40px 20px;
        overflow-y: auto;
    }
    .beyond-grid {
        flex-direction: column;
        text-align: center;
    }
    .beyond-credits {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}


/* Specs Page Styling */
.specs-page {
    background: #050505;
    color: #fff;
    min-height: 100vh;
    padding-top: 120px;
}

.specs-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 60px 20px;
}

.specs-header {
    text-align: center;
    margin-bottom: 60px;
}

.specs-header h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    letter-spacing: 5px;
}

.accent { color: #00ffcc; }

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.spec-group h3 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-bottom: 1px solid #00ffcc;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #00ffcc;
}

table {
    width: 100%;
    border-collapse: collapse;
}

td {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.95rem;
}

td:last-child {
    text-align: right;
    font-weight: 700;
    color: #fff;
}

td:first-child {
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.specs-action {
    text-align: center;
    margin-top: 60px;
}

.download-link {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}

.download-link:hover {
    color: #fff;
    border-color: #fff;

}

.email {
color: #00ffcc;
font-weight: 300;
}
