* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    
    background: #0D0D0D;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #131316;
    z-index: 1000;
    padding: 0px 0;
    background-color: #131316;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    height: 60px;           /* Set container height */
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 120%;           /* Make logo bigger than container */
    width: auto;
    display: block;
    object-fit: contain;
    transform: scale(1.5);  /* Scale up the logo */
    transform-origin: left center;
      transition: transform 0.3s ease;  
    cursor: pointer;
}
.nav-logo img:hover {
    transform: scale(1.1);  /* Makes it 10% bigger */
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: #9AA4B2;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.nav-menu li a:hover {
    color: #fff;
}

/* t */

.nav-menu li a:hover::after {
    width: 100%;
}

.nav-cart a {
    color: #9AA4B2;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    text-decoration: none;
}

.nav-cart a:hover {
    color: #fff;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive styles */
@media (max-width: 768px) {
    /* CHANGE 1: Navbar height to 56px */
    .navbar {
        height: 56px;
    }

    .nav-container {
        padding: 0 20px;
        height: 56px;
    }

    .nav-logo {
        height: 56px;
    }

    .nav-logo img {
        height: 80%;
        transform: scale(1);
    }

    /* CHANGE 2: Hide cart on mobile */
    .nav-cart {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 56px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 56px);
        background: #000;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        gap: 30px;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    /* CHANGE 3: Show hamburger menu */
    .nav-toggle {
        display: flex;
    }
}

@media (max-width: 480px) {
    .navbar {
        height: 56px;
    }

    .nav-container {
        height: 56px;
    }

    .nav-logo {
        height: 56px;
    }

    .nav-logo img {
        height: 75%;
    }
}
/* Social Community Section */
.social-community-section {
    background: #131316;
    height: 100px;
    padding-bottom: 20px;
    position: relative;
    display: flex;
    align-items: center;
    
}

.social-container {
    width: 100%;
    position: relative;
}

.social-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    white-space: nowrap;
font-family: 'Inter', sans-serif;
}

.social-icons {
    position: absolute;
    left: 50%;
    transform: translateX(515px);  /* Positioned to the right of center */
    display: flex;
    gap: 50px;
}

.social-icons a {
    color: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    transform: scale(1.2);
    opacity: 0.8;
}

.social-icons svg {
    width: 35px;
    height: 35px;
}

@media (max-width: 768px) {
    .social-community-section {
        height: auto;
        padding: 30px 20px;
    }

    .social-text {
        position: static;
        transform: none;
        text-align: center;
        margin-bottom: 20px;
    }

    .social-icons {
        position: static;
        transform: none;
        justify-content: center;
    }

    .social-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .social-icons {
        gap: 30px;
    }

    .social-icons svg {
        width: 30px;
        height: 30px;
    }
}
/* ============================================
   PARALLAX STACKING - DESKTOP ONLY
   ============================================ */

/* Hero Carousel - Fixed on desktop only */
.hero-carousel {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden !important;
    z-index: 1;
    background: #000;
    margin: 0;
    padding: 0;
}

/* Content Wrapper - Stacks on desktop only */
.content-wrapper {
    position: relative;
    z-index: 2;
    margin-top: 100vh;
    background: #000;
}

/* Make sure body has no margin/padding */
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Make sure navbar doesn't have gaps */
.navbar {
    margin: 0;
    padding: 0;
}

/* Hide overflow on html */
html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* ============================================
   MOBILE - NORMAL SCROLL (NO PARALLAX)
   ============================================ */
@media (max-width: 768px) {
  .hero-carousel {
    position: relative !important;
    height: 420px;      /* choose a mobile-friendly height */
    margin-top: 56px;
    overflow: hidden;
  }
  .carousel-container,
  .carousel-slide {
    position: relative;
    height: 100%;
  }
  .carousel-slide video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}


@media (max-width: 480px) {
    .hero-carousel {
        position: relative !important;
        z-index: auto;
        height: 400px;  /* Slightly smaller for small phones */
        margin-top: 56px;
        overflow: hidden;
    }
    
    .carousel-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    .hero-content p {
        font-size: 0.85rem;
    }
    
    .carousel-indicators {
        bottom: 60px;
    }
}