/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&display=swap');

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #fff6ea;
}

/* ================= HEADER MENU ================= */

.menu {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.menu a {
    background: #7b1f0e;
    color: white;
    padding: 10px 22px;
    border-radius: 22px;
    text-decoration: none;
    font-family: "Playfair Display", serif;
    font-size: 18px;
    text-align: center;
}

.menu a:hover {
    background: #a22d14;
}

/* ================= HOME PAGE ================= */

.home img {
    width: 100%;
    display: block;
}

/* ================= CONTACT PAGE ================= */

.contact-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    padding: 20px;
}

.contact-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.contact-box h1 {
    margin-bottom: 20px;
}

.contact-box input,
.contact-box textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.contact-box button {
    width: 100%;
    padding: 12px;
    background: #7b1f0e;
    color:
