/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

body,
html {
    width: 100vw;
    height: 100vh;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* Header styling */
.header {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1rem 3rem;
    background-color: #ffffff;
    position: fixed;
    border-bottom: 1px solid #ddd;
    ;
}

.header .logo {
    width: 8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header .logo img{
    width: 100%;
}

.header .menu-btn {
    font-size: 24px;
    color: #2c3e50;
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
}

/* Dropdown menu styling */
.dropdown-menu {
    display: none;
    position: absolute;
    right: 20px;
    top: 60px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    z-index: 1000;
}

.dropdown-menu.active {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color:
        #2c3e50;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background-color:
        #f1f1f1;
}

.container {
    width: 100vw;
    height: 360vh;
    margin-top: 4rem;
    background-image: url("../assets/background-image.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow-y: auto;
}

.download-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
    margin-top: 160rem;
    margin-left: 14.5rem;

}

.apple-div {
    background-color: #12141b;
    width: 230.101px;
    height: 67.1px;
    border-radius: 10px;
}


.playstore-div {
    background-color: #12141b;
    width: 230.101px;
    height: 67.1px;
    border-radius: 10px;
}

.apple {
    width: 100%;
}

.playstore {
    width: 100%;
}

.apple img {
    width: 100%;
}

.playstore img {
    width: 100%;
}


/* --------------------------------------MEDIA QUERY-------------------------------------------- */
@media (max-width:1024px) {
    .container {
        height: 300vh;
    }

    .download-btn {
        margin-top: 118rem;
        margin-left: 8rem;
    }

    .apple-div {
        width: 186.101px;
        height: 55.1px;
    }

    .playstore-div {
        width: 186.101px;
        height: 55.1px;
    }
}

@media (max-width:768px) {
    .header {
        padding: 1rem 1.5rem;
    }

    .container {
        height: 240vh;
    }

    .download-btn {
        margin-top: 94rem;
        margin-left: 4.8rem;
    }
}

@media (max-width:600px) {
    .container {
        height: 170vh;
    }

    .download-btn {
        margin-top: 67rem;
        margin-left: 4.8rem;
    }
}

@media (max-width:500px) {
    .header .logo {
        width: 5rem;
    }

    .container {
        height: 130vh;
        margin-top: 3.5rem;
    }

    .download-btn {
        margin-top: 51rem;
        margin-left: 2.5rem;
    }

    .apple-div {
        width: 100px;
        height: 29px;
        border-radius: 4px;
    }

    .playstore-div {
        width: 100px;
        height: 29px;
        border-radius: 4px;
    }
}

@media (max-width:400px) {
    .container {
        height: 110vh;
    }

    .download-btn {
        margin-top: 44.2rem;
        margin-left: 2.9rem;
    }

    .apple-div {
        width: 85px;
        height: 25px;
        border-radius: 4px;
    }

    .playstore-div {
        width: 85px;
        height: 25px;
        border-radius: 4px;
    }
}

@media (max-width:350px) {
    .container {
        height: 100vh;
    }
}