body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f0e1;
    color: #432818;
    line-height: 1.7;
}

header {
    background-color: #3d2b1f;
    color: #fff;
    padding: 1.5rem 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 1.5rem;
}

nav a {
    color: #ddd5c2;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

nav a:hover {
    color: #fff;
    transform: translateY(-2px);
}

main {
    padding: 3rem 2rem;
}

.hero {
    background-image: url('https://i.imgur.com/Y1vmiho.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 8rem 0;
    margin-bottom: 3rem;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero h1 {
    font-family: serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.cta-button {
    background-color: #704f4f;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    margin-top: 1.5rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1rem;
}

.cta-button:hover {
    background-color: #543939;
    transform: translateY(-3px);
}

.content-section {
    background-color: #fff;
    padding: 3rem;
    margin-bottom: 3rem;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.content-section:hover {
    transform: translateY(-5px);
}

.content-section h2 {
    font-family: serif;
    color: #3d2b1f;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    border-bottom: 2px solid #3d2b1f;
    padding-bottom: 0.5rem;
}

.image-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 1rem;
}

.image-grid img {
    width: 300px;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

.image-grid img:hover {
    transform: scale(1.05);
}

footer {
    background-color: #3d2b1f;
    color: #fff;
    text-align: center;
    padding: 1.5rem 0;
    position: relative;
    width: 100%;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        text-align: center;
    }

    nav ul li {
        display: block;
        margin: 0.75rem 0;
    }

    .hero {
        padding: 5rem 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .content-section {
        padding: 2rem;
    }

    .content-section h2 {
        font-size: 2rem;
    }

    .image-grid {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .image-grid img {
        width: 80%;
        max-width: 400px;
        display: inline-block;
        margin-right: 10px;
    }
}