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

body{
    min-height: 100vh;
    width: 100%; 
    background-image: url(./menupc.jpg);
    background-size: cover ;
    background-repeat: no-repeat;
    background-position: center;
}
header{
    height: 20%;
    width: 100%;
    display: flex;
    gap: 40%;
    /* background-color: aqua; */
    background-color: black;
}

header img{
    height: 70px;
    width: 150px;
    margin-left: 40px; 
    /* background-color: black;   */
    background-color: aliceblue; 
}


nav ul{
    width: 400px;
    display: flex;
    justify-content: space-evenly;
    gap: 15%;
    /* background-color: brown; */
    margin-top: 20px;
}

nav a{
    text-decoration: none;
    color: white;
    font-weight: bolder;
}
nav li{
    list-style-type: none;
}

/* TITLE */
.contact-section h2{
    text-align: center;
    color: white;
    font-size: 40px;
    margin-top: 40px;
}

.subtitle{
    text-align: center;
    color: rgba(255,255,255,0.8);
    margin-top: 10px;
}

/* MAIN CONTAINER */
.contact-container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
    width: 100%;
}

/* LEFT SIDE */
.contact-info{
    position: relative;
    width: 30%;
    display: flex;
    justify-content: center;
}

.contact-info img{
    width: 100%;
    max-width: 400px;
    height: 355px;
    border-radius: 10px;
}

.contact-info .info-box{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
}

.contact-info .info-box:nth-child(2){
    top: 30px;
}

.contact-info .info-box:nth-child(3){
    top: 120px;
}

.contact-info .info-box:nth-child(4){
    top: 210px;
}

/* INFO BOX */
.info-box{
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0,0,0,0.6);
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 20px;
    color: white;
}

.info-box i{
    color: orange;
    font-size: 20px;
}

/* RIGHT SIDE FORM */
.contact-form{
    background: rgba(0,0,0,0.5);
    padding: 30px;
    border-radius: 10px;
    width: 400px;
    width: 40%;
}

.contact-form input,
.contact-form textarea{
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    border: none;
    outline: none;
    border-radius: 5px;
    background: rgba(255,255,255,0.1);
    color: white;
}

.contact-form textarea{
    height: 120px;
    resize: none;
}

/* BUTTON */
.contact-form button{
    width: 100%;
    padding: 12px;
    background: orange;
    border: none;
    border-radius: 25px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover{
    background: #e69500;
}

@media (max-width: 768px){

    header{
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 10px 0;
    }

    header img{
        margin-left: 0;
    }

    nav ul{
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    .contact-section h2{
        font-size: 28px;
    }

    .subtitle{
        font-size: 14px;
    }

    .contact-container{
        flex-direction: column;
        padding: 0 15px;
    }

    .contact-info{
        width: 100%;
        align-items: center;
        flex-direction: column;
    }

    .contact-info img{
        width: 100%;
        max-width: 300px;
        height: auto;
    }