/* --- CSS VARIABLES & RESET --- */
:root {
    /* Color Palette */
    --primary: #D35400;      /* Warm burnt orange, appetizing */
    --primary-light: #E67E22;
    --primary-dark: #BA4A00;
    --secondary: #27AE60;    /* Tropical green */
    --accent: #F1C40F;       /* Golden yellow */
    
    --bg-light: #FAFAFA;
    --bg-dark: #121212;
    --surface: #FFFFFF;
    
    --text-main: #2C3E50;
    --text-muted: #7F8C8D;
    --text-light: #ECF0F1;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Effects */
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    --shadow-hover: 0 15px 30px rgba(211, 84, 0, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: 1px solid rgba(255, 255, 255, 0.3);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

/* --- BUTTONS --- */
.btn-primary, .btn-primary-small, .btn-secondary, .btn-text {
    display: inline-block;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    border: none;
    border-radius: 50px;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 4px 15px rgba(211, 84, 0, 0.3);
    font-size: 1.1rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-primary-small {
    padding: 0.6rem 1.5rem;
    background: var(--primary);
    color: white;
}

.btn-primary-small:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    font-size: 1.1rem;
}

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

.btn-text {
    padding: 0.5rem 0;
    color: var(--primary);
    font-size: 1.1rem;
    border-radius: 0;
    position: relative;
}

.btn-text i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.btn-text:hover i {
    transform: translateX(5px);
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.btn-text:hover::after {
    width: 100%;
}

.full-width {
    width: 100%;
}

/* --- NAVIGATION --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links li a {
    color: var(--text-main);
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary);
    font-weight: 400;
    font-style: italic;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links li a {
    color: white;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.navbar.scrolled .nav-links li a {
    color: var(--text-main);
}

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

.nav-links li a:hover:not(.btn-primary-small)::after {
    width: 100%;
}

.navbar.scrolled .btn-primary-small {
    color: white; /* Keep button text white even when scrolled */
}

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

.navbar.scrolled .hamburger {
    color: var(--text-main);
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('assets/images/user_hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 5rem;
}

.hero-content {
    max-width: 800px;
    padding: 0 1rem;
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--primary);
    font-style: italic;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* --- GENERAL SECTIONS --- */
section {
    padding: 6rem 0;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-grid.row-reverse {
    direction: ltr; /* Ensure base dir is ltr */
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.subtitle {
    font-family: var(--font-body);
    color: var(--primary);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

/* --- ABOUT SECTION --- */
.about {
    background-color: var(--surface);
}

.about-text h2 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top right, rgba(211,84,0,0.2), transparent);
    z-index: 1;
    pointer-events: none;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

/* --- MENU SECTION --- */
.menu {
    background-color: var(--bg-light);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 2px solid var(--text-muted);
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.tab-btn:hover, .tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.menu-category {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.menu-category.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--surface);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
}

.menu-highlight img {
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.badge {
    display: inline-block;
    background: var(--accent);
    color: var(--text-main);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.highlight-info h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.highlight-info p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

.card {
    background: var(--surface);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(211,84,0,0.2);
}

.card.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: var(--glass-border);
}

.item-header h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.menu-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.category-note {
    text-align: center;
    color: var(--primary);
    font-style: italic;
    margin-bottom: 2rem;
}

/* --- RESERVATIONS SECTION --- */
.reservations {
    background: linear-gradient(rgba(250, 250, 250, 0.9), rgba(250, 250, 250, 0.9)), url('assets/images/user_hero.jpg') center/cover fixed;
}

.reservation-info h2 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.reservation-info p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-main);
}

.detail-item i {
    color: var(--primary);
    font-size: 1.5rem;
    width: 25px;
    text-align: center;
}

.reservation-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.form-group input, 
.form-group textarea {
    padding: 1rem;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--bg-light);
    transition: var(--transition);
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(211,84,0,0.1);
}

.form-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: -0.5rem;
}

/* --- FOOTER --- */
footer {
    background: var(--bg-dark);
    padding: 4rem 0 2rem;
    color: var(--text-light);
}

footer h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

footer h2 span {
    color: var(--primary);
    font-style: italic;
    font-weight: 400;
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- FLOATING ACTION BUTTONS --- */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: var(--transition);
    cursor: pointer;
}

.fab:hover {
    transform: scale(1.1);
}

.fab.whatsapp {
    background-color: #25D366;
}

.fab.messenger {
    background: linear-gradient(45deg, #00B2FF, #006AFF);
}


/* --- ANIMATIONS (FADE UP) --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .section-grid,
    .menu-highlight {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .section-grid.row-reverse .about-text {
        order: 2;
    }
    .section-grid.row-reverse .about-image {
        order: 1;
    }

    .hero h1 {
        font-size: 3.5rem;
    }
    
    .menu-highlight img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--surface);
        flex-direction: column;
        justify-content: center;
        transition: 0.5s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li a {
        color: var(--text-main);
        font-size: 1.2rem;
    }
    
    .nav-links li a.btn-primary-small {
        color: white;
    }

    .hamburger {
        display: block;
        z-index: 1001; /* Above mobile menu */
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }
    
    .fab {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    .fab-container {
        bottom: 20px;
        right: 20px;
    }
}
