
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background: #fafafa;
    color: #333;
}
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}
header {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 10;
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-size: 1.8rem;
    color: #fff;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}
nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}
nav a:hover {
    text-decoration: underline;
}
.section {
    padding: 40px 0;
}
h2 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}
.menu-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(240px,1fr));
    gap: 20px;
}
.menu-item {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform .2s;
}
.menu-item:hover {
    transform: translateY(-5px);
}
.menu-item h3 {
    margin-bottom: 10px;
    color: #d35400;
}
.price {
    font-weight: 700;
    color: #27ae60;
}
.reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 20px;
}
.review-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}
.stars {
    color: #f1c40f;
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
}
.hero {
    padding: 20px 0;
}
.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.slide {
    display: none;
}
.slide.active {
    display: block;
}
.slide img {
    width: 100%;
    display: block;
    border-radius: 10px;
}
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.7);
    border: none;
    font-size: 2rem;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 50%;
}
.prev:hover, .next:hover {
    background: rgba(255,255,255,1);
}
.prev { left: 10px; }
.next { right: 10px; }
@media (max-width: 600px) {
    nav ul { flex-direction: column; background: rgba(0,0,0,0.1); position: absolute; top: 60px; right: 20px; padding: 10px; border-radius: 5px; display: none; }
    nav ul.show { display: flex; }
    .menu-toggle { display: block; cursor: pointer; color: #fff; font-size: 1.5rem; }
}
