/* 
   FAHMI BO - GLOBAL STYLES
   Modern Traditional Culinary Aesthetic
*/

:root {
    --primary: #921c1c;      /* Deep Maroon */
    --primary-light: #b92a2a;
    --accent: #f5a623;       /* Warm Orange/Yellow */
    --text-dark: #2d1b1b;
    --text-light: #6b5c5c;
    --bg-cream: #fff9f0;
    --bg-white: #ffffff;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --shadow: 0 10px 30px rgba(146, 28, 28, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.accent-text {
    color: var(--primary);
    font-style: italic;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(146, 28, 28, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(146, 28, 28, 0.3);
}

.btn-primary-lg {
    background-color: var(--primary);
    color: white;
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-secondary-lg {
    background-color: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 16px 36px;
    font-size: 1rem;
    margin-left: 12px;
}

.btn-secondary-lg:hover {
    background-color: var(--primary);
    color: white;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    padding: 16px 32px;
}

/* NAVBAR */
.navbar {
    background-color: rgba(255, 249, 240, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(146, 28, 28, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-top {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--primary);
    letter-spacing: 1px;
}

.logo-bot {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    margin-top: -4px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

/* HERO SECTION */
.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    background: white;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(146, 28, 28, 0.05);
    margin-bottom: 24px;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-image {
    position: relative;
}

.main-photo {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transform: rotate(2deg);
    box-shadow: 0 30px 60px rgba(146, 28, 28, 0.15);
    transition: var(--transition);
}

.main-photo:hover {
    transform: rotate(0deg) scale(1.02);
}

.main-photo img {
    width: 100%;
    display: block;
}

.photo-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-decor {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #ffca7a);
    opacity: 0.15;
    filter: blur(60px);
}

.decor-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.decor-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    background: linear-gradient(135deg, var(--primary), #d84343);
}

/* SECTION HEADERS */
.section-tag {
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

/* MENU SECTION */
.menu-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.menu-card {
    background: var(--bg-cream);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    gap: 24px;
    padding: 24px;
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(146, 28, 28, 0.08);
}

.menu-card.featured {
    border: 2px solid var(--accent);
    background: #fffdf9;
}

.card-img {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.card-top h3 {
    font-size: 1.3rem;
}

.price {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.1rem;
}

.card-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 16px;
    flex: 1;
}

.btn-card {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-card:hover {
    padding-left: 8px;
}

/* OTHERS MENU */
.menu-others {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.others-card {
    background: var(--bg-cream);
    padding: 32px;
    border-radius: var(--radius-md);
}

.others-card h3 {
    margin-bottom: 24px;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
    padding-bottom: 4px;
}

.others-card ul {
    list-style: none;
}

.others-card li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dotted #ccc;
    font-weight: 600;
}

.others-card span {
    color: var(--primary);
    font-weight: 800;
}

/* PESAN SECTION */
.pesan-section {
    padding: 100px 0;
}

.pesan-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    background-color: var(--primary);
    color: white;
    padding: 80px;
    border-radius: var(--radius-lg);
}

.pesan-text h2 {
    font-size: 2.8rem;
    margin-bottom: 24px;
}

.pesan-text p {
    margin-bottom: 40px;
    opacity: 0.9;
}

.whatsapp-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.wa-icon {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.wa-details {
    flex: 1;
}

.wa-details .label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.7;
}

.wa-details .number {
    font-size: 1.4rem;
    font-weight: 800;
}

.pesan-image img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* FOOTER */
footer {
    background-color: var(--text-dark);
    color: white;
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    margin-bottom: 20px;
}

.footer-brand p {
    opacity: 0.6;
}

.footer-links h4, .footer-info h4 {
    margin-bottom: 24px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-links a {
    display: block;
    color: white;
    text-decoration: none;
    opacity: 0.6;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-info p {
    opacity: 0.6;
    margin-bottom: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.4;
}

/* FLOATING WA */
.float-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    padding: 12px 24px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.float-wa:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.float-wa img {
    width: 25px;
    height: 25px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .pesan-content {
        grid-template-columns: 1fr;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-secondary-lg {
        margin-left: 0;
    }
    
    .hero-text p {
        margin: 0 auto 40px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-others {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
    }
    
    .logo-top {
        font-size: 1rem;
    }
}
