* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
:root {
    /*--main-color: rgb(248, 179, 130);*/
    --main-color: #9e92d3;
    --secondary-color: #1b1b1b;
}

@font-face {
    font-family: "argonite";
    src: url("/font/stone-orgonite.woff");
}

body {
    font-family: "argonite", sans-serif;
    background-color: var(--main-color);
}

/* * HEADER */
.header {
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    pointer-events: none;
}
.header .menuIcon {
    margin-top: 145%;
    margin-left: 80%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    width: 120px;
    height: 120px;
    background-color: var(--main-color);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.63);
    border-radius: 10rem;
    transition: width 0.5s, height 0.5s, margin-top 0.5s, margin-left 0.5s, gap 0.5s, opacity 0.5s;
    z-index: 9999999999999;
    pointer-events: all;
}
.header .menuIcon:active {
    margin-top: calc(145% - 15px);
    margin-left: calc(80% - 15px);
    width: 150px;
    height: 150px;
    gap: 1.5rem;
}
.header .menuIcon div {
    margin-top: auto;
    margin-bottom: auto;
    height: 1.3rem;
    width: 1.3rem;
    border-radius: 20rem;
    background-color: var(--secondary-color);
}
.header .menulist {
    text-align: center;
    background-color: var(--secondary-color);
    display: none;
    flex-direction: column;
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    gap: 4rem;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: all;
}
.header .menulist img {
    width: 80%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}
.header .menulist a {
    margin-left: auto;
    margin-right: auto;
    color: white;
    width: 90%;
    font-size: 3rem;
    font-weight: bold;
    border: none;
    border-bottom: 2px solid var(--main-color);
    text-decoration: none;
    transition: width 0.5s, border 0.5s;
}
.header .menulist a:hover {
    width: 100%;
    border-bottom: 5px solid var(--main-color);
}
.header .menulist .close {
    margin-left: auto;
    margin-right: auto;
    width: 120px;
    height: 120px;
    border-radius: 12rem;
    text-align: center;
}
.header .menulist .close p {
    font-size: 10rem;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--main-color);
    transition: font-size 0.5s;
}

/* * MAIN CONTENT */
.content {
    margin-top: 10vh;
    margin-bottom: 55vh;
    margin-left: 20px;
    margin-right: 20px;
    color: rgba(255, 255, 255, 0.76);
    text-shadow: 0px 4px 12px rgba(0, 0, 0, 0.49);
}
.content img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}
.content h1 {
    font-size: 100px;
}
.content p {
    font-size: 50px;
}
.content button {
    width: 340px;
    height: 120px;
    font-size: 2.5rem;
    font-weight: bold;
    font-family: 'argonite', sans-serif;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    margin: 5px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.49);
    transition: width 0.3s, height 0.3s;
}
.content button:hover {
    width: 360px;
    height: 140px;
}
.ctn-primary {
    background-color: var(--main-color);
    color: var(--secondary-color);
}
.ctn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

/* * SECOND SECTION */
.sec-2 {
    padding-top: 25px;
    background-color: var(--main-color);
    color: var(--secondary-color);
    padding-bottom: 4rem;
}

.sec-2 div {
    width: 100%;
    display: flex;
    text-align: center;
    flex-direction: column;
    gap: 3rem;
}
.sec-2 div h2 {
    font-size: 5rem;
    margin-bottom: 10px;
}
.sec-2 div p {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.sec-2 div .flex .card {
    color: var(--secondary-color);
    width: 750px;
    height: 65vh;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.69);
}
.sec-2 div .flex .card * {
    z-index: 10;
}
.sec-2 div .flex .card h2 {
    margin-top: 10px;
    position: relative;
    color: var(--main-color);
    margin-bottom: 10px;
    transition: opacity 0.5s;
}
.sec-2 div .flex .card p {
    color: var(--main-color);
    opacity: 100;
    font-size: 3rem;
    margin-left: 15px;
    margin-right: 15px;
    pointer-events: none;
}
.sec-2 div .flex .card button {
    background-color: var(--main-color);
    width: 340px;
    height: 120px;
    font-size: 2.5rem;
    font-weight: bold;
    font-family: 'argonite', sans-serif;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.49);
    transition: width 0.3s, height 0.3s;
}
.sec-2 div .flex .card button:hover {
    width: 360px;
    height: 140px;
}

.sec-2 div .flex .c-1 {
    background-image: url("/img/signal-2024-03-05-190142.avif");
    background-size: cover;
    background-position: center;
}
.sec-2 div .flex .card .background {
    position: absolute;
    width: 750px;
    height: 65vh;
    padding-top: 50px;
    border-radius: 20px;
    background-color: rgba(27, 27, 27, 0.75);
    transition: opacity 0.5s;
    opacity: 0;
    z-index: 5;
}
.sec-2 div .flex .card .background p {
    padding-top: 100px;
}
.sec-2 div .flex .card .background:hover {
    opacity: 1;
}

.sec-2 div .flex .c-2 {
    /*background-image: url("/img/Picsart_23-02-05_01-16-09-801.avif");*/
    background-image: url("/img/Picsart_23-02-05_01-16-09-801.avif");
    background-size: cover;
    background-position: center;
}

/* * NEWSLETTER */
.news-letter {
    height: 400px;
    text-align: center;
    /* Removed Newsletter */
    display: none;
}
.news-letter h2 {
    font-size: 4rem;
    font-weight: bold;
    color: var(--secondary-color);
}
.news-letter p {
    color: red;
    margin-top: 20px;
    font-size: 36px;
    display: none;
}
.news-letter label {
    font-size: 3rem;
    font-weight: bold;
}
.news-letter input {
    width: 60%;
    height: 5rem;
    font-size: 3rem;
    font-family: 'Times New Roman', Times, serif, sans-serif;
    border: none;
    border-bottom: 2px solid var(--secondary-color);
    background-color: var(--main-color);
    outline: none;
    transition: width 0.5s;
}
.news-letter input:focus {
    width: 70%;
}
.news-letter button {
    background-color: var(--secondary-color);
    color: white;
    margin-top: 3rem;
    width: 340px;
    height: 120px;
    font-size: 2.5rem;
    font-weight: bold;
    font-family: 'argonite', sans-serif;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.49);
    transition: width 0.3s, height 0.3s;
}
.news-letter button:hover {
    width: 360px;
    height: 140px;
}

/* * ABOUT US */
.about-us {
    padding-top: 10px;
    padding-left: 20px;
    margin-bottom: 50px;
    background-color: var(--secondary-color);
}
.about-us h1 {
    color: white;
    font-size: 5rem;
    margin-bottom: 4rem;
    text-shadow: 0px 4px 6px rgba(0, 0, 0, 0.49);
}
.about-us p {
    color: white; 
    font-size: 2rem;
    line-height: 3rem;
    text-shadow: 0px 4px 6px rgba(0, 0, 0, 0.49);
}

/* * CONTACT */
.contact {
    text-align: center;
}
.contact div {
    width: 100%;
    height: 700px;
}
.contact div h2 {
    font-size: 4rem;
    margin-top: 20px;
}
.contact div label {
    font-size: 2.5rem;
    font-weight: bold;
}
.contact div input {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    width: 60%;
    height: 5rem;
    font-size: 3rem;
    font-family: 'Times New Roman', Times, serif, sans-serif;
    border: none;
    border-bottom: 2px solid var(--secondary-color);
    background-color: var(--main-color);
    outline: none;
    transition: width 0.5s;
}
.contact div textarea {
    height: 5rem;
    width: 85%;
    font-size: 3rem;
    font-family: 'Times New Roman', Times, serif, sans-serif;
    background-color: var(--main-color);
    outline: none;
    border: none;
    resize: none;
    border-bottom: 2px solid var(--secondary-color);
    transition: height 0.5s;
}
.contact div textarea:focus {
    height: 15rem;
}
.contact input:focus {
    width: 70%;
}

/* * GALLERY */
.gallery .slider {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 500px;
    height: 500px;
}
.gallery .slider img {
    width: 100%;
    height: auto;
}
.gallery .selector {
    width: 80%;
    background-color: yellow;
}
.gallery .selector img {
    width: 50px;
    height: 50px;
}

/* * 404 */
.page {
    height: 80vh;
    display: flex;
    justify-content: center;
}
.page h2 {
    margin-top: 15vh;
    font-size: 48px;
}

#provide {
    margin-bottom: 100px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
#provide div {
    width: 75%;
    padding: 40px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--secondary-color);
    border-radius: 40px 40px 40px;
}
#provide div h2 {
    font-size: 48px;
}
#provide div ul li {
    font-size: 36px;
}

/* CONTACT */ 
.contact .form p {
    font-size: 36px;
}

.contact .form .submit {
    margin-top: 50px;
    color: white;
    background-color: var(--secondary-color);
    width: 340px;
    height: 120px;
    border-radius: 30px;
    font-size: 2.5rem;
    font-weight: bold;
    font-family: "argonite", sans-serif; 
    transition: width 0.3s, height 0.3s;
    cursor: pointer;
}
.contact .form .submit:hover {
    width: 360px;
    height: 140px;
}
#error {
    color: #c90a00;
    opacity: 0;
}

/* * FOOTER */
.footer {
    margin-top: 200px;
    background-color: var(--secondary-color);
    text-align: center;
}
.footer .menu {
    width: 100%;
    height: 400px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}
.footer .menu a {
    margin-left: auto;
    margin-right: auto;
    color: white;
    width: 90%;
    font-size: 3rem;
    font-weight: bold;
    border: none;
    border-bottom: 2px solid var(--main-color);
    text-decoration: none;
    transition: width 0.5s, border 0.5s;
}
.footer .menu a:hover {
    width: 100%;
    border-bottom: 5px solid var(--main-color);
}
.gallery {
    color: var(--secondary-color);
    text-align: center;
}
.gallery h2 {
    margin-top: 50px;
    font-size: 5rem;
}
.gallery .img{
    margin-top: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.gallery .img div {
    width: 80%;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}
.gallery .img div img {
    width: 100%;
    height: auto;
    cursor: pointer;
}

/* DESKTOP */
@media screen and (min-width: 1000px) {
    .header .menuIcon {
        width: 80px;
        height: 80px;
        margin-top: 80vh;
        margin-left: 90%;
        cursor: pointer;
        gap: 10px;
    }
    .header .menuIcon:hover {
        margin-top: calc(80vh - 10px);
        margin-left: calc(90% - 10px);
        width: 100px;
        height: 100px;
        gap: 15px;
    }
    .header .menuIcon div {
        width: 15px;
        height: 15px;
    }
    .header .menulist {
        gap: 2%;
    }
    .header .menulist img {
        width: 200px;
        height: auto;
    }
    .header .menulist a {
        font-size: 35px;
    }
    .header .menulist div {
        cursor: pointer;
    }
    .content {
        margin-bottom: 80vh;
    }
    .content h1 {
        font-size: 50px;
    }
    .content p {
        font-size: 50px;
    }
    .content button {
        width: 220px;
        height: 80px;
        font-size: 26px;
    }
    .content button:hover {
        width: 230px;
        height: 90px;
    }
    .sec-2 {
        padding-top: 0px;
        margin-top: 0px;
    }
    /*.sec-2 div {}*/
    .sec-2 div h2 {
        font-size: 50px;
    }
    .sec-2 div p {
        font-size: 25px;
        margin-top: -40px;
    }
    .sec-2 div .flex {
        flex-direction: row;
        gap: -15rem;
    }
    .sec-2 div .flex .card {
        width: 500px;
        height: 600px;
    }
    .sec-2 div .flex .card .background {
        width: 500px;
        height: 600px;
    }
    .sec-2 div .flex .card .background:focus {
        width: 500px;
        height: 600px;
    }
    .sec-2 div .flex .card .background h2 {
        font-size: 50px;
    }
    .sec-2 div .flex .card .background p {
        font-size: 20px;
        margin-left: 20px;
        margin-right: 20px;
    }
    .sec-2 div .flex .card .background button {
        font-size: 25px;
        width: 220px;
        height: 80px;
    }
    .sec-2 div .flex .card .background button:hover {
        width: 230px;
        height: 90px;
    }
    .news-letter {
        margin-bottom: -100px;
    }
    .news-letter h2 {
        margin-top: 50px;
        font-size: 50px;
    }
    .news-letter p {
        display: none;
    }
    .news-letter label {
        font-size: 25px;
    }
    .news-letter input {
        width: 500px;
        font-size: 25px;
        height: 25px;
        margin-right: 25px;
    }
    .news-letter input:hover {
        width: 600px;
    }
    .news-letter input:focus {
        width: 600px;
    }
    .news-letter button {
        font-size: 25px;
        width: 220px;
        height: 80px;
        margin-left: 20px;
    }
    .news-letter button:hover {
        width: 230px;
        height: 90px;
    }
    .about-us {
        padding: 40px;
        margin-top: -26vh;
    }
    .about-us h1 {
        font-size: 50px;
    }
    .about-us p {
        font-size: 25px;
    }

    #provide {
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin-bottom: 100px;
    }
    #provide div {
        background-color: var(--secondary-color);
        padding-left: 70px;
        padding-right: 70px;
        padding-top: 20px;
        padding-bottom: 20px;
        color: white;
        margin-right: 100px;
        margin-left: 100px;
        border-radius: 30px 30px 30px;
    }
    #provide div h2 {
        font-size: 38px;
        margin-bottom: 30px;
    }
    #provide .provide {
        width: 500px;
    }
    #provide .serve {
        width: 500px;
        height: 400px;
    }
    .contact .form {
        height: 500px;
    }
    .contact .form h2 {
        font-size: 50px;
    }
    .contact .form label {
        font-size: 25px;
    }
    .contact .form input {
        width: 500px;
        font-size: 25px;
        height: 25px;
    }
    .contact .form h2 {
        margin-bottom: 10px;
    }
    .contact .form p {
        font-size: 20px;
    }
    .contact .form p a {
        font-size: 20px;
    }
    .contact .form input:hover {
        width: 600px;
    }
    .contact .form input:focus {
        width: 600px;
    }
    .contact .form textarea {
        font-size: 25px;
        height: 30px;
    }
    .contact .form textarea:hover {
        height: 100px;
    }
    .contact .form textarea:focus {
        height: 100px;
    }
    .footer .menu a {
        font-size: 35px;
    }
    .gallery {
        color: var(--secondary-color);
        text-align: center;
    }
    .gallery h2 {
        margin-top: 50px;
        font-size: 4rem;
    }
    .gallery .img {
        margin-top: 20px;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
    }
    .gallery .img div {
        width: 400px;
        margin-top: 20px;
        margin-left: auto;
        margin-right: auto;
    }
    .gallery .img div img {
        width: 100%;
        height: auto;
        border: 0px solid white;
        cursor: pointer;
        transition: border 0.1s;
    }
    .gallery .img div img:hover {
        border: 5px solid white;
    }
}
