
/* Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Arial', sans-serif;
    background: #f9f9f9;
    color: #333;
    line-height: 1.6;
}
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Header & Nav */
header {
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 0 0 10px 10px;
}
header h1 {
    text-align: center;
    color: #fff;
    margin-bottom: 10px;
}
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}
nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background 0.3s;
}
nav a:hover {
    background: rgba(255,255,255,0.3);
}

/* Carousel */
.carousel {
    position: relative;
    margin: 30px 0;
    overflow: hidden;
    border-radius: 10px;
}
.slides {
    position: relative;
    height: 0;
    padding-bottom: 50%;
}
.slide {
    display: none;
    position: absolute;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(50,50,50,0.5);
    color: #fff;
    border: none;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
}
.prev { left: 10px; }
.next { right: 10px; }

/* Menu */
.menu h2 {
    margin-bottom: 15px;
    text-align: center;
    color: #444;
}
.menu .items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.menu .item {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}
.menu .item h3 {
    margin-bottom: 10px;
    color: #ff6f61;
}
.menu .item p {
    color: #666;
}

/* About & Contact */
.about, .contact {
    margin: 40px 0;
}
.about h2, .contact h2 {
    margin-bottom: 15px;
    text-align: center;
    color: #444;
}
.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}
.contact-list li {
    background: #fff;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
    font-size: 14px;
    color: #777;
}
