@import "navbar.css";

:root {
    --navbar-height: 3rem;
    --navbar-blur: 5px;
    --navbar-margin: 0.5rem;
    --color-background: rgb(255, 255, 255);
    --color-accent: rgb(25, 28, 29);
    --color-accent-2: rgb(170, 159, 132);
    --color-navbar: rgba(30, 30, 30, 0.8);
    --border-radius: 10px;
    font-family: "Work Sans", BlinkMacSystemFont, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: white;
    background: rgb(0, 0, 0, 1.0);  
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(12px) brightness(0.7);
    z-index: -1;
}

.intro {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 85vh;
    text-align: center;
}

#title_text {
    background: linear-gradient(to bottom right, rgb(255, 255, 255) 40%, rgb(50, 50,50));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-family: "Inter", BLinkMacSystemFont, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 80px;
    line-height: 1.05;
    letter-spacing: -0.05rem;
}

#download_button {
    margin-top: 1.5rem;
    padding: 0.8rem 1.6rem;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: white;
    background: linear-gradient(135deg, rgba(80, 80, 255, 0.5), rgba(120, 120, 255, 0.2));
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 0 25px rgba(80, 80, 80, 0.25);
    position: relative;
    overflow: hidden;
}

#download_button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 20px rgba(100, 100, 255, 5.0);
    background: linear-gradient(135deg, rgba(100, 100, 255, 1), rgba(150, 150, 255, 0.8));
}

#download_button:active {
    transform: scale(0.97);
    box-shadow: 0 0 15px rgba(80, 80, 80, 0.3);
}

.features {
    position: relative;
    z-index: 1;
    min-width: 100%;
    min-height: 60vh;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 10%);
}

#features_title {
    font-size: 60px;
    margin-left: 3rem;
}

#features_content {
    border-radius: 25px;
    background-color: rgba(30, 30, 30, 0.8);
    margin: 3rem;
    padding: 3rem;
    font-size: 30px;
    line-height: 5rem;
    display: flex;
}

.preview_container {
    background: rgb(0, 0, 0);
    justify-content: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 0px;
}
   
.preview {
    width: 70%;
    padding: 2rem;
    border-radius: 25px;
    background-color: rgba(30, 30, 30, 0.8);
    overflow: hidden;
    text-align: center;
}

#preview_text {
    margin-bottom: 1.5rem;
}

.video video {
    width: 100%;
    height: auto;
    border-radius: 15px;
}