*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none; /* For Safari */
    -ms-user-select: none;
    -moz-user-select: none; 
}
html{
    scroll-behavior: smooth;
}
body{
    overflow-x: hidden;
    padding-top: 50px;
    font-family: "Product Sans";
    background-color: black;
}
.nav-bar{
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    color: white;
    justify-content: space-between;
    padding: 15px 50px;
    align-items: center;
    background: linear-gradient(to bottom, rgba(12, 12, 12, 0.7) 10%, rgba(0,0,0,0) 100%);
    transition: all 0.5s ease-in-out;
    backdrop-filter: blur(20px);
}
.nav-bar:hover{
    background: linear-gradient(to bottom, rgba(12, 12, 12, 0.7) );
}
.title{
    font-size: larger;
    cursor: pointer;
    font-weight: bolder;
}
.links{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.tab-link{
    text-decoration: none;
    color: white;
    font-size: medium;
    transition: all 0.5s ease-in-out;
}
.tab-link:hover{
    color: rgb(107, 107, 255);
}
span{
    color: rgb(107, 107, 255);
}
.coming-soon{
    border: 3px solid rgb(107, 107, 255);
    padding: 5px 10px;
    border-radius: 15px;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}
.coming-soon:hover{
    background-color: rgb(107, 107, 255);
    color: white;
}
.windows{
    color: rgb(226, 226, 246);
}
.hero-section{
    height: 95vh;
    /* Add fallback background color and fix background property */
    background-color: #1a1a1a; /* Fallback color */
    background-image: url(background.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 60px;
    margin-bottom: 20px;
}
.hero-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    gap: 40px;
}
.name{
    font-size: 120px;
    font-weight: bolder;
    letter-spacing: 5px;
}
.abbrevation{
    font-size: 20px;
    font-weight: bolder;
    letter-spacing: 2px;
}
.tags{
    color: rgb(150, 150, 226);
    font-weight: bold;
    letter-spacing: 1px;
}
.logo{
    margin-top: 15px;
    width: 200px;
}

.about {
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.mobile-menu-btn {
    display: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
}

.mobile-close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.mobile-tab-link {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.mobile-tab-link:hover {
    color: rgb(107, 107, 255);
    transform: scale(1.1);
}

.mobile-coming-soon {
    border: 3px solid rgb(107, 107, 255);
    padding: 12px 20px;
    border-radius: 15px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.mobile-coming-soon:hover {
    background-color: rgb(107, 107, 255);
    transform: scale(1.05);
}

.about-content{
    background-color: rgb(0, 0, 15);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border: solid 3px rgb(0, 0, 50);
}

.des-title{
    color: rgb(232, 249, 255);
    font-size: larger;
    font-weight: bold;
}
.description{
    text-align: justify;
    text-align: center;
}

.documentation{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border: solid 3px rgb(0, 0, 50);
    background-color: rgb(0, 0, 15);
    padding: 20px;
    border-radius: 15px;
}

.link{
    background-color: blue;
    color: white;
    padding: 12px 20px;
    border-radius: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.link:hover{
    background-color: rgb(107, 107, 255);
}
.gemini{
    width: 300px;
}
.integration{
    background-color: rgb(0, 0, 15);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border: solid 3px rgb(0, 0, 50);
}
.features-page{
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
}
.gui{
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 30px;
}
.ui{
    width: 350px;
}
.card{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.context{
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: solid 3px rgb(0, 0, 50);
    background-color: rgb(0, 0, 15);
    padding: 20px;
    border-radius: 15px;
    margin: 0 20px
}
@media (max-width: 1024px) {
    .name {
        font-size: 80px;
    }
    .abbrevation {
        font-size: 18px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-bar {
        padding: 15px 20px;
        flex-wrap: wrap;
    }
    
    .links {
        gap: 20px;
    }
    
    .tab-link {
        font-size: 14px;
    }
    
    .coming-soon {
        font-size: 12px;
        padding: 5px 8px;
    }
    
    .name {
        font-size: 80px;
        text-align: center;
    }
    
    .abbrevation {
        font-size: 16px;
        text-align: center;
        padding: 0 20px;
    }
    
    .logo {
        width: 150px;
    }
    
    .hero-section {
        padding: 0 20px;
        height: 90vh;
    }
    .ui{
        width: 300px;
    }
}

@media (max-width: 480px) {
    .nav-bar {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .links {
        order: 2;
    }
    
    .nav-right {
        order: 3;
    }
    
    .name {
        font-size: 80px;
        letter-spacing: 2px;
    }
    
    .abbrevation {
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    .logo {
        width: 100px;
    }
    
    .hero-content {
        gap: 25px;
    }
    .ui{
        width: 175px;
    }
    .context{
        font-size: 14px;
    }
    .description{
        font-size: 14px;
    }
    .gui{
        gap: 20px;
    }
    .des-title{
        font-size: medium;
    }
}

@media (max-width: 580px) {
    .mobile-menu-overlay.active ~ .mobile-menu-btn {
        display: none;
    }
    .nav-bar {
        flex-direction: row; /* Change back to row */
        justify-content: space-between;
        padding: 15px 20px;
    }
    
    /* Hide desktop menu items */
    .links,
    .nav-right {
        display: none;
    }
    
    /* Show mobile menu button */
    .mobile-menu-btn {
        display: block;
    }
    
    /* Show mobile menu overlay */
    .mobile-menu-overlay {
        display: block;
    }
    
    .name {
        font-size: 50px;
        letter-spacing: 2px;
    }
    
    .abbrevation {
        font-size: 16px;
        letter-spacing: 1px;
    }
    
    .logo {
        width: 150px;
    }
    
    .hero-content {
        gap: 25px;
    }

}