* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Netflix Sans, Helvetica Neue, Segoe UI, Roboto, Ubuntu, sans-serif;
}

.container {
    position: relative;
    max-width: 100%;
    height: 100vh;
    background-image: url('assets/images/bgimage.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    /* overflow-x: hidden; */

}

.container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: black;
    /* dark overlay */
    opacity: 0.73;
    /* controls darkness */
    z-index: 1;
    /* below content */
}

/* body{
    height: 100vh;
    width: 100%;
    opacity: 0.33;
    background-color: black;
} */

nav {
    display: flex;
    width: 100%;
    max-width: 80vw;
    margin: auto;
    padding: 0px 10px;
    height: 10vh;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
    padding-top: 10px;
    flex-wrap: nowrap;
}

nav img {

    width: 155px;
    height: auto;
    color: red;

}

.lan-button {
    background-color: transparent;
    color: white;
    padding: 8px 30px;
    border: 1px solid rgb(126, 110, 110);
    border-radius: 5px;
    margin-right: 5px;
    font-weight: bold;
    cursor: pointer;
    /* transition: transform 0.2s ease, box-shadow 0.2s ease; */
}

.lan-button:hover {
    /* transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); */
    transform: scale(1.1);
    /* makes it pop up slightly */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    /* adds depth */
}


.sing-button {
    background-color: red;
    padding: 8px 15px;
    border: 0;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    cursor: pointer;

}

.sing-button:hover {
    transform: scale(1.1);
    /* makes it pop up slightly */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    /* adds depth */
}

@media (max-width: 768px) {
    nav img {
        max-width: 120px;
    }

    .lan-button {
        padding: 6px 15px;
        font-size: 0.9rem;
    }

    .sing-button {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 8px 3%;
    }

    nav img {
        max-width: 100px;
    }

    .lan-button,
    .sing-button {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
}

.content {
    position: relative;
    z-index: 10;
    max-width: 80vw;
    margin: auto;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    gap: 25px;
    padding: 0 10%;
    text-align: center;
}

.content h1 {
    font-size: 3.8rem;
    font-weight: bolder;
}

.email input {
    margin-right: 5px;
    margin-bottom: 10px;
    font-weight: 500;
}

input {
    color: white;
    width: 350px;
    height: 60px;
    border-radius: 5px;
    border: 1px solid white;
    font-size: large;
    background-color: rgba(29, 28, 28, 0.619);
    padding-left: 15px;
    font-weight: bold;
}


.getstart {
    width: 220px;
    height: 60px;
    border-radius: 5px;
    border: none;
    background-color: red;
    color: white;
    font-weight: bolder;
    font-size: x-large;
    cursor: pointer;
}

.getstart svg{
    vertical-align: middle;
}

@media (max-width: 600px) {
    .content {
        padding: 0 3%;
        gap: 15px;
    }

    .getstart,
    input {
        height: 50px;
    }
}


.line {
    border: 1px solid red;
    height: 4px;
    background-color: red;
}

footer {
    background-color: black;
}

.foot {
    display: flex;
    max-width: 80vw;
    margin: auto;
    gap: 50px;
    overflow-x: auto;
    overflow-y: auto;
    /* scrollbar-width: thin;
  scrollbar-color: black; */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* Internet Explorer/Edge legacy */
}

.foot::-webkit-scrollbar {
    /* Chrome, Safari, Edge */
    display: none;
}

.low {
    max-width: 80vw;
    margin: auto;
    padding: 35px 0px;
    font-size: x-large;
    font-weight: bold;
    color: white;
}

.card {
    flex: 0 0 auto;
    max-width: 80vw;
    margin: auto;
    width: 180px;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    margin-top: 10px;

}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    /* add depth */
    z-index: 10;
    /* make sure it appears above others */
}


.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    /* keeps same rounding as card */
    display: block;
    transition: transform 0.3s ease;
    border-radius: inherit;
    /* important */

}

.card:hover img {
    transform: scale(1.05);
    /* image zooms but stays inside the curve */
}

.textcard {
    background-color: black;
}

.down {
    color: white;
    max-width: 80vw;
    margin: auto;
    font-size: x-large;
    font-weight: bolder;
    padding-top: 50px;
    padding-bottom: 20px;
}

.tccard {
    max-width: 80vw;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.tcard {
    max-width: 300px;
    flex: 1 1 250px;
    height: 230px;
    border-radius: 12px;
    background-color: rgba(71, 2, 59, 0.332);
    padding: 12px 8px;
    color: white;
}

.tcard h2 {
    margin-bottom: 20px;
}

.questioncontainer {
    background-color: black;
    display: flex;
    /* justify-content: center; */
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;

}

.que {
    /* background-color: black; */
    color: white;
    max-width: 80vw;
    margin: 0 10vw;
    padding-top: 40px;
    padding-bottom: 15px;
    text-align: left;

}

.quecard {
    background-color: rgb(61, 61, 61);
    width: 100%;
    max-width: 80vw;
    margin: auto;
    height: 80px;
    border-radius: 5px;
    color: white;
    font-size: x-large;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
}

.quecard:hover {
    background-color: rgb(31, 30, 30);
    transition: all 1s ease-out;
}

.membership{
    background-color: black;  
}

.mem{
    display: flex;
}

.membership p{
    color: white;
    max-width: 80vw;
    margin: auto;
    padding-top: 70px;
    font-weight: bold;
}

.member{
    max-width: 80vw;
    margin: auto;
    display: flex;
    justify-content: center;
    background-color: black;
    padding: 20px 0;
    

}

.member input{
    margin-right: 5px;
    margin-bottom: 10px;
    font-weight: 500;
    width: 500px;
}

.member button{
    max-width: 300px;
}

.FAQ {
    color: rgb(198, 195, 195);
    background-color: black;
}

.footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    max-width: 80vw;
    margin: auto;
}

/* @media (max-width: 768px) {
    .footer {
        display: grid;
        grid-template-columns: 1fr 1fr;
    } */

.iii {
    padding: 50px 0;
    max-width: 80vw;
    margin: auto;
}

.iii a{
    color: rgb(198, 195, 195);
}

.footer-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer a {
    color: rgb(198, 195, 195);
    font-size: small;
}

.lastone {
    background-color: black;

}

.last-one p, button {
    margin-bottom: 30px;
}

.last-one:nth-child(1){
    font-size: smaller;
}

.last-one {
    color: white;
    max-width: 80vw;
    margin: auto;
    padding: 60px 0;
    
}

.last-one button{
    background-color: black;
    color: white;
    padding: 8px 30px;
    border: 1px solid rgb(126, 110, 110);
    border-radius: 5px;
    margin-right: 5px;
    font-weight: bold;
    cursor: pointer;
}

.lastest {
    height: 10vh;
    background-color: black;
}