/* GLOBAL */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Inter", "Segoe UI", sans-serif;
    background: blanchedalmond url("../admin/images/image_3.jpg") no-repeat center 10%;
    background-size: cover;
}

/* DARK OVERLAY */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: -1;
}

/* ABOUT SECTION */
.about-section {
    padding: 60px 40px;
    color: white;
    text-align: center;
}

.about-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px black;
}

.about-section p {
    max-width: 800px;
    margin: 10px auto;
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* CONTACT SECTION */
.contact-section {
    padding: 50px 40px;
    text-align: center;
}

.contact-section h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 30px;
    text-shadow: 0 0 10px black;
}

/* CONTACT FORM */
.contact-form {
    width: min(600px, 100%);
    margin: auto;
    background: rgba(255,255,255,0.9);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    backdrop-filter: blur(4px);
}

.form-group {
    text-align: left;
    margin-bottom: 20px;
}

.form-group label {
    font-weight: bold;
    color: sienna;
}

.form-group input,
.form-group textarea {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid sienna;
    margin-top: 5px;
    font-family: "Inter", "Segoe UI", sans-serif;
    font-size: 1rem;
}

/* BUTTON */
.submit-btn {
    display: block;
    padding: 12px 20px;
    background: sienna;
    color: blanchedalmond;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
    max-width: 100%;
}

.submit-btn:hover {
    background: #8b4513;
}

/* FOOTER */

.footer{
text-align:center;
padding:15px;
font-size:14px;
color: white;
}

/* MOBILE */
@media (max-width: 768px) {
    .about-section,
    .contact-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .about-section h1 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 20px 14px;
    }
}

