/* GENERAL STYLING */
body {
    margin: 0 auto;
    width: 80%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff8f0;
    color: #333;
}

/* HEADER */
#header {
    background-color: #ffefd5;
    padding: 25px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

#header .logo img {
    border-radius: 50%;
    margin-bottom: 10px;
}

#header h1 {
    font-size: 2.5em;
    margin: 10px 0 5px 0;
    color: #d35400;
}

#header .tagline {
    font-style: italic;
    color: #e67e22;
    margin-bottom: 15px;
}

#header nav a {
    margin: 0 18px;
    text-decoration: none;
    font-weight: bold;
    color: #d35400;
    transition: all 0.3s ease;
}

#header nav a:hover {
    color: #ff7f50;
    text-decoration: underline;
}

/* CONTENT - 2 COLUMNS */
#content {
    margin-top: 30px;
    overflow: hidden;
}

#content .left {
    width: 60%;
    float: left;
    padding-right: 20px;
}

#content .right {
    width: 35%;
    float: right;
    text-align: center;
}

#content img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

#content .caption {
    margin-top: 10px;
    font-style: italic;
    color: #b03a2e;
}

/* SPECIALS SECTION */
#specials {
    background-color: #fff0e0;
    margin-top: 40px;
    padding: 25px;
    border-radius: 12px;
}

.special-items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.special-items .item {
    width: 22%;
    margin-bottom: 20px;
    text-align: center;
}

.special-items .item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 8px;
}

/* FOOTER */
#footer {
    margin-top: 40px;
    background-color: #ffd9b3;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    color: #8b4513;
}

/* MEDIA QUERY - RESPONSIVE LAYOUT */
@media screen and (max-width: 800px) {
    body {
        width: 95%;
    }

    #content .left, #content .right {
        float: none;
        width: 100%;
        text-align: left;
        margin-bottom: 20px;
    }

    #header nav a {
        display: block;
        margin: 8px 0;
    }

    .special-items {
        flex-direction: column;
        align-items: center;
    }

    .special-items .item {
        width: 80%;
    }
}
