html {
    scroll-behavior: smooth;
    scroll-padding-top: 30px;
}

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0C0C1A;
    color: #B3B3B3;
    line-height: 1.6;
    padding-top: 80px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 20px;
    background-color: #0C0C1A;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

.logo img {
    width: 150px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 16px;
    position: relative;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: #00D4FF;
}

nav ul li a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: #00D4FF;
    transition: all 0.3s ease;
}

.menu-icon {
    display: none; /* Hide by default */
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 50px;
    background-image: url("./images/BACKGROUNG.jpeg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-text {
    max-width: 600px;
}

.hero h1 {
    font-size: 3em;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.explore-btn {
    padding: 15px;
    background-color: #00D4FF;
    color: #0C0C1A;
    text-decoration: none;
    font-size: 1.2em;
    border: none;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    box-shadow: 0 0 10px #00D4FF, 0 0 20px #00D4FF;
}

.explore-btn:hover {
    background-color: #0099CC;
}

.text p {
    opacity: 0.05;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.text p.revealed {
    color: #FFFFFF;
    opacity: 1;
}

.description {
    padding: 60px 20px;
    text-align: center;
}

.description h2 {
    font-size: 3.5em;
    color: #FFFFFF;
    font-weight: 600;
}

.description p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.5em;
    line-height: 1.5;
}

/* About Section Full-Screen */
#about {
    position: relative;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./images/BACKGROUND2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(6px);
    z-index: 1;
    opacity: 0.7;
}

#about .text {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.highlight {
    color: #00D4FF;
}

#loginBtn {
    color: #FFFFFF;
    cursor: pointer;
    transition: color 0.3s ease;
}


.mobile-version {
    display: none;
}

/* Show desktop version on large screens */
.desktop-version {
    display: block;
}

#loginBtn:hover {
    color: #0099CC;
}

/* Download Section */
.download-section {
    background-color: #0C0C1A;
    color: #FFFFFF;
    padding: 60px 20px;
}

.download-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto;
    padding: 15px;
    background-color: #00D4FF;
    color: #0C0C1A;
    text-decoration: none;
    font-size: 1.2em;
    border: none;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    box-shadow: 0 0 10px #00D4FF, 0 0 20px #00D4FF;
}

.download-btn:hover {
    background-color: #0099CC;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Block layout for alternating content */
.block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.content-left, .content-right {
    flex: 1;
    margin: 20px;
}

.content-left h2, .content-right h2 {
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: 600;
}

.content-left p, .content-right p {
    font-size: 1.2em;
    line-height: 1.8;
}

.mockup-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 768px) {
    .block {
        flex-direction: column;
    }

    .content-left, .content-right {
        margin: 0;
        text-align: center;
    }

    .mockup-image {
        margin: 20px 0;
    }

    .btn, .login-btn {
        min-width: 150px;
        padding: 12px 20px;
    }
    .mobile-version {
        display: block;
    }
    .desktop-version {
        display: none;
    }

    nav .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        background-color: #0C0C1A;
        width: 100%;
        text-align: center;
        z-index: 1;
    }

    nav .nav-links li {
        margin: 10px 0;
    }

    nav .menu-icon {
        display: block;
        width: 30px;
        cursor: pointer;
    }


    nav.active .nav-links {
        display: flex;
    }

    nav ul {
        list-style: none;
    }
}

/* Modal (Popup) */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Wrapper for the modal */
.wrapper {
    max-width: 400px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.7);
}

/* Title */
.title {
    font-size: 35px;
    font-weight: 600;
    text-align: center;
    color: #FFFFFF;
}

/* Form Fields */
.field {
    margin-top: 20px;
}

.field input {
    width: 100%;
    height: 50px;
    padding-left: 15px;
    border-radius: 15px;
    border: 1px solid lightgrey;
    font-size: 17px;
    transition: all 0.3s ease;
}

.field input:focus {
    border-color: #1a75ff;
}

.field input[type="submit"] {
    background-color: #00D4FF;
    color: #0C0C1A;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    width: 100%;
    height: 50px;
    transition: background-color 0.3s ease;
}

.field input[type="submit"]:hover {
    background-color: #0099CC;
}

/* Sign Up / Login Link */
.pass-link,
.signup-link {
    text-align: center;
    margin-top: 15px;
}

.pass-link a,
.signup-link a {
    color: #1a75ff;
}

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #B3B3B3;
    font-size: 14px;
    height: 100px;
}
