
body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    background: #fff8ed;
    color: #333;
    line-height: 1.6;
}

header {
    background: #fff;
}

.banner {
    background: url('images/hero_plate.jpg') center/cover no-repeat;
    height: 250px;
    position: relative;
}

.overlay {
    background: rgba(0, 0, 0, 0.4);
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.logo {
    font-size: 2.5rem;
    margin: 0;
    color: #f7d354;
    font-weight: 700;
}

.tagline {
    font-size: 1rem;
    margin-top: 5px;
}

nav {
    background: #f9f2dc;
    border-top: 2px solid #e0c04f;
    border-bottom: 2px solid #e0c04f;
    padding: 10px 0;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

nav a:hover {
    color: #c49c1f;
}

section {
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
    background: #fff;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-radius: 8px;
}

h1, h2 {
    color: #c49c1f;
    margin-bottom: 10px;
}

.button {
    display: inline-block;
    margin-top: 15px;
    background: #c49c1f;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.button:hover {
    background: #b28a14;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.gallery img {
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    max-width: 100%;
    height: auto;
}

footer {
    text-align: center;
    padding: 20px;
    background: #f9f2dc;
    color: #555;
}

@media (max-width: 600px) {
    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    section {
        padding: 40px 15px;
    }
}


.site-logo {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.4));
}
