/* --- 1. VARIABLE & RESET --- */
:root {
    --primary: #E07A5F; /* Terracotta */
    --secondary: #3D405B; /* Dark Blue/Green */
    --accent: #F2CC8F; /* Soft Gold */
    --bg-light: #F4F1DE; /* Cream */
    --white: #ffffff;
    --text-dark: #333333;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- 2. NAVBAR --- */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 700;
}

.nav-links { display: flex; gap: 2rem; }
.nav-links a {
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    width: 0; height: 2px;
    background: var(--primary);
    position: absolute;
    bottom: -5px; left: 0;
    transition: 0.3s;
}

.nav-links a:hover::after { width: 100%; }

.cta-btn {
    background-color: var(--primary);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}
.cta-btn:hover { background-color: #c45d42; color: white;}

.hamburger { display: none; font-size: 1.5rem; cursor: pointer; }

/* --- 3. FLOATING BUTTONS --- */
.floating-wa, .floating-ig {
    position: fixed;
    right: 30px;
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: all 0.3s ease;
}

.floating-wa { bottom: 30px; background-color: #25d366; }
.floating-wa:hover { background-color: #128c7e; transform: scale(1.05); }

.floating-ig { 
    bottom: 95px; 
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.floating-ig:hover { transform: scale(1.05); filter: brightness(1.1); }

/* --- 4. HERO SECTION --- */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('./img.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero-content p {
    color: #eee;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- 5. ABOUT & MENU --- */
.section-padding { padding: 5rem 10%; }
.about-container { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-img img { width: 100%; border-radius: 15px; box-shadow: 10px 10px 0px var(--primary); }
.section-title { font-family: var(--font-heading); font-size: 2.5rem; color: var(--secondary); margin-bottom: 1rem; }
.section-subtitle { color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; }

.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; }

.food-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.food-img-container { width: 100%; height: 220px; overflow: hidden; background-color: #eee; }
.food-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.food-info { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.food-title { font-size: 1.2rem; font-weight: 600; color: var(--secondary); }
.food-desc { font-size: 0.9rem; color: #666; margin: 0.5rem 0; }
.food-price { color: var(--primary); font-weight: 700; font-size: 1.1rem; }

.order-link {
    display: block; margin-top: 1rem; text-align: center;
    border: 1px solid var(--primary); color: var(--primary);
    padding: 0.5rem; border-radius: 5px;
}
.order-link:hover { background: var(--primary); color: var(--white); }

/* --- 6. CONTACT & FOOTER --- */
.contact { background-color: var(--secondary); color: var(--white); }
.contact .section-title { color: var(--white); }
.contact-wrapper { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; }
.contact-info, .contact-form { flex: 1; min-width: 300px; }
.contact-item { margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem; }
.contact-item i { font-size: 1.2rem; color: var(--primary); }

form input, form textarea { width: 100%; padding: 1rem; margin-bottom: 1rem; border: none; border-radius: 5px; font-family: var(--font-body); }
form button { background: var(--primary); color: var(--white); border: none; padding: 1rem 2rem; border-radius: 5px; cursor: pointer; font-weight: 600; width: 100%; }

footer { text-align: center; padding: 2rem; background: #2b2e44; color: #888; font-size: 0.9rem; }

/* --- 7. RESPONSIVE --- */
@media (max-width: 768px) {
    .nav-links {
        display: none; position: absolute; top: 70px; right: 0;
        background: var(--white); width: 100%; flex-direction: column;
        padding: 2rem; box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    .nav-links.active { display: flex; }
    .hamburger { display: block; }
    .about-container { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2.5rem; }
    .floating-wa span, .floating-ig span { display: none; }
    .floating-wa, .floating-ig { padding: 15px; border-radius: 50%; right: 20px; }
    .floating-wa { bottom: 20px; }
    .floating-ig { bottom: 85px; }
}