:root {
    --bg-primary: #ffffff;
    --bg-secondary: #fdf8f0;
    --text-primary: #2c2c2c;
    --text-secondary: #5a5a5a;
    --accent: #b87b4a;
    --accent-dark: #8b5a34;
    --accent-light: #e8c9a7;
    --card-bg: #ffffff;
    --border-color: #f0e5dc;
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

body.dark {
    --bg-primary: #121212;
    --bg-secondary: #1e1e1e;
    --text-primary: #f0f0f0;
    --text-secondary: #bbbbbb;
    --card-bg: #2a2a2a;
    --border-color: #333;
    --shadow: 0 10px 30px rgba(0,0,0,0.3);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background 0.3s, color 0.2s;
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

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

.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}
.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent), #e2a56a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Theme Toggle */
.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    background: var(--card-bg);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    color: var(--accent);
    font-size: 1.2rem;
    transition: var(--transition);
}
.theme-toggle:hover {
    transform: scale(1.05);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: 0.2s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20b859;
}

/* Header */
header {
    background: rgba(var(--bg-primary), 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}
.logo {
    font-size: 1.8rem;
    font-weight: 800;
}
.logo span {
    color: var(--accent);
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
}
.nav-links a:hover {
    color: var(--accent);
}
.burger {
    display: none;
    cursor: pointer;
}
.burger div {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    margin: 6px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: -1;
}
.hero-content {
    z-index: 1;
    width: 100%;
}
.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}
.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}
.btn-primary {
    background: var(--accent);
    color: white;
}
.btn-primary:hover {
    background: transparent;
    border-color: var(--accent);
    color: var(--accent);
}
.btn-outline {
    background: transparent;
    border-color: white;
    color: white;
}
.btn-outline:hover {
    background: white;
    color: var(--accent);
    border-color: white;
}
.btn-block {
    width: 100%;
    justify-content: center;
}

/* Special Bar */
.special-bar {
    background: var(--accent);
    color: white;
    padding: 12px;
    text-align: center;
    font-weight: 500;
}
.special-bar i {
    margin-right: 8px;
}
#countdown {
    background: rgba(0,0,0,0.3);
    padding: 4px 12px;
    border-radius: 30px;
    margin-left: 15px;
    font-weight: bold;
}

/* Filters */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.filter-btn {
    background: transparent;
    border: 1px solid var(--accent);
    padding: 8px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
    background: var(--accent);
    color: white;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}
.menu-item {
    background: var(--card-bg);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}
.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}
.menu-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s;
}
.menu-item:hover img {
    transform: scale(1.03);
}
.menu-item h3, .menu-item p, .price {
    padding: 0 20px;
}
.menu-item h3 {
    margin-top: 18px;
    font-size: 1.4rem;
}
.price {
    display: block;
    font-weight: 800;
    color: var(--accent);
    font-size: 1.3rem;
    margin: 10px 0 20px;
}

/* About */
.about-flex {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}
.about-text, .about-image {
    flex: 1;
}
.about-image {
    position: relative;
}
.about-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow);
}
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: white;
    padding: 15px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
}
.experience-badge span {
    font-size: 1.8rem;
    font-weight: 800;
    display: block;
}
.signature-chef {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
    background: var(--bg-secondary);
    padding: 15px;
    border-radius: 60px;
}
.signature-chef img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
}
.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.social-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}
.social-links a:hover {
    color: var(--accent);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.gallery-grid a {
    display: block;
    border-radius: 20px;
    overflow: hidden;
}
.gallery-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.5s;
}
.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Testimonials Swiper */
.testimonials {
    background: var(--bg-secondary);
}
.testimonial-swiper {
    padding: 20px 0 50px;
}
.testimonial-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    margin: 20px;
}
.testimonial-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}
.testimonial-card h4 {
    margin: 10px 0 5px;
}
.stars {
    color: #ffc107;
    margin: 10px 0;
}
.swiper-pagination-bullet-active {
    background: var(--accent) !important;
}

/* Reservation Card */
.reservation-card {
    display: flex;
    flex-wrap: wrap;
    background: var(--card-bg);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.reservation-left, .reservation-right {
    flex: 1;
    padding: 50px;
}
.reservation-left {
    background: var(--accent);
    color: white;
}
.reservation-left ul {
    list-style: none;
    margin: 20px 0;
}
.reservation-left li {
    margin: 12px 0;
}
.opening-hours {
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 20px;
}
.form-group {
    margin-bottom: 20px;
}
.form-row {
    display: flex;
    gap: 15px;
}
.form-row .form-group {
    flex: 1;
}
input, textarea, select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: 40px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}
textarea {
    border-radius: 25px;
    resize: vertical;
}
input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(184,123,74,0.2);
}

/* Map */
.map-section iframe {
    display: block;
    filter: grayscale(20%);
}

/* Footer */
footer {
    background: var(--bg-secondary);
    padding: 60px 0 20px;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}
.footer-col p {
    margin-bottom: 10px;
}
.social-icons a {
    display: inline-block;
    margin-right: 15px;
    font-size: 1.5rem;
    color: var(--text-primary);
    transition: var(--transition);
}
.social-icons a:hover {
    color: var(--accent);
    transform: translateY(-3px);
}
.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}
.footer-bottom a {
    color: var(--accent);
    text-decoration: none;
}

/* Modal for menu item detail (optional) */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}
.modal-content {
    background: var(--bg-primary);
    max-width: 500px;
    padding: 30px;
    border-radius: 30px;
    text-align: center;
    position: relative;
}
.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
    .section-padding { padding: 70px 0; }
    .hero-content h1 { font-size: 3.5rem; }
}
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--bg-primary);
        width: 75%;
        height: calc(100vh - 80px);
        padding: 40px;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: 0.3s;
        z-index: 1000;
    }
    .nav-links.active {
        right: 0;
    }
    .burger {
        display: block;
    }
    .hero-content h1 { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .reservation-left, .reservation-right { padding: 30px; }
    .form-row { flex-direction: column; gap: 0; }
    .about-flex { flex-direction: column; }
    .hero-buttons { flex-direction: column; align-items: center; }
}
