
html {
    scroll-behavior: smooth;
}
    body {
        font-family: "owners", sans-serif;
        font-weight: 400;
        font-style: normal;
        letter-spacing:0.8px;
        color: #ffffff;
        margin: 0;
        display: block;
        /* justify-content: center;
        align-items: center; */
        height: 100vh;
        background-color: #0E0E0E;
    }

    .h1 {
        font-family: "owners-narrow", sans-serif;
        font-weight: 700;
        font-style: normal;
        }

    .h2 {
        font-family: "owners-narrow", sans-serif;
        font-weight: 700;
        font-style: normal;
        font-size: clamp(1.3rem, 4vw, 3.5rem);
        line-height: 1;
        text-align: center;
        }
    .h3 {
        font-family: "owners", sans-serif;
        font-weight: 400;
        font-style: normal;
    }

    .p {
        font-family: "owners", sans-serif;
        font-weight: 400;
        font-style: normal;
        }
    
        

    .overlay-text .h2 {
        max-width: 90%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .gradient-background-1 {
        background-image: linear-gradient(#0E0E0E, #C3C3C3);
    }

    .gradient-background-2 {
        background-image: linear-gradient(#C3C3C3, #0E0E0E);
    }

    .gradient-background-3 {
        background-image: linear-gradient(#000416, #425AFF);  
    }

    .gradient-background-4 {
        background-image: linear-gradient(#000000, #9461FF, #FFAFFF);
    }

    .gradient-background-5 {
        background-image: linear-gradient(#00150E, #00A64B);
    }

    .content-container {
        display: flex;
        flex-direction: column;
        position: relative;
    }
    
    .grid-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        width: 100vw;
        height: 92.5vh;
        /* margin-top: 97vh; */
        position: relative;
    }
    
    .grid-item {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    
    .grid-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .grid-item video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }
    
    .overlay-text {
        position: absolute;
        color: white;
        padding: 2% 5%;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    
    }

    .grid-button {
        position: absolute;
        padding: 3% 7%;
        background-color: rgba(255, 255, 255, 0.8);
        border: 6px solid #00FF71;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        transition: opacity 0.3s ease;
        cursor: pointer;
        border-radius: 100px;
    }

    .grid-button .h2 {
        color: #00FF71;
    }

    .grid-button a {
        text-decoration: none;
    }

    .grid-button:hover {
        background: #00FF71;
    }

    .grid-button .h2:hover {
        color: black;
    }

    .grid-container::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 6px;
        height: 100%;
        background-color: #00FF71;
        transform: translate(-50%, -50%);
        z-index: 1;
    }
    
    .grid-container::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 6px;
        background-color: #00FF71;
        transform: translateY(-50%);
        z-index: 1;
    }


    /* TRAILER SECTION  */
    .video-section {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        background-color: #e0e0e0;
        text-align: center;
        margin-top: 0;
    }

    .video-container {
        position: relative;
        width: 80vw;
        max-width: 1280px;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        /* border-radius: 150px; */
    
    }
    
    .video-container iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
        border: none;
        border-radius: 150px;
        background-color:black;
    }

    /* ABOUT SECTION  */
    .about-section {
        background: linear-gradient(to bottom, #1a1a1a, #444);
        color: white;
        overflow:hidden;
    }

    .about-section .h2 {
        text-align: left;
        padding: 1.5%;
        margin-bottom: 10px;
        margin-top: 0px;
    }
    
    .content-wrapper {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        border-top: 6px solid #4460FF;
        border-bottom: 6px solid #4460FF;
        background-image: url('assets/grid.svg'); 
        background-size: contain; 
        background-position: center;
        background-repeat: repeat;
        /* gap: 5%; Adds spacing between the two sections */
    }

    .image-content {
        width: 100%; 
        display: flex;
        justify-content: center;
        align-items: center;
        background-image: url('assets/grid.svg'); 
        background-size: cover; 
        background-position: center;
        background-repeat: no-repeat;
        padding: 10% 0;
        border-top: 6px solid #4460FF;
    }

    .image-content img {
        width: 40%; 
        max-width: 500px;
        border-radius: 50px;
    }
    
    .text-content {
        width: 100%; 
    }

    .text-content p {
        width: 80%;
        margin:auto;
        font-size: 1.5rem;
        line-height:1.3;
    }

    .content-wrapper .text-content p {
        padding:5%;
        max-width: 800px;
    }

    /* TUTORIALS SECTION  */

    .tutorials-section {
        position: relative;
        width: 100vw;
    }

    .tutorials-content {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1; 
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background-image: url('assets/grid.svg'); 
        background-size: contain; 
        background-position: center;
        background-repeat: repeat;
        row-gap: 30px;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .tutorials-section h2 {
        position: relative;            
        z-index: 2;
        color: white;
        text-align: center;
        margin: 0;
      }

      .tutorials-flex {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 20px;
        justify-content: center;
        width: 100%;
        max-width: 1440px;
        flex-direction: row;
    }
    
    
    .tutorial-card {
        border-radius: 10px;
        text-decoration: none;
        color: white;
        transition: transform 0.2s, background 0.3s;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: calc(33.333% - 20px); /* 3 columns on desktop */
        max-width: 300px;
    }
    
    .tutorial-card img {
        width: 100%;
        border-radius: 5px;
    }
    
    .tutorial-card h3 {
        font-size: 1.2rem;
        margin-top: 5px;
        margin-bottom: 0px;
    }
    
    .tutorial-card p {
        font-size: 0.9rem;
        margin-top: 0px;
    }

    .tutorial-card h3,
    .tutorial-card p {
    transition: text-decoration 0.3s ease-in-out;
}

.tutorial-card:hover h3,
.tutorial-card:hover p {
    text-decoration: underline;
}
    
    
    /* DISCORD SIGN UP SECTION  */
    .discord-banner {
        width: 100vw;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1vh 0; 
    }
    
    .video-block {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .video-block video {
        width: 100%;
        height: auto; 
    }


        
    /* PROJECTS SECTION  */
    .projects-section {
        position: relative;
        width:100vw;
        /* height:100vh;  */
    }

    .projects-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        position: relative;
        background-image: url('assets/grid.svg'); 
        background-size: contain; 
        background-position: center;
        background-repeat: repeat;
        row-gap: 10px;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .projects-section h2 {
        position: relative;            
        z-index: 2;
        color: white;
        text-align: center;
        margin: auto;
        margin-bottom: 20px;
      }

    .swiper-container {
        width: 100vw;
        overflow: hidden;
    }

    .swiper-slide {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: transform 0.3s;
    }

    .swiper-slide img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    
    .swiper-slide h2 {
        margin-top: 5px;
        margin-bottom: 0px;
    }

    
    .swiper-slide p {
        font-size: 0.9rem;
        margin-top: 0px;
    }

    /* Hide default Swiper arrows */
    .swiper-button-prev::after,
    .swiper-button-next::after {
        display: none !important;
    }

    /* Swiper Navigation Button Base */
    .swiper-button-prev,
    .swiper-button-next {
        position: absolute;
        top: 50%;
        width: 70px;
        height: 70px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        cursor: pointer;
        transform: translateY(-50%);
    }


    /* Set External SVG URL for Navigation Buttons */
.swiper-button-prev {
    left: -10px;
    background-image: url('assets/left-arrow.svg'); /* Replace with your actual SVG URL */
}

.swiper-button-next {
    right: -10px;
    background-image: url('assets/right-arrow.svg'); /* Replace with your actual SVG URL */
}

.project-description{
    width:100%;
    max-width:800px;
    margin:auto;
}

.project-description h2{
    margin-bottom:10px;
    font-size:2rem;
}


.project-description p{
    width:100%;
    margin:auto;
    text-align: left;
}

.project-description p a{
    text-decoration:none;
    color: #4460FF;
}



/* DOWNLOAD PAGE*/
.download-section {
    height: 92.5vh;
    margin-top: 0;
    display: flex;
}

.download-container {
    position: relative;
    width: 80vw;
    max-width: 1280px;
    background-color: #ffffff;
    margin: auto;
    display: block;
    border-radius: 50px;
    z-index:3;
    color:#000000;
    padding-top: 30px;
    padding-bottom: 30px;  
}

.download-container .h2 {
    margin: 0px;
}

.bullet-list {
    padding-left:20px;
}

.text-content-subtitle {
    width: 100%; 
    font-weight:500;
    font-size: 1.2 rem;
    line-height: 1.3;
    width: 80%;
    margin:auto;
    border-bottom: 0.5px solid #000000;
}

.text-content-subtitle p {
    margin-bottom:5px;
}

.download-container .text-content p {
    font-size: 0.9rem;
}

.register-container {
    position: relative;
    max-width: 600px;
    background-color: #ffffff;
    margin: auto;
    display: block;
    border-radius: 50px;
    z-index:3;
    color:#000000;
    padding: 50px;
    padding-bottom: 60px;  
}

.register-container .h2 {
    margin: 0px;
}


.register-container .text-content-subtitle{
    width:auto;
    border-bottom: none;
}

.subtitle-center {
    text-align: center; 
}

#downloadForm {
    display:flex;
    flex-direction: column
 }


input[type="email"] {
    padding: 10px;
    margin: 10px 0;
    border: 0.1px solid #ccc;
    border-radius: 5px;
    background-color: #D9D9D9;
}
    
.checkbox-container {
    display: flex;
    text-align: center;
    margin: 10px;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
}

.checkbox-container a {
    color: #000000;
    text-decoration: underline;
}


.consent {
    display:flex;
    flex-direction: row;
}

.register-button {
    position:relative;
    padding: 2% 5%;
    color: #4460FF;
    background-color: rgba(255, 255, 255,);
    border: 4px solid #4460FF;
    border-radius: 100px;
}


.register-button .h2 {
    color: #4460FF;
    font-size: 2.5rem;
}

.register-button:hover {
    background: #4460FF;
}

.register-button .h2:hover {
    color: black;
}


button:disabled {
    opacity:50%;
    cursor: not-allowed;
}

.skip-link {
    display: block;
    margin-top: 10px;
    color: #000000;
    text-decoration: underline;
}




    .sticky-nav {
        position: sticky;
        top: 0;
        width: 100%;
        display: flex;
        background-color: #ffffff;
        z-index: 1000;
        transition: all 0.3s ease;
    }

    .sticky-nav a {
        text-decoration: none;
      }
    
    .nav-item {
        flex: 1;
        position: relative;  /* For absolutely positioned content */
        display: flex;
        align-items: center;
        justify-content: center;
        padding:1%;
        font-size: 1.5rem;
        font-weight:500;
        color: #ffffff;
        cursor: pointer;
        overflow:hidden;
        transition: background 0.3s ease;
        border-bottom:3.5px solid #fff;
    }

    .nav-item:not(:last-child) {
        border-right: 3.5px solid #fff;
      }

    .nav-item:hover {
        opacity: 0.8;
    }

    .gif-item {
        /* background: url("path/to/your-background.svg") center center / cover no-repeat; */
      background-color:black;
    }

    .gif-item .gif {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 100%;
        /* max-height: 100%; */
      }


      .gif-item:hover {
        opacity: 1;
      }


    /* Footer Base Styling */
    .site-footer {
        padding:5px;
        text-align: center;
        padding-top: 40px; 
        padding-bottom: 80px;
    }

    .footer-content h2 {
        margin-top: 5px;
        margin-bottom: 5px;
    }


    .footer-content p {
        max-width: 80%;
        margin:auto;
        font-size: 1.2rem;
        line-height:1.3;
        margin-bottom: 40px;
    }
  
  /* Flexible Layout for Logos */
    .footer-logos {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        gap: 20px; 
        flex-wrap: wrap; 
    }
  
  /* Optional: Control logo sizes */
    .footer-logos img {
        max-width: 400px; /* Adjust as needed */
        height: auto;
    }




    @media (max-width: 768px) {
        
        
        /* Top Grid */
        .grid-container {
            grid-template-columns: 1fr;
            grid-template-rows: repeat(4, 1fr);
        }

        .grid-item {
            border-bottom: 2px solid #ffffff;  
        }

        .grid-container > .grid-item:nth-child(1) {
            grid-row: 1;
        }
        .grid-container > .grid-item:nth-child(4) {
            grid-row: 2;
        }
        .grid-container > .grid-item:nth-child(3) {
            grid-row: 3;
        }
        .grid-container > .grid-item:nth-child(2) {
            grid-row: 4;
        }
    
        .grid-container::before,
        .grid-container::after {
            display: none;
        }

        .h2 {
        font-size: clamp(1.8rem, 5vw, 3.8rem);
        }

        .overlay-text .h2 {
            max-width: 100;
        }

        .grid-button {
            position: absolute;
            padding: 3% 7%;
            border: 3px solid #00FF71;
        }

        .grid-button .h2 {
            font-size:3.8rem;
        }

        .register-button {
            border: 3px solid #4460FF;
            padding: 3% 7%;
        }

        

        /* Navigation */

        .sticky-nav {
            bottom:0px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
          }
          
          /* Make the first nav item span 2 columns */
          .sticky-nav .nav-item.gif-item {
            grid-column: span 4;
          }
          
          /* Make the second nav item span 2 columns */
          .sticky-nav .nav-item.svg-item {
            grid-column: span 2;
          }

          .nav-item {
            border-bottom:2px solid #fff;
            }

          .nav-item:not(:last-child) {
            border-right: 2px solid #fff;
          }

          .nav-item, .svg-item:not(:last-child) {
            border-right: none;
          }

          .nav-item {
            font-size: 1rem;
            padding-top:10%;
            padding-bottom:10%;
          }

          .gif-item, .svg-item {
            padding:0px;
          }

          .sticky-nav .nav-item.gradient-background-1,
          .sticky-nav .nav-item.gradient-background-2 {
            background: black;
          }

          .gif-item{
            height: 80px;
        }

        .video-section {
            height: 50vh;
        }

        .video-container {
            width: 90vw;
        
        }
        
        .video-container iframe {
            border-radius: 50px;
        }

        .about-section .h2 {
            padding-top: 5%;
            padding-bottom: 3%;
            padding-left: 5%;
            padding-right: 5%;
        }

        .content-wrapper {
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
        }

        .image-content img {
            width: 80%;
        }

        .text-content p {
            width: auto;
        }

        .tutorial-card {
                width: calc(50% - 20px); /* 2 columns on mobile */
        }
    

        

        .footer-content p {
            max-width: 90%;
        }

        .download-section {
            height: auto;
        }

        .download-container {
            width: 92vw;
            margin-top:20px;
            margin-right:10px;
            margin-left:10px;
            margin-bottom:80px;
            padding-left:16px;
            padding-right:16px;
            padding-bottom: 60px;
        }

        .register-container {
            width: 92vw;
            margin-top:20px;
            margin-right:10px;
            margin-left:10px;
            margin-bottom:80px;
            padding-left:16px;
            padding-right:16px;
            padding-bottom: 60px;
        }

        .text-content-subtitle {
            width: 100%;
            font-size:1.2rem;
            line-height:1.1;
            display: flex;
            flex-direction: column;
            
        }

        .register-container .text-content p {
            padding:0px;
        }

        .download-container .text-content p {
            padding:0px;
        }


        .footer-logos {
        flex-direction: column;
    }
  }
    


    