/* google fonts */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

:root {
    --dark-blue: #12232E;
    --white: #EEFBFB;
    --blue: #007CC7;
    --sky-blue: #4DA8DA;
    --font-family: 'Oswald', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}

body {
    background-color: var(--dark-blue);
    color: var(--white);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 5%;
    background-color: var(--dark-blue);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.navbar .logo img {
    width: 100px;
}

.navbar ul {
    display: flex;
    list-style: none;
}

.navbar ul li {
    margin-left: 2rem;
}

.navbar ul li a {
    text-decoration: none;
    color: var(--white);
    font-size: 1.2rem;
    transition: color 0.3s;
}

.navbar ul li a:hover {
    color: var(--sky-blue);
}

.navbar .menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .navbar ul {
        flex-direction: column;
        display: none;
        background-color: var(--dark-blue);
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        padding: 1rem;
    }

    .navbar ul.show {
        display: flex;
    }

    .navbar .menu-toggle {
        display: block;
        cursor: pointer;
        color: var(--white);
        font-size: 1.5rem;
    }

    .navbar {
        position: relative;
    }

    .banner-text h1 {
        display: none;
    }

    .download-btn {
        font-size: 15px!important;
    }

    .terms {
        font-size: 0.6rem!important;
    }

    .footer-container {
        padding: 0px!important;
    }

    .image-container img {
        max-width: 150px!important;
    }

    .server {
        width: 80%!important;
    }
}

@media (max-width: 1100px) {
    .banner-text h1 {
        display: none;
    }

    .server-list .server {
        width: 40%;
    }
}

.banner {
    position: relative;
    text-align: center;
}

.banner img {
    width: 100%;
    height: auto;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.banner-text h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 0px 0px 10px var(--blue);
}

.banner-text button {
    padding: 0.8rem 2rem;
    background-color: var(--blue);
    border: none;
    /*border-radius: 5px;*/
    font-size: 1.2rem;
    color: var(--white);
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.banner-text button:hover {
    background-color: var(--sky-blue);
    box-shadow: 0px 0px 20px 4px var(--sky-blue);
}

.white-section {
    padding: 1rem 10%;
    background-color: var(--white);
    color: #252525;
    text-align: center;
}

.white-section h2 {
    font-size: 1.5rem;
    /*margin-bottom: 1.5rem;*/
    color: var(--blue);
}

.white-section p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 3rem 10%;
}

.feature-box {
    width: 45%;
    margin-bottom: 2rem;
    text-align: center;
}

.feature-box img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 1rem;
}

.feature-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--blue);
}

.feature-box p {
    font-size: 1rem;
    line-height: 1.6;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: var(--dark-blue);
    color: var(--white);
}

.image-container {
    padding: 4rem 10%;
    text-align: center;
    background-color: var(--dark-blue);
    color: var(--white);
}

.image-container img {
    max-width: 300px;
    height: auto;
    margin-bottom: 2rem;
}

.image-container .box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.image-container .boxes {
    width: 48%;
    margin-bottom: 0rem;
    text-align: left;
}

.image-container .boxes p {
    margin-bottom: 1rem;
}

.image-container .car-float-img,
.image-container .man-float-img,
.image-container .gangster-float-img,
.image-container .bag-float-img {
    text-align: center;
    margin-top: 1rem;
}

.active {
   display: block!important;
}

.disable-btn {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: gray!important;
}

.terms {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--white);
    text-shadow: 0px 0px 10px var(--blue);
}

.terms a {
    text-decoration: none;
    color: var(--white);
    font-weight: bold;
    transition: color 0.3s;
}

.terms a:hover {
    color: var(--sky-blue);
}

.dotted-underline {
    text-decoration: underline dotted;
    text-decoration-thickness: 1px;
}



.footer-container {
    display: flex;
    justify-content: space-around;
    padding: 2rem;
    background-color: var(--dark-blue);
    color: var(--white);
}
.footer-column {
    flex: 1;
    /*text-align: left;*/
    padding: 0 1rem;
}
.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--sky-blue);
}
.footer-column ul {
    list-style: none;
    padding: 0;
}
.footer-column ul li {
    margin-bottom: 0.5rem;
}
.footer-column ul li a {
    text-decoration: none;
    color: var(--white);
    transition: color 0.3s;
}
.footer-column ul li a:hover {
    color: var(--sky-blue);
}
footer p {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
}



.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    padding: 20px;
}
.gallery img {
    width: 100%;
    height: auto;
    /*border-radius: 5px;*/
    cursor: pointer;
    transition: transform 0.3s;
}
.gallery img:hover {
    transform: scale(1.05);
}
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}
.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}
.close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.server-list {
    padding: 2rem 10%;
    text-align: center;
    background-color: var(--dark-blue);
    color: var(--white);
    box-shadow: 0px 0px 10px var(--sky-blue);
}
.server-list h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--sky-blue);
}
.server {
    background-color: var(--blue);
    padding: 1rem;
    margin: 1rem auto;
    width: 30%;
    box-shadow: 0px 0px 10px var(--sky-blue);
}
.server h3 {
    font-size: 1.0rem;
    margin-bottom: 0.5rem;
}
.server p {
    font-size: 0.8rem;
}

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--white);
    color: var(--dark-blue);
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    text-align: center;
}

.popup button {
    margin-top: 10px;
    padding: 5px 15px;
    border: none;
    background-color: var(--blue);
    color: var(--white);
    cursor: pointer;
    border-radius: 3px;
}

.popup button:hover {
    background-color: var(--sky-blue);
}
