* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif, Arial;
}

body {
    background-color: #1e1b18;
    color: #f4efe6;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: #292521;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
    color: #d96c4a;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav ul li a {
    color: #f4efe6;
    text-decoration: none;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: #1e1b18;
    background-color: #d96c4a;
}

section {
    padding: 60px 8%;
    flex: 1;
}

h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: #d96c4a;
    letter-spacing: 2px;
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text { flex: 1; }

.hero-text .subtitle {
    letter-spacing: 4px;
    color: #b5aba0;
    font-size: 14px;
}

.hero-text h1 {
    font-size: 56px;
    color: #d96c4a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text .description {
    color: #d6cec4;
    text-align: justify;
}

/* Tombol di Home */
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-primary {
    background-color: #d96c4a;
    color: #1e1b18;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-primary:hover {
    background-color: #ba5a3b;
    transform: translateY(-3px);
}

.btn-secondary {
    border: 2px solid #d96c4a;
    color: #d96c4a;
    padding: 10px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #d96c4a;
    color: #1e1b18;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px dashed #4a423b;
}

.stat-item {
    color: #d6cec4;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-item span {
    display: block;
    font-size: 28px;
    color: #d96c4a;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
}

.hero-image {
    flex: 1; 
    display: flex; 
    justify-content: center; 
}

.video-wrapper {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.video-wrapper video {
    width: 100%;
    max-width: 450px; 
    aspect-ratio: 16 / 9; /* Memotong video agar persegi panjang */
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    display: block;
}

.promo-section { 
    text-align: center; 
    max-width: 1200px;
    margin: 0 auto;
}

.page-subtitle {
    color: #a69c91;
    font-size: 16px;
    margin-top: -20px;
    margin-bottom: 40px;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    justify-content: center;
}

@media (max-width: 992px) {
    .promo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .promo-grid {
        grid-template-columns: 1fr;
    }
}

.promo-card {
    background-color: #332d28;
    border: 1px dashed #d96c4a;
    border-radius: 16px;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-style 0.3s ease;
    text-align: center;
}

.promo-card:hover {
    transform: translateY(-8px);
    border-style: solid;
    box-shadow: 0 10px 25px rgba(217, 108, 74, 0.15);
}

.promo-card.featured {
    border: 2px solid #d96c4a;
    background-color: #3d2b22;
}

.badge {
    align-self: center;
    background-color: #292521;
    color: #c2b8ad;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 15px;
    display: inline-block;
}

.badge.highlight {
    background-color: #d96c4a;
    color: #1e1b18;
    font-weight: bold;
}

.card-title {
    font-size: 22px;
    color: #f4efe6;
    margin-bottom: 5px;
}

.tagline {
    color: #d96c4a;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.promo-price { 
    font-size: 26px; 
    font-weight: bold;
    color: #f4efe6;
    margin-bottom: 5px; 
}

.promo-price span {
    font-size: 14px;
    color: #a69c91;
    font-weight: normal;
}

.promo-min {
    display: block;
    font-size: 13px;
    color: #948a7e;
    margin-bottom: 25px;
}

.features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    flex: 1;
}

.features li {
    font-size: 14px;
    color: #d6cec4;
    margin-bottom: 10px;
}

.btn-promo {
    background-color: transparent;
    color: #d96c4a;
    border: 1px solid #d96c4a;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    width: 100%;
}

.btn-promo:hover {
    background-color: #d96c4a;
    color: #1e1b18;
}

.btn-highlight {
    background-color: #d96c4a;
    color: #1e1b18;
}

.btn-highlight:hover {
    background-color: #ba5a3b; 
}

.menu-section {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.regional-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 1px solid #d96c4a;
    color: #d96c4a;
    padding: 8px 24px;
    font-size: 15px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover, .tab-btn.active {
    background-color: #d96c4a;
    color: #1e1b18;
    font-weight: bold;
}

.menu-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.menu-card {
    background-color: #332d28;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s, opacity 0.3s;
    cursor: pointer;
    border: 1px solid transparent;
    width: 280px; 
}

.menu-card:hover {
    transform: translateY(-8px);
    border: 1px solid #d96c4a;
}

.img-wrapper {
    overflow: hidden;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border: 4px solid #d96c4a;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .img-wrapper img {
    transform: scale(1.15);
}

.menu-card h3 {
    color: #f4efe6;
    font-size: 20px;
    margin-bottom: 5px;
}

.menu-card .price {
    color: #d96c4a;
    font-weight: bold;
    font-size: 16px;
}

.modal {
    display: none; 
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); 
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-content {
    background-color: #292521;
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    width: 90%;
    max-width: 420px;
    position: relative;
    border: 1px solid #d96c4a;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #d6cec4;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #d96c4a;
}

.modal-content img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #d96c4a;
    margin-bottom: 20px;
}

.modal-price {
    color: #d96c4a;
    font-weight: bold;
    font-size: 24px;
    margin: 10px 0;
}

.modal-desc {
    color: #d6cec4;
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-pesan-wa {
    display: inline-block;
    background-color: #25D366; 
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, filter 0.3s;
}

.btn-pesan-wa:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

/* --- CONTACT SECTION --- */
.contact-section {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
    flex-wrap: wrap; 
    text-align: left;
}

.contact-info-card, .contact-form-card {
    background-color: #332d28;
    padding: 40px;
    border-radius: 16px;
    flex: 1;
    min-width: 320px;
    border: 1px dashed #d96c4a;
}

.contact-info-card h3 {
    color: #d96c4a;
    font-size: 22px;
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.info-item .icon {
    font-size: 24px;
}

.info-item p {
    font-size: 16px;
    color: #d6cec4;
}

.social-buttons {
    display: flex;
    gap: 15px;
}

.btn-social {
    padding: 12px 15px;
    border-radius: 8px;
    text-decoration: none;
    color: #f4efe6;
    font-weight: bold;
    text-align: center;
    flex: 1;
    transition: transform 0.3s, filter 0.3s;
}

.btn-social.wa {
    background-color: #25D366; 
}

.btn-social.ig {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
}

.btn-social:hover {
    transform: translateY(-5px);
    filter: brightness(1.1);
}

.contact-form-card h3 {
    color: #d96c4a;
    font-size: 22px;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 15px;
}

.input-group input, .input-group textarea {
    width: 100%;
    padding: 15px;
    background-color: #292521;
    border: 1px solid #4a423b;
    color: #f4efe6;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.input-group input:focus, .input-group textarea:focus {
    outline: none;
    border-color: #d96c4a;
}

.btn-submit {
    background-color: #d96c4a;
    color: #1e1b18;
    border: none;
    padding: 15px;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #ba5a3b;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #171412;
    font-size: 14px;
    color: #8c8276;
}