:root {
    --primary-color: #d4af37;
    --secondary-color: #1a1a1a;
    --accent-color: #8b0000;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-light: #f8f8f8;
    --bg-dark: #0a0a0a;
    --transition-speed: 0.3s;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.2);
}

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

a, button, input, textarea, select {
    cursor: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 0, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Loader */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader-wrapper::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, transparent 0%, rgba(212, 175, 55, 0.05) 50%, transparent 100%);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

.loader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
    position: relative;
}

.loader-ring {
    width: 100px;
    height: 100px;
    border: 3px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
}

.loader-ring::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.loader-ring::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-bottom-color: var(--accent-color);
    border-radius: 50%;
    animation: spin-reverse 1.5s linear infinite;
}

.loader-text {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes spin-reverse {
    to { transform: rotate(-360deg); }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Announcement Bar */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-bottom: 2px solid var(--primary-color);
    color: white;
    z-index: 1001;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    text-align: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.announcement-icon {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
    color: var(--primary-color);
}

#announcementText {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.3px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

#announcementText strong {
    color: var(--primary-color);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.announcement-bar.active + .navbar {
    top: var(--announcement-height, 50px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all var(--transition-speed);
    box-shadow: var(--shadow-md);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(10, 10, 10, 0.98);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .logo {
    height: 65px;
    transition: transform var(--transition-speed);
}

.nav-brand .logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    transition: color var(--transition-speed);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-speed);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: all var(--transition-speed);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Main App Container */
.app-container {
    width: 100%;
    padding-top: 80px;
    min-height: 100vh;
}

/* Page Sections */
.page-section {
    width: 100%;
    opacity: 0;
    animation: fadeIn 0.6s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: calc(75vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -3;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.slider-dots .dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(139,0,0,0.3) 100%);
    z-index: -2;
}

/* Particles Canvas */
.particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.6;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    padding: 0.6rem 2rem;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    animation: glow 2s ease-in-out infinite alternate;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

@keyframes glow {
    from { box-shadow: 0 0 10px rgba(212, 175, 55, 0.2); }
    to { box-shadow: 0 0 20px rgba(212, 175, 55, 0.4), 0 0 30px rgba(212, 175, 55, 0.2); }
}

/* Title Wrapper and Decorations */
.title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    margin: 2rem 0;
}

.title-decoration {
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0;
    animation: fadeInRotate 1s ease-out forwards;
    animation-delay: 1s;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.title-decoration.left {
    transform: rotate(-15deg);
}

.title-decoration.right {
    transform: rotate(15deg) scaleX(-1);
}

@keyframes fadeInRotate {
    from {
        opacity: 0;
        transform: rotate(0deg) scale(0);
    }
    to {
        opacity: 1;
        transform: rotate(var(--rotation, 0deg)) scale(1);
    }
}

.title-decoration.left {
    --rotation: -15deg;
}

.title-decoration.right {
    --rotation: 15deg;
}

/* Title Animation */
.hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    margin-bottom: 1.5rem;
    text-shadow: 
        3px 3px 6px rgba(0,0,0,0.7),
        0 0 30px rgba(212, 175, 55, 0.5),
        0 0 60px rgba(212, 175, 55, 0.3);
    overflow: visible;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
    position: relative;
    display: inline-block;
}

.title-word {
    display: inline-block;
    animation: slideInWord 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
    animation-delay: calc(var(--word-index, 0) * 0.2s);
    position: relative;
}

.title-word:nth-child(1) { 
    --word-index: 0;
    background: linear-gradient(45deg, #fff, var(--primary-color), #fff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: slideInWord 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) both,
               shimmer 3s ease-in-out infinite;
}

.title-word:nth-child(2) { 
    --word-index: 1;
    color: var(--primary-color);
    text-shadow: 
        2px 2px 4px rgba(0,0,0,0.8),
        0 0 20px rgba(212, 175, 55, 0.6);
    font-style: italic;
    margin: 0 0.2em;
}

.title-word:nth-child(3) { 
    --word-index: 2;
    background: linear-gradient(45deg, #fff, var(--primary-color), #fff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: slideInWord 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) both,
               shimmer 3s ease-in-out infinite;
    animation-delay: 0.4s, 1s;
}

@keyframes slideInWord {
    from {
        opacity: 0;
        transform: translateY(50px) rotateX(-90deg) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0) scale(1);
    }
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Typewriter Effect */
.hero-subtitle-wrapper {
    height: 2rem;
    margin-bottom: 1.5rem;
}

.typewriter {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 300;
    opacity: 0.9;
    position: relative;
}

.typewriter::after {
    content: '|';
    animation: blink 1s infinite;
    color: var(--primary-color);
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Hero Rating */
.hero-rating {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.stars {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.hero-rating span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

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

.hero-content {
    text-align: center;
    color: var(--text-light);
    z-index: 1;
    padding: 2rem;
    animation: slideUp 1s ease-out;
}

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

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--transition-speed);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--accent-color);
    color: var(--text-light);
}

.btn-secondary:hover {
    background: #a00000;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* Content Sections */
.content-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 1.5rem auto 0;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Cards */
.card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-speed);
    position: relative;
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s;
    position: relative;
}

.card:hover .card-image {
    transform: scale(1.15);
}

.card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.card:hover .card-image::after {
    opacity: 1;
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.card-text {
    color: #666;
    line-height: 1.6;
}

/* Special Dishes Section - Elegant and Stable */
.special-dishes {
    padding: 3rem 0;
    background: #f9f9f9;
}

.special-dish-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.special-dish-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.15);
}

.special-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.special-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.special-dish-card:hover .special-image img {
    transform: scale(1.1);
}

.special-label {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.special-label.popular {
    background: #e74c3c;
}

.special-label.traditional {
    background: #27ae60;
}

.special-label.signature {
    background: #8e44ad;
}

.special-content {
    padding: 1.2rem;
}

.special-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.special-desc {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.special-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.special-price {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.special-rating {
    color: var(--primary-color);
    font-size: 0.85rem;
}

.card-price {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1rem;
}

/* Menu Categories */
.menu-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.5rem 1.5rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all var(--transition-speed);
    font-weight: 500;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-color);
    color: var(--text-dark);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.2) rotate(2deg);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
    opacity: 0;
    transition: opacity var(--transition-speed);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: white;
    font-size: 0.9rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all var(--transition-speed);
    background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 0;
    margin-top: 5rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-map {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(20%);
    transition: filter 0.3s;
}

.footer-map iframe:hover {
    filter: grayscale(0%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 3rem 2rem 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 24px;
    height: 24px;
    fill: var(--text-light);
    transition: all var(--transition-speed);
}

.social-icon:hover {
    fill: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #888;
}

.footer-credit {
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.footer-credit a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.footer-credit a:hover {
    color: #e8c547;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

.zoom-in {
    animation: zoomIn 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Fixed Action Buttons */
.mobile-action-buttons {
    display: none;
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    flex-direction: column;
    gap: 12px;
    overflow: visible; /* Allow tooltips to show */
}

.mobile-action-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: visible; /* Changed from hidden to allow tooltips */
}

.mobile-action-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.mobile-action-btn:hover::before,
.mobile-action-btn:active::before {
    width: 120px;
    height: 120px;
}

.mobile-action-btn.call {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    animation: pulse 2s infinite;
}

.mobile-action-btn.reservation {
    background: linear-gradient(135deg, var(--primary-color) 0%, #b8941f 100%);
    animation: pulse 2s infinite;
    animation-delay: 0.5s;
}

.mobile-action-btn.collection {
    background: linear-gradient(135deg, var(--accent-color) 0%, #a61e1e 100%);
    animation: pulse 2s infinite;
    animation-delay: 1s;
}

.mobile-action-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.mobile-action-btn .btn-label {
    position: absolute;
    right: 60px;
    background: var(--bg-dark);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    white-space: nowrap;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.mobile-action-btn:hover .btn-label {
    opacity: 1;
}

/* Mobile tooltip styles */
.mobile-action-btn .btn-tooltip {
    position: absolute;
    right: calc(100% + 15px);
    top: 50%;
    transform: translateY(-50%) translateX(30px);
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 10000;
}

/* Color-matched tooltips for each button */
.mobile-action-btn.call .btn-tooltip {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.mobile-action-btn.reservation .btn-tooltip {
    background: linear-gradient(135deg, var(--primary-color) 0%, #b8941f 100%);
}

.mobile-action-btn.collection .btn-tooltip {
    background: linear-gradient(135deg, var(--accent-color) 0%, #a61e1e 100%);
}

.mobile-action-btn .btn-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: inherit;
}

/* Specific arrow colors */
.mobile-action-btn.call .btn-tooltip::after {
    border-left-color: #128c7e;
}

.mobile-action-btn.reservation .btn-tooltip::after {
    border-left-color: #b8941f;
}

.mobile-action-btn.collection .btn-tooltip::after {
    border-left-color: #a61e1e;
}

.mobile-action-btn.show-tooltip .btn-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* Pulse animation on show-tooltip */
.mobile-action-btn.show-tooltip {
    animation: tooltip-pulse 0.5s ease;
}

@keyframes tooltip-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Hide btn-label on mobile when tooltip is shown */
@media (max-width: 768px) {
    .mobile-action-btn .btn-label {
        display: none;
    }
    
    /* Mobile hero adjustments */
    .hero {
        height: calc(55vh - 40px); /* Reduced by another 10% from 65vh */
    }
    
    /* Better mobile title styling */
    .hero-title {
        font-size: clamp(2.2rem, 10vw, 3.5rem); /* More reasonable size for mobile */
        font-family: 'Playfair Display', serif; /* Back to Playfair for better mobile rendering */
        font-weight: 700;
        font-style: normal;
        letter-spacing: -0.01em;
        line-height: 1.1;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    /* Adjust title words for mobile - keep inline */
    .title-word {
        display: inline-block; /* Keep words inline on mobile */
        animation: none; /* Disable complex animations on mobile */
    }
    
    .title-word:nth-child(1), 
    .title-word:nth-child(3) {
        font-size: 1em;
        letter-spacing: 0.02em;
        text-transform: none;
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        background: linear-gradient(45deg, #fff, var(--primary-color));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .title-word:nth-child(2) {
        font-size: 1.1em; /* Slightly bigger "Persian" */
        font-style: italic;
        margin: 0 0.1em;
        font-family: 'Playfair Display', serif;
        font-weight: 900;
        color: var(--primary-color);
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }
    
    /* Adjust wrapper for mobile */
    .title-wrapper {
        gap: 0.5rem;
        margin: 0.5rem 0;
    }
    
    /* Show decorations on mobile with adjustments */
    .title-decoration {
        display: inline-block;
        font-size: 1.2rem;
        opacity: 1;
        animation: fadeInRotate 1s ease-out forwards;
        animation-delay: 0.5s;
    }
    
    .title-decoration.left {
        transform: rotate(-15deg) scale(0.8);
    }
    
    .title-decoration.right {
        transform: rotate(15deg) scaleX(-1) scale(0.8);
    }
    
    /* Smaller badge for reduced banner */
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.3rem 1rem;
        letter-spacing: 1.5px;
        margin-bottom: 0.3rem;
    }
    
    /* Adjust other hero elements for smaller banner */
    .hero-content {
        padding: 1rem;
    }
    
    .hero-subtitle-wrapper {
        height: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-rating {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
}

/* Desktop only elements */
.desktop-only {
    display: flex;
}

/* Responsive Design */
@media (max-width: 768px) {
    .announcement-bar {
        border-bottom-width: 1px;
    }
    
    .announcement-content {
        padding: 0.8rem 1rem;
        gap: 10px;
    }
    
    .announcement-icon {
        font-size: 1.2rem;
    }
    
    #announcementText {
        font-size: 0.95rem;
        letter-spacing: 0.2px;
        line-height: 1.4;
    }

    .mobile-action-buttons {
        display: flex;
    }

    .desktop-only {
        display: none !important;
    }

    .hero-banner {
        display: none !important;
    }

    .hero-section {
        min-height: 60vh;
        padding: 2rem 1rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .content-section {
        padding: 3rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Smooth Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b8941f;
}

/* Loading States */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Parallax Effects */
.parallax {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s;
}

.modal-content {
    position: relative;
    background: white;
    margin: 5% auto;
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    border-radius: 15px;
    animation: slideUp 0.3s;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color var(--transition-speed);
}

.modal-close:hover {
    color: var(--primary-color);
}

/* Special Dishes Mobile Styles */
@media (max-width: 768px) {
    .special-dishes {
        padding: 2rem 0;
    }
    
    .special-dish-card {
        margin-bottom: 1rem;
    }
    
    .special-image {
        height: 180px;
    }
    
    .special-label {
        top: 8px;
        right: 8px;
        padding: 3px 8px;
        font-size: 0.65rem;
    }
    
    .special-content {
        padding: 1rem;
    }
    
    .special-content h3 {
        font-size: 1.1rem;
    }
    
    .special-desc {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .special-price {
        font-size: 1rem;
    }
    
    .special-rating {
        font-size: 0.8rem;
    }
}