*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
body{
    font-family: Arial, Helvetica, sans-serif;
    line-height:1.6;
    color:#333;

}
.container{
    max-width: 1200px;
    margin:0 auto;
    padding:0 20px;
}
.header{
    background-color: #2c3e50;
    color:white;
    padding:1rem 0;
    position:fixed;
    top:0;
    width:100%;
    z-index: 1000;
}
.navbar{
    display:flex;
    justify-content: space-between;
    align-items: center;
}
.logo h1{
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.2rem;
}
.logo tagline{
    font-size: 0.9rem;
    opacity:0.8;
}
.nav-links{
    display: flex;
    list-style: none;
    gap:2rem;
}
.nav-links a{
    color:white;
    text-decoration: none;
    padding:0.5rem;
    border-radius:4px;
    transition:background-color 0.3s ease;

}
.nav-links a:hover{
    background-color: rgba(255, 255,255, 0.1);
}
.hero{
    height:100vh;
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url("https://www.theluxurysignature.com/wp-content/uploads/2016/10/Bali-Restaurant-Merah-Putih-Leggett-1-1140x691.jpg")center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color:white;
}
.hero-content h2{
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
}
.hero-content p{
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}
.hero-buttons{
    display:flex;
    gap:1rem;
    justify-content: center;
}
.btn{
    padding:1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    display:inline-block;
}
.btn.btn-primary{
    background-color: #e74c3c;
    color:white;
}
.btn.btn-primary:hover{
    background-color: #c0392b;
    transform: translateY(-2px);
}
.btn.btn-secondary{
    background-color:transparent;
    color:white;
    border:2px solid white;
}
.btn.btn-secondary:hover{
    background-color: white;
    color:#2c3e50;
    transform: translateY(-2px);
}
.menu{
    padding:5 rem 0;
    background-color: #f8f9fa;   
}
.section-title{
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color:#2c3e50;
}
.section-subtitle{
    text-align: center;
    font-size: 1.1rem;
    color:#666;
    margin-bottom: 3rem;

}
.menu-category{
    margin-bottom: 3rem;
}
.menu-category h3{
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color:#2c3e50;
    border-bottom: 2px solid #e74c3c;
}
.menu-items{
    display:grid;
    gap: 1.5rem;
}
.menu-item{
    display: flex;
    flex: 100%;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0, 0.1);
    transition:transform 0.3s ease;
}
.menu-item:hover{
    transform: translateY(-2px);
}
.menu-item-info h4{
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color:#2c3e50;    
}
.menu-item-info p{
    color:#666;
    line-height: 1.4;
}
.price{
    color:#e74c3c;
    font-size: 1.3rem;
    font-weight: bold;
}
.about{
    padding:5rem 0;
    background-color: white;

}
.about-content{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:3rem;
    align-items: center;
}
.about-text h3{
    font-size: 2rem;
    margin-bottom: 1rem;
    color:#2c3e50;

}
.about-text p{
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}
.about-image img{
    width:100%;
    height:400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0,0.1);
    
}
.contact{
    padding:3rem;
    background-color: #f8f9fa;
}
.contact-content{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:3rem;
}
.contact-info h3,.contact-form h3{
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color:#2c3e50;
}
.contact-item{
    margin-bottom: 1rem;
}
.contact-item strong{
    display:block;
    margin-bottom: 0.5rem;
    color:#2c3e50;
}
.form-group{
    margin-bottom: 1.5rem;
}
.form-group label{
    display:block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color:#2c3e50;
}
.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:0.75rem;
    border:2px solid #ddd;
    border-radius:5px;
    font-size:1rem;
    transition:border-color 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    outline: none;
    border-color: #e74c3c;
}
:root{
    --primary-color:#e74c3c;
    --secondary-color:#2c3e50;
    --accent-color:#3498db;
    --light-bg:#f8f9fa;
    --dark-text:#333;
    --light-text:#666;
    --border-radius:8px;
    --shadow:0 4px 15px rgba(0,0,0,0.1);
    --transition:all 0.3s ease;
}
.btn-primary{
    background-color: var(--primary-color);
    color: white;
    transition:var(--transition);
}
.section-title{
    color:var(--secondary-color);
}
.menu-item{
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}
@media (max-width:768px){
    .hero-content h2{
        font-size:2.5rem;
    }
    .hero-buttons{
        flex-direction: column;
        align-items: center;
    }
    .btn{
        width:80%;
        text-align:center;
    }
    .about-content,.contact-content{
        grid-template-columns:1fr;
        gap:2rem;
    }
    .navbar{
        flex-direction:column;
        gap:1rem;
    }
    .nav-links{
        gap:1rem;
    }
}
@media(maz-width:480px){
    .hero-content h2{
        font-size:2rem;
    }
    .container{
        padding:0 15px;

    }
    .nav-links{
        flex-direction: column;
        gap:0.5rem;
    }
}
@keyframes fadeInUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}
@keyframes fadeInLeft{
    from{
        opacity:0;
        transform:translateY(-50px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}
.hero-content{
    animation:fadeInUp 1s ease-out;
}
.menu-item{
    animation:fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}
.menu-item:nth-child(1){animation-delay: 0.1s;}
.menu-item:nth-child(2){animation-delay: 0.2s;}
.menu-item:nth-child(3){animation-delay: 0.3s;}
 
.about-image{
    animation:fadeInUp 0.8s ease-out 0.3s both;
}
.section-title{
    opacity:0;
    transform:translateY(20px);
    transition:all 0.6s ease;
}
.section-title.animate{
    opacity: 1;
    transform:translateY(0);
}
.footer{
    background-color: var(--secondary-color);
    color:white;
    padding:3rem 0rem 1rem;
    margin-top: 5rem;
}
.footer-content{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:2rem;
    margin-bottom: 2rem;
}
.footer-section h3, .footer-section h4{
    margin-bottom: 1rem;
    color:white;
}
.footer-section ul{
    list-style: none;
}
.footer-section ul li{
    margin-bottom: 0.5rem;
}
.footer-section a{
    color:#bdc3c7;
    text-decoration: none;
    transition: var(--transition);
}
.footer-section a:hover{
    color: var(--primary-color);
}
.social-links{
    display: flex;
    gap:1rem;   
}
.social-link{
    padding:0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: var(--transition);
}
.social-link:hover{
    background-color: var(--primary-color);
    color:white;
}
.footer-bottom{
    text-align: center;
    padding-top: 2rem;
    border:1px solid #34495e;
    color:#bdc3c7;
}