@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Merriweather", serif;
}
body {
    background: #222;
    color: #fff;
}
html{
    scroll-behavior: smooth;
}


.contact-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
    background: url('../Images/contact-back-2.jpg') no-repeat center center/cover;
    position: relative;
}

.popup-box {
    background: #fff;
    padding: 25px;
    width: 450px;
    border-radius: 12px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.6);
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
    z-index: 2;
}
.popup-box h2 {
    text-align: center;
    font-size: 1.5rem;
}
form {
    display: flex;
    flex-direction: column;
}
form label {
    margin-top: 10px;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    color: #0f0f0f;
}
form .required {
    color: red;
    margin-left: 5px;
    font-size: 16px;
}
form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: 0.3s;
}
form input:focus, form textarea:focus {
    border-color: #c49c00;
    outline: none;
    box-shadow: 0 0 5px rgba(226, 29, 32, 0.5);
}
form textarea {
    height: 120px;
    resize: none;
}
button {
    margin-top: 15px;
    padding: 12px;
    background-color: #a3840a;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
button:hover {
    background-color: rgb(34, 143, 12);
    letter-spacing: 2px;
}
.back-home-btn {
    margin-top: 10px;
    padding: 12px;
    background-color: #444;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    display: block;
    width: 100%;
    text-align: center;
}
.back-home-btn:hover {
    background-color: #222;
    letter-spacing: 1px;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}







/* Responsive Design */

@media (max-width: 768px) {

    .contact-page {
        background-position: center;
        background-size: cover;  /* Ensures full coverage */
    }

    .popup-box {
        width: 100%;
        padding: 20px;
    }

    form input, form textarea {
        font-size: 14px;
        padding: 8px;
    }

    button, .back-home-btn {
        font-size: 16px;
        padding: 10px;
    }
}



@media (max-width: 576px) {


    .contact-page {
        background-position: center top;  /* Adjusts the focus on smaller screens */
        background-size: cover;   /* Keeps it covering the full screen */
    }

    .popup-box {
        width: 100%;
        padding: 20px;
    }

    .popup-box h2 {
        font-size: 1.3rem;
    }

    form label {
        font-size: 13px;
    }

    form input, form textarea {
        font-size: 14px;
        padding: 8px;
    }

    button, .back-home-btn {
        font-size: 15px;
        padding: 10px;
    }
}