* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(90deg, #8B4545 0%, #6B3333 100%);
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.navbar-brand {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
}

.navbar-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.navbar-menu a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.navbar-menu a:hover {
    text-shadow: 0 0 10px rgba(255,255,255,0.8);
}

/* Stars decoration */
.stars {
    position: absolute;
    top: 20px;
    right: 50px;
    display: flex;
    gap: 15px;
}

.star {
    color: white;
    font-size: 2rem;
    animation: twinkle 2s infinite;
}

.star:nth-child(2) {
    animation-delay: 0.5s;
}

.star:nth-child(3) {
    animation-delay: 1s;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #8B4545 0%, #A65555 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 50px 50px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    width: 100%;
}

.hero-image {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-text {
    color: white;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.wave-bottom {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 80px;
    background: white;
    clip-path: ellipse(100% 100% at 50% 100%);
}

/* Menu Section */
.menu-section {
    background: linear-gradient(135deg, #E07B7B 0%, #D86A6A 100%);
    padding: 80px 50px;
    position: relative;
}

.menu-section h2 {
    text-align: center;
    color: white;
    font-size: 3rem;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-card {
    background: white;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s;
    cursor: pointer;
}

.menu-card:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.menu-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(139, 69, 69, 0.9);
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.price-badge {
    text-align: center;
    margin-top: 50px;
}

.price-badge button {
    background: linear-gradient(135deg, #FFAA66 0%, #FF9944 100%);
    color: white;
    border: none;
    padding: 20px 60px;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.price-badge button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #8B4545 0%, #6B3333 100%);
    padding: 80px 50px;
    color: white;
    position: relative;
}

.about-section h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-illustration {
    flex: 0 0 400px;
    position: relative;
}

.about-illustration img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.rating {
    font-size: 2.5rem;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255,215,0,0.5);
}

.about-stars {
    position: absolute;
    top: 30px;
    right: 100px;
    display: flex;
    gap: 20px;
}

.about-stars .star {
    font-size: 3rem;
}

/* Order Section */
.order-section {
    background: linear-gradient(135deg, #E07B7B 0%, #D86A6A 100%);
    padding: 80px 50px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.order-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    color: white;
}

.order-text {
    flex: 1;
}

.order-text h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.order-text h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: normal;
}

.order-box {
    background: white;
    color: #8B4545;
    padding: 30px 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: inline-block;
    margin-top: 20px;
}

.order-box h4 {
    font-size: 2.5rem;
    margin: 0;
}

.order-illustration {
    flex: 0 0 350px;
}

.order-illustration img {
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.wave-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
}

.wave {
    fill: white;
    opacity: 0.3;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .navbar-menu {
        gap: 15px;
        font-size: 0.8rem;
    }

    .hero-content {
        flex-direction: column;
        gap: 40px;
    }

    .hero-image {
        width: 300px;
        height: 300px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
        text-align: center;
    }

    .menu-section h2,
    .about-section h2,
    .order-text h2 {
        font-size: 2rem;
    }

    .about-content,
    .order-content {
        flex-direction: column;
    }

    .about-illustration,
    .order-illustration {
        flex: 1;
        max-width: 300px;
    }

    .stars {
        right: 20px;
        gap: 10px;
    }

    .star {
        font-size: 1.5rem;
    }
}