:root {
    /* Primary Colors */
    --primary: #d4a855;
    --primary-dark: #b8923c;
    --primary-light: #f0d490;
    
    /* Secondary Colors */
    --secondary: #1a1a2e;
    --secondary-light: #2a2a4e;
    
    /* Accent Colors */
    --accent: #ff6b35;
    --accent-light: #ff8c5a;
    
    /* Neutral Colors */
    --white: #ffffff;
    --black: #000000;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #d4a855 0%, #f0d490 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #2a2a4e 100%);
    --gradient-hero: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
    --gradient-gold: linear-gradient(135deg, #d4a855 0%, #b8923c 50%, #d4a855 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.25);
    --shadow-gold: 0 4px 20px rgba(212, 168, 85, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50%;
    
    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

/* ===== Reset & Base Styles ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--secondary);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ===== Preloader ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.spoon,
.fork {
    width: 30px;
    height: 80px;
    background: var(--primary);
    border-radius: 15px 15px 5px 5px;
    animation: bounce 0.6s ease-in-out infinite alternate;
}

.fork {
    animation-delay: 0.3s;
}

@keyframes bounce {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-20px);
    }
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-icon {
    font-size: 2rem;
    animation: wobble 2s ease-in-out infinite;
}

@keyframes wobble {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

.logo-text {
    font-family: var(--font-heading);
}

.logo-text .highlight {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    position: relative;
    font-weight: 500;
    padding: 5px 0;
    color: var(--gray-300);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
}

.btn-call {
    background: var(--gradient-gold);
    color: var(--secondary);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px var(--primary), 0 0 10px var(--primary);
    }
    50% {
        box-shadow: 0 0 20px var(--primary), 0 0 30px var(--primary);
    }
}

.btn-call:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 60px 60px;
    position: relative;
    overflow: hidden;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    font-size: 3rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.el-1 { top: 10%; left: 5%; animation-delay: 0s; }
.el-2 { top: 20%; right: 10%; animation-delay: 1s; }
.el-3 { bottom: 30%; left: 15%; animation-delay: 2s; }
.el-4 { bottom: 20%; right: 20%; animation-delay: 3s; }
.el-5 { top: 50%; left: 50%; animation-delay: 4s; }

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

.hero-content {
    flex: 1;
    max-width: 650px;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 85, 0.1);
    border: 1px solid rgba(212, 168, 85, 0.3);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.badge-icon {
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--gray-400);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

.stat-icon {
    font-size: 1.2rem;
}

.stat-plus {
    font-size: 1.5rem;
    color: var(--primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--secondary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--secondary);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.image-wrapper {
    position: relative;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 168, 85, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.7;
    }
}

.plate-decoration {
    position: relative;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary);
    box-shadow: var(--shadow-xl);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: rotate-slow 20s linear infinite;
}

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--secondary);
    padding: 12px 20px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
}

.badge-1 {
    top: 20px;
    left: -30px;
}

.badge-2 {
    bottom: 50px;
    right: -40px;
    animation-delay: 2s;
}

.floating-badge .emoji {
    font-size: 1.3rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce-scroll 2s ease-in-out infinite;
}

@keyframes bounce-scroll {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--primary);
    border-radius: 2px;
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(8px);
        opacity: 0;
    }
}

.scroll-indicator span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ===== Animations for Elements ===== */
.animate-fade-up {
    animation: fadeUp 1s ease forwards;
}

.animate-fade-down {
    animation: fadeDown 1s ease forwards;
}

.animate-fade-left {
    animation: fadeLeft 1s ease forwards;
}

.delay-1 { animation-delay: 0.2s; opacity: 0; }
.delay-2 { animation-delay: 0.4s; opacity: 0; }
.delay-3 { animation-delay: 0.6s; opacity: 0; }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== Scroll Animation Classes ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Offers Section ===== */
.offers-section {
    padding: 100px 60px;
    background: var(--secondary-light);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(212, 168, 85, 0.1);
    border: 1px solid rgba(212, 168, 85, 0.3);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--gray-400);
    font-size: 1.1rem;
}

.offers-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.offer-card {
    background: var(--secondary);
    border-radius: var(--radius-lg);
    padding: 35px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.offer-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent);
    color: var(--white);
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.offer-ribbon.hot {
    background: #ff4444;
}

.offer-ribbon.new {
    background: #44bb44;
}

.offer-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: bounce-icon 2s ease-in-out infinite;
}

@keyframes bounce-icon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.offer-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.offer-discount {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 15px;
}

.discount-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

.discount-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-400);
}

.offer-description {
    color: var(--gray-400);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.offer-code {
    background: rgba(212, 168, 85, 0.1);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offer-code span {
    color: var(--gray-500);
    font-size: 0.85rem;
}

.offer-code strong {
    color: var(--primary);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.offer-validity {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
    font-size: 0.85rem;
}

/* Festival Offer Special Styling */
.festival-offer {
    background: linear-gradient(135deg, rgba(212, 168, 85, 0.1) 0%, var(--secondary) 100%);
}

.festival-offer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 168, 85, 0.05) 0%, transparent 50%);
    animation: rotate-slow 10s linear infinite;
}

/* Festive Banner */
.festive-banner {
    margin-top: 60px;
    background: var(--gradient-gold);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    gap: 20px;
}

.banner-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.banner-emoji {
    font-size: 4rem;
    animation: swing 2s ease-in-out infinite;
}

@keyframes swing {
    0%, 100% {
        transform: rotate(-10deg);
    }
    50% {
        transform: rotate(10deg);
    }
}

.banner-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--secondary);
}

.banner-text p {
    color: var(--secondary-light);
    font-size: 1rem;
}

.btn-banner {
    background: var(--secondary);
    color: var(--primary);
    padding: 15px 30px;
}

.btn-banner:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.banner-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.deco {
    position: absolute;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.deco-1 { top: 20%; right: 30%; }
.deco-2 { bottom: 20%; right: 15%; animation-delay: 1s; }
.deco-3 { top: 30%; right: 50%; animation-delay: 2s; }

/* ===== About Section ===== */
.about-section {
    padding: 100px 60px;
    background: var(--secondary);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.about-img:hover {
    transform: scale(1.05);
}

.about-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.about-img.img-1 {
    grid-column: span 2;
}

.about-img.img-1 img {
    height: 250px;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-gold);
    padding: 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
}

.exp-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    font-family: var(--font-heading);
    line-height: 1;
}

.exp-text {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: 500;
}

.about-content .section-badge {
    text-align: left;
    display: inline-block;
}

.about-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.about-title .highlight {
    color: var(--primary);
}

.about-description {
    color: var(--gray-400);
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 35px 0;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2rem;
    background: rgba(212, 168, 85, 0.1);
    padding: 15px;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.feature-item:hover .feature-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.feature-text p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* ===== Menu Section ===== */
.menu-section {
    padding: 100px 60px;
    background: var(--secondary-light);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.menu-card {
    background: var(--secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.menu-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.menu-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.menu-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    color: var(--gray-500);
}

.menu-placeholder i {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.5;
}

.menu-placeholder span {
    font-size: 0.9rem;
}

.menu-img[src=""],
.menu-img[data-placeholder="true"] {
    display: none;
}

.menu-img[src=""]+.menu-placeholder,
.menu-img[data-placeholder="true"]+.menu-placeholder {
    display: flex;
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.menu-card:hover .menu-overlay {
    opacity: 1;
}

.view-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--secondary);
    font-size: 1.2rem;
    transform: scale(0);
    transition: var(--transition-normal);
}

.menu-card:hover .view-icon {
    transform: scale(1);
}

.menu-content {
    padding: 25px;
}

.menu-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.menu-desc {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.menu-tag {
    background: rgba(212, 168, 85, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 500;
}

.menu-cta {
    text-align: center;
    margin-top: 50px;
}

.menu-cta p {
    color: var(--gray-400);
    margin-bottom: 20px;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 100px 60px;
    background: var(--secondary);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-badge {
    text-align: left;
    display: inline-block;
    margin-bottom: 15px;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.contact-subtitle {
    color: var(--gray-400);
    margin-bottom: 40px;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    background: var(--secondary-light);
    padding: 25px;
    border-radius: var(--radius-md);
    display: flex;
    gap: 15px;
    transition: var(--transition-normal);
    border: 1px solid transparent;
}

.info-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 168, 85, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.info-content p {
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-call-large {
    background: var(--gradient-gold);
    color: var(--secondary);
    padding: 18px 35px;
    font-size: 1.1rem;
    animation: glow 2s ease-in-out infinite;
}

.btn-call-large:hover {
    transform: translateY(-3px) scale(1.05);
}

.btn-whatsapp-large {
    background: #25d366;
    color: var(--white);
    padding: 18px 35px;
    font-size: 1.1rem;
}

.btn-whatsapp-large:hover {
    background: #20bd5a;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.contact-map {
    height: 100%;
    min-height: 450px;
}

.map-wrapper {
    position: relative;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-wrapper iframe {
    filter: grayscale(100%) invert(92%) contrast(83%);
}

.map-overlay-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    padding: 20px 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    color: var(--secondary);
}

.map-overlay-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.map-overlay-card p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.direction-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--secondary);
    padding: 8px 15px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
}

.direction-btn:hover {
    background: var(--primary-dark);
}

/* ===== Footer ===== */
.footer {
    background: var(--secondary-light);
    padding: 80px 60px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand .logo-icon {
    font-size: 2.5rem;
}

.footer-brand .logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
}

.footer-brand p {
    color: var(--gray-400);
    margin: 20px 0;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-5px);
}

.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-links a {
    display: block;
    color: var(--gray-400);
    padding: 8px 0;
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 10px;
}

.footer-contact p,
.footer-hours p {
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-hours .time {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 600;
}

.open-badge {
    font-size: 0.9rem;
    color: #44bb44 !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* ===== Floating Action Buttons ===== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: var(--transition-normal);
}

.fab-call {
    background: var(--gradient-gold);
    color: var(--secondary);
    animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 168, 85, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(212, 168, 85, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 168, 85, 0);
    }
}

.fab-whatsapp {
    background: #25d366;
    color: var(--white);
    animation: pulse-whatsapp 2s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.fab-btn:hover {
    transform: scale(1.15);
}

.fab-tooltip {
    position: absolute;
    right: 75px;
    background: var(--white);
    color: var(--secondary);
    padding: 8px 15px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.fab-btn:hover .fab-tooltip {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-light);
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-5px);
}

/* ===== Responsive Design ===== */
@media screen and (max-width: 1200px) {
    .hero {
        padding: 100px 40px 60px;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .plate-decoration {
        width: 380px;
        height: 380px;
    }
}

@media screen and (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--secondary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-xl);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 30px 80px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        margin-top: 50px;
    }
    
    .plate-decoration {
        width: 320px;
        height: 320px;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-divider {
        width: 50px;
        height: 1px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .offers-section,
    .about-section,
    .menu-section,
    .contact-section {
        padding: 60px 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .btn-call-large,
    .btn-whatsapp-large {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .plate-decoration {
        width: 260px;
        height: 260px;
    }
    
    .floating-badge {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .badge-1 {
        left: 0;
    }
    
    .badge-2 {
        right: 0;
    }
    
    .offer-card {
        padding: 25px;
    }
    
    .discount-value {
        font-size: 2.5rem;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .banner-left {
        flex-direction: column;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .fab-btn {
        width: 55px;
        height: 55px;
    }
    
    .back-to-top {
        left: 20px;
        bottom: 20px;
    }
}

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===== Selection Color ===== */
::selection {
    background: var(--primary);
    color: var(--secondary);
}