body{
    width: 100vw;
    height:100%;
    margin: 0 auto; 
    /*Main font*/
    font-family: "Wix Madefor Display", serif;
    font-optical-sizing: auto;
    font-weight: 1px;
    font-style: normal;
}

copy{
    font-size: 12px;
}

#menuMob{
    display: none;
}

#menu{
    position: relative;
    width:100%;
    height: 50px;;
    border:0px solid black;
    background-color:rgb(223, 217, 217);
}

#menu ul{
    border:0px solid black;
    position:relative;
    width:530px;
    top:-55px;
    left:54%;
}

#menu ul a{
    text-decoration: none;
    color:black;
}

#menu ul a:hover{
    color:blue;
}

#menu ul li{
    border:0px solid green;
    bottom:10px;
    position:relative;
    display:inline-flex;
    padding-right: 20px;
}

#menu ul li img{
    position:relative;
    padding-left:0px;
    width: 35px;
    height:auto;
    bottom:-12px;
}

.logo-menu{
    position:relative;
    top:5px;
    left:30px;
}


#form-area{
    display:flex;
    flex-flow: row;
    border:0px solid blue;
    width: 100%;
    height: 447px;
    background-image: url("../img/bg-footer.png");
    background-repeat: no-repeat;
    background-size: 100% 447px;
}

#form-area img{
    border:0px solid red;
    position:relative;
    top:50px;
    left:20%;
    width: 330px;
    height: 344px;
}


form{
    border:0px solid black;
    position:relative;
    width:500px;
    height:350px;
    top:30px;
    left:25%;  
    color:white;
}


form input{
    margin-top:2.5px;
    margin-bottom:5px;
    width:100%;
    height: 35px;
}

form textarea{
    margin-top:5px;
    margin-bottom:5px;
    width:100%;
    height: 90px;
}

.form-button{
    border:0px;
    background-color: orange;
    color:white;
    transition: 0.5s;
}

.form-button:hover{
    transition:0.5s;
    background-color: rgba(65, 40, 98, 0.499);
}

footer{
    border:0px solid black;
    position:relative;
    width:100%;
    height:auto;
    padding: 10px;
    text-align: center;
    line-height: 30px;
}

.footer-title{
    font-size: 30px;
    font-weight: 50;
}

.bg-img{
    position:relative;
    margin:0 auto;
    padding:0;
    width:100%;
}

.bg-imgMob{
    display: none;
}

.whatsapp-icon{
    position:fixed;
    width:100px;
    height:100px;
    top:100px;
    right:30px;
    z-index: 1;
    filter:drop-shadow(3px 3px 2px black)
           brightness(100%);
}

.whatsapp-icon:hover{
    filter:brightness(150%)
          drop-shadow(3px 3px 2px black);
}

/* Media Queries */

/* Mobile Devices */
@media only screen and (max-width: 600px) {
    #menu {
        display: none;
    }

    .logo-menu{
        display: none;
    }

    #menuMob{
        display: block;
    }

  
    #menuMob a{
        text-decoration: none;
        font-size: 40px;
        color: black;
        width:100%;
    }

    
    /* Initially hide the menu options */
    .menu-options {
        list-style: none;
        display: none; /* Hide options by default */
        flex-direction: column; /* Stack menu items vertically */
        position: absolute; /* Position over content */
        background-color: white; /* Background for mobile menu */
        width: 100%; /* Full-width menu */
        margin: 0;
        padding: 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* Optional shadow for aesthetic */
    }
    
    /* Show options on mobile when active */
    .menu-options.active {
        display: flex; /* Show options when active */
    }

    /* Style for the menu toggle button */
    .menu-toggle {
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
    }
    

    #form-area{
        display:none;
    }

    .bg-img{
        display: none;
    }

    .bg-imgMob{
        display: block;
        position:relative;
        margin:0 auto;
        padding:0;
        width:100%;
        z-index: -1;
    }

    .form-button {
       display: none;
    }

    .whatsapp-icon {
        width: 50px; /* Resize icon for mobile */
        height: auto;
    }
    
}

/* Tablets */
@media only screen and (min-width: 601px) and (max-width: 900px) {
    #menu {
        display: none;
    }

    .logo-menu{
        display: none;
    }

    #menuMob{
        display: block;
    }

  
    #menuMob a{
        text-decoration: none;
        font-size: 40px;
        color: black;
        width:100%;
    }

    
    /* Initially hide the menu options */
    .menu-options {
        list-style: none;
        display: none; /* Hide options by default */
        flex-direction: column; /* Stack menu items vertically */
        position: absolute; /* Position over content */
        background-color: white; /* Background for mobile menu */
        width: 100%; /* Full-width menu */
        margin: 0;
        padding: 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* Optional shadow for aesthetic */
    }
    
    /* Show options on mobile when active */
    .menu-options.active {
        display: flex; /* Show options when active */
    }

    /* Style for the menu toggle button */
    .menu-toggle {
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
    }
    

    #form-area{
        display:none;
    }

    .bg-img{
        display: none;
    }

    .bg-imgMob{
        display: block;
        position:relative;
        margin:0 auto;
        padding:0;
        width:100%;
        z-index: -1;
    }

    .form-button {
       display: none;
    }

    .whatsapp-icon {
        width: 50px; /* Resize icon for mobile */
        height: auto;
    }
   
}

/* Desktops */
@media only screen and (min-width: 901px) {
    /* Larger screens can have specific styling */
   
    .form-button {
        padding: 10px 20px; /* Larger button size */
    }

    .whatsapp-icon {
        width: 70px; /* Larger icon for desktop */
        height: auto;
    }

   
} 
