body {
    font-family: 'Neucha', sans-serif;
    background-color: #feeed9;
    color: #4b2e2e;
    line-height: 1.6;
    margin: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;

    padding: 12px 80px;
    background: #3f2a22;
}

.site-title {
    margin: 0;
    font-size: 26px;
}

.site-title a {
    color: #e8c3b9;
    text-decoration: none;
}

.site-title a:hover {
    color: #ffece7;
    font-size: 27px;
    text-decoration: none;
}
/* nav*/
nav {
    display: flex;
    gap: 25px;
    justify-content: center;
    padding: 12px;
    background-color: #3f2a22;
    border-radius: 6px;
}

nav a {
    color: #f0b5a3;
    text-decoration: none;
}

nav a:hover {
    color: #ffe0d4;
}

/* text & layout */
main {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    color: #572636;
}

footer {
    color: #ffe6de;
    background-color: #c78d7b;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
}

h2 {
    color: #8b4513;
    font-family: 'Lemon', cursive;
    margin-bottom: 10px;
    text-align: center;
}

h3 {
    font-size: 18px;
    font-weight: normal;
    color: #5a3a2a;
}

p {
    margin-bottom: 15px;
}

/* featured */
.feature {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}

.row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.row img {
    width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.row div {
    max-width: 400px;
}

/* Button */
.order-btn {
    display: inline-block;
    background: transparent;
    color: #d2691e;
    padding: 12px 22px;
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border: 2px solid #d2691e;
    border-radius: 10px;
    transition: all 0.25s ease;
}

.order-btn:hover {
    background: #d2691e;
    color: #fff3e6;
}

.active-btn {
    background: #d2691e;
    color: #fff3e6;
    transform: scale(1.05);
}

/* menu */
.menu-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 15px 0;
}

.menu-item img {
    width: 400px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* table & slideshow */
table {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    border-collapse: collapse;
    font-family: 'Josefin Sans', sans-serif;
    background-color: #f9f5ed;
}

th, td {
    border: 1px solid #c09b9b;
    padding: 12px;
    text-align: left;
}

th {
    background-color: #e7c4bd;
    font-weight: bold;
}

.slideshow {
    width: 900px;
    margin: 30px auto;
    overflow: hidden;
    border-radius: 12px;
}

.track {
    display: flex;
    transition: transform 0.7s ease-in-out;
}

.slide {
    min-width: 100%;   
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.slide img {
    width: 700px;  
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}
