:root {
    --bg-color: #121212;
    --card-bg: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: #aaaaaa;
    --accent-red: #ff2a2a;
    --accent-gold: #fbc02d;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

/* Typography Helpers */
.text-gold { color: var(--accent-gold); }
.text-white { color: var(--text-primary); }
.mt-4 { margin-top: 1.5rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--accent-red);
    color: white;
}

.btn-primary:hover {
    background-color: #d81b1b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 42, 42, 0.4);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 700;
}

.logo i {
    color: var(--accent-gold);
    font-size: 1.5rem;
}

.logo span span {
    color: var(--accent-red);
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.region-select {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-secondary);
    padding: 5px 10px;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    cursor: pointer;
    outline: none;
}

.region-select option {
    background: var(--bg-color);
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 5% 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251,192,45,0.15) 0%, rgba(18,18,18,0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-desc {
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.reviews {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--bg-color);
    margin-left: -15px;
}
.avatars img:first-child { margin-left: 0; }

.review-text {
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
}

.review-text strong {
    color: var(--accent-red);
}

/* Hero Visual (3D & Animated) */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    perspective: 1000px;
}

.plate-container {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

.splash-bg {
    position: absolute;
    width: 120%;
    height: 120%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path fill="%23fbc02d" d="M45.7,-76.3C58.9,-69.3,69.1,-55.3,77.3,-40.5C85.5,-25.7,91.7,-10.1,89.5,4.6C87.3,19.3,76.6,33.1,65.3,44.7C54,56.3,42.1,65.7,28.3,72.4C14.5,79.1,-1.2,83.1,-16.8,81.4C-32.4,79.7,-47.9,72.3,-60.8,61.1C-73.7,49.9,-84,34.9,-88.5,18.4C-93,1.9,-91.7,-16.1,-83.4,-30.9C-75.1,-45.7,-59.8,-57.3,-44.6,-63.5C-29.4,-69.7,-14.7,-70.5,1.1,-72C16.9,-73.5,32.5,-83.3,45.7,-76.3Z" transform="translate(100 100)"/></svg>') no-repeat center center;
    background-size: contain;
    z-index: 1;
    opacity: 0.8;
}

.main-plate {
    width: 90%;
    height: 90%;
    border-radius: 50%;
    object-fit: cover;
    z-index: 2;
    box-shadow: 0 30px 50px rgba(0,0,0,0.5);
    border: 15px solid #111;
}

.floating-item {
    position: absolute;
    z-index: 3;
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.5));
}

.leaf-1 { width: 80px; top: 10%; left: 10%; }
.leaf-2 { width: 60px; bottom: 20%; right: 10%; transform: rotate(45deg); }
.ingredient-1 { width: 70px; top: 20%; right: 5%; }


/* Popular Dishes */
.popular-dishes {
    padding: 80px 5%;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
}

.dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 25px;
    height: 4px;
    background: var(--text-secondary);
    border-radius: 2px;
}

.dot.active {
    background: var(--accent-gold);
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.dish-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 20px;
    position: relative;
    transform-style: preserve-3d;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: box-shadow 0.3s ease;
}

.dish-card:hover {
    box-shadow: 0 15px 40px rgba(251, 192, 45, 0.1);
}

.discount {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-red);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
    transform: translateZ(20px);
}

.favorite-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    transform: translateZ(20px);
}

.favorite-btn:hover {
    color: var(--accent-red);
}

.dish-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    margin: 10px 0 20px;
    transform: translateZ(40px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.rating {
    color: var(--accent-gold);
    font-size: 0.8rem;
    margin-bottom: 10px;
    transform: translateZ(20px);
}

.dish-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    transform: translateZ(20px);
}

.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateZ(20px);
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.add-btn {
    background: var(--accent-gold);
    color: #000;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.2s;
}

.add-btn:hover {
    transform: scale(1.1);
}

/* About Section */
.about-section {
    display: flex;
    align-items: center;
    padding: 80px 5%;
    gap: 50px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.about-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.swirl-container {
    width: 400px;
    height: 400px;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    mask-image: radial-gradient(white, black);
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    transform-style: preserve-3d;
}

.swirl-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2);
}

.swirl-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 30%, rgba(18,18,18,1) 70%);
}

@media (max-width: 900px) {
    .hero, .about-section {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }
    .hero-title { font-size: 3rem; }
    .hero-desc { margin: 0 auto 30px; }
    .reviews { justify-content: center; }
    .plate-container { width: 300px; height: 300px; margin-top: 50px; }
    .about-visual { margin-top: 50px; }
    .swirl-container { width: 300px; height: 300px; }
}
