/* General Styles */
body {
    font-family: 'Lora', serif;
    margin: 0;
    padding: 0;
    background-color: #f4ece6;
    color: #5a3e1b;
}

/* Header */
header {
    background-color: #3b1a04;
    color: white;
    text-align: center;
    padding: 20px;
    font-family: 'Emblema One', cursive;
}

header h1 {
    margin: 0;
    font-size: 36px;
}

header h3 {
    margin: 5px 0;
    font-size: 18px;
    font-weight: 300;
}

/* Navigation */
nav {
    background-color: #6B4226;
    text-align: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* Nav toggle button (hamburger) */
.nav-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Nav links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.nav-links li a:hover {
    background-color: #8B5A2B;
}

/* Mobile styles */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #6B4226;
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
        z-index: 100;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        padding: 10px 0;
    }
}

/* Sections */
section {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#home {
    text-align: center;
    background-color: #fdf7f1;
    padding: 40px;
    border-radius: 12px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    background-color: #3b1a04;
    color: white;
    font-size: 14px;
}
