:root {
    --red: #B13D14;
    --light-peach: #f9f2eb;
    --dark-brown: #340701;
    --deep-red: #9C1A04;
    --peach: #FFD7C1;
    --black: #090400;
    --white: #e6e6e6;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-peach);
    color: var(--dark-brown);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
    height: 100%;
    width: 100%;
    background-color: var(--light-peach);
    background-image: 
        linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 40px 40px; 
}

header {
    background-color: var(--light-peach);
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--dark-brown);
    position: relative;
    z-index: 2;
}

nav a {
    color: var(--dark-brown);
    text-decoration: none;
    margin-left: 1.5rem;
    font-weight: 600;
}

nav a:hover {
    color: var(--red);
    text-decoration: underline;
}

.contact-page {
    padding: 2rem;
}

.contact-hero {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--deep-red);
}

.contact-hero p {
    font-size: 1.2rem;
    color: var(--black);
}

.contact-form-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--light-peach);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    margin: 0 auto;
}

.contact-form-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-brown);
}

form input, form textarea {
    width: 100%;
    padding: 0.8rem;
    margin: 1rem 0;
    border: 1px solid var(--dark-brown);
    border-radius: 5px;
    font-size: 1rem;
}

form button {
    width: 100%;
    padding: 1rem;
    background-color: var(--deep-red);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

form button:hover {
    background-color: var(--red);
}

.contact-info {
    text-align: center;
    margin-top: 2rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--deep-red);
}

.contact-info ul {
    list-style: none;
}

.contact-info li {
    margin: 1rem 0;
}

.contact-info a {
    color: var(--deep-red);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 2rem;
    background: var(--dark-brown);
    color: white;
    font-size: 0.9rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

footer a {
    color: var(--white);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
    }
    nav a {
        margin: 0.5rem 0;
    }
    .contact-hero h1 {
        font-size: 2rem;
    }
    .contact-hero p {
        font-size: 1rem;
    }
}
