/* Global Styles */
:root {
    --primary-color: #c9a961;
    --secondary-color: #8b0000;
    --text-color: #333;
    --bg-color: #fff;
    --gray-light: #f5f5f5;
    --gray-medium: #ddd;
    --gray-dark: #666;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Header Styles */
.main-header {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.main-header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    height: 90px;
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0;
}

.logo .tagline {
    font-size: 0.9rem;
    color: var(--gray-dark);
    font-style: italic;
    margin: 0;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.main-nav a.active,
.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
}

.language-switcher .lang-btn {
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s;
    text-decoration: none;
}

.language-switcher .lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-switcher .lang-btn.active {
    background: var(--primary-color);
    color: #000;
    font-weight: bold;
}

.btn-phone-mobile {
    display: none !important;
}

.btn-phone-desktop {
    display: inline-flex;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: #000;
}

.btn-primary:hover {
    background: #b8954a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--bg-color);
}

.btn-secondary:hover {
    background: #6b0000;
    transform: translateY(-2px);
}

.btn-phone {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 25px;
}

.btn-phone:hover {
    background: var(--primary-color);
    color: #000;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    padding: 140px 0 80px 0;
    overflow: hidden;
}

.hero-fullwidth {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.65) 0%, 
        rgba(0, 0, 0, 0.65) 30%,
        rgba(0, 0, 0, 0.7) 100%),
        url('../images/hero-restaurant.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    min-height: 600px;
    justify-content: center;
}

.hero-logo-display {
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    animation: fadeInDown 1s ease-out;
}

.hero-logo {
    height: 120px;
    width: auto;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.2));
}

.hero-content {
    max-width: 900px;
    color: white;
    text-align: left;
    padding-left: 40px;
}

.hero-content h2 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
    width: 100%;
    height: auto;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Home Gallery - Continuous Scroll */
.home-gallery {
    padding: 40px 0;
    background: #1a1a1a;
    overflow: hidden;
}

.gallery-scroll {
    overflow: hidden;
    width: 100%;
}

.gallery-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    animation: gallery-scroll 35s linear infinite;
    width: max-content;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.gallery-track:hover {
    animation-play-state: paused;
}

.gallery-track img {
    display: block;
    height: 300px;
    min-width: 400px;
    width: auto;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@keyframes gallery-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 768px) {
    .home-gallery {
        padding: 20px 0;
    }
    
    .gallery-track img {
        height: 180px;
        min-width: 270px;
    }
    
    .gallery-track {
        gap: 10px;
        animation-duration: 25s;
    }
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--bg-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    margin-top: 40px;
}

.why-item {
    text-align: center;
    padding: 20px;
}

.why-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    color: var(--text-color);
}

.why-icon svg {
    width: 100%;
    height: 100%;
}

.why-item h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--text-color);
    padding-bottom: 15px;
    display: inline-block;
}

.why-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    text-align: justify;
    max-width: 400px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: #f8f8f8;
    border-radius: 10px;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-card i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 700;
}

.feature-card p {
    color: var(--gray-dark);
    line-height: 1.6;
}

/* Featured Dishes Section */
.featured-dishes {
    padding: 80px 0;
    background: var(--gray-light);
}

.featured-dishes h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 50px;
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.dish-card {
    background: var(--bg-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.dish-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.dish-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.dish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    transition: opacity 0.4s ease;
}

.dish-image img.lazy-dish-img {
    opacity: 0;
    animation: shimmer 1.5s infinite;
}

.dish-image img:not(.lazy-dish-img) {
    opacity: 1;
    animation: none;
    background: none;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,0.9);
    color: var(--secondary-color);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.badge-spicy {
    background: rgba(255, 69, 0, 0.9);
    color: white;
}

.badge-vegetarian {
    background: rgba(34, 139, 34, 0.9);
    color: white;
}

.dish-info {
    padding: 20px;
}

.dish-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.dish-info p {
    color: var(--gray-dark);
    margin-bottom: 15px;
}

.dish-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.text-center {
    text-align: center;
}

/* Location Section */
.location {
    padding: 80px 0;
    background: var(--bg-color);
}

.location h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 50px;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.location-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.location-info h3 {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    font-weight: 700;
}

.location-info p {
    margin-bottom: 20px;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    color: #2c3e50;
    line-height: 1.8;
}

.location-info i {
    color: var(--primary-color);
    margin-right: 15px;
    width: 24px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.location-info p a {
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.location-info p a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.location-info .btn {
    margin-top: 10px;
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.location-info .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.location-map iframe {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(212, 175, 55, 0.3);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Menu Notice Styles */
.menu-notice {
    padding: 20px 0;
    background: #fff3cd;
}

.notice-box {
    background: white;
    border-left: 4px solid var(--secondary-color);
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.notice-box p {
    margin: 0;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

/* Menu Page Styles */
.menu-section {
    padding: 60px 0;
}

.menu-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    padding: 20px;
    background: var(--gray-light);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.menu-nav-item {
    padding: 10px 20px;
    background: var(--bg-color);
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.menu-nav-item:hover,
.menu-nav-item.active {
    background: var(--primary-color);
    color: var(--bg-color);
}

.menu-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.menu-items {
    display: grid;
    gap: 25px;
}

.menu-item {
    background: var(--gray-light);
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s;
}

.menu-item:hover {
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 10px;
}

.item-name {
    font-size: 1.3rem;
    color: var(--text-color);
    flex: 1;
}

.icon-spicy,
.icon-vegetarian {
    margin-left: 10px;
    font-size: 0.9rem;
}

.icon-spicy {
    color: #ff4500;
}

.icon-vegetarian {
    color: #228b22;
}

.item-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
    white-space: nowrap;
    margin-left: 20px;
}

.item-description {
    color: var(--gray-dark);
    font-size: 0.95rem;
}

/* Category Info Styles */
.category-info {
    background: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 25px 30px;
    margin-bottom: 30px;
    border-radius: 8px;
}

.category-info > p:first-child {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.info-section {
    margin-bottom: 20px;
}

.info-section:last-child {
    margin-bottom: 0;
}

.section-label {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.category-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-info li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    color: var(--gray-dark);
}

.category-info li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.menu-legend {
    text-align: center;
    padding: 30px;
    background: var(--gray-light);
    border-radius: 10px;
    margin: 40px 0;
}

.menu-cta {
    text-align: center;
    padding: 60px 0;
}

.menu-cta h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.menu-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* BYOB Section (Bring Your Own Bottle) */
.byob-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #b8944d 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.byob-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
}

.byob-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.byob-icon {
    margin-bottom: 30px;
    animation: bounce 2s ease-in-out infinite;
}

.byob-icon i {
    font-size: 5rem;
    color: white;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.byob-section h2 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.byob-message {
    font-size: 1.3rem;
    color: white;
    line-height: 1.8;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.byob-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.byob-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: white;
    font-weight: 500;
}

.byob-feature i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Page Header for Internal Pages */
.page-header {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.65) 0%, 
        rgba(0, 0, 0, 0.65) 30%,
        rgba(0, 0, 0, 0.7) 100%),
        url('../images/hero-restaurant.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    color: white;
    text-align: center;
    margin-top: 0;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Gallery Page Styles */
.gallery-section {
    padding: 60px 0;
}

/* Gallery Carousel */
.gallery-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.carousel-container {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 16/9;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    transition: opacity 0.3s ease;
}

.carousel-slide img.lazy-image {
    opacity: 0.3;
}

.carousel-slide img:not(.lazy-image) {
    opacity: 1;
    animation: none;
    background: none;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.carousel-slide:hover .slide-overlay {
    opacity: 1;
}

.carousel-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

.control-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.control-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.carousel-counter {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.btn-view {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-view:hover {
    background: var(--secondary-color);
    transform: scale(1.15);
}

.gallery-cta {
    background: var(--gray-light);
    padding: 60px 0;
    text-align: center;
}

.gallery-cta h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    max-width: 80%;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    font-weight: bold;
    padding: 20px;
    cursor: pointer;
    user-select: none;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Gallery Pagination */
.gallery-count {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 10px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    background: white;
    color: var(--secondary-color);
    border: 1px solid #ddd;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.page-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.page-link.active {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.page-link i {
    font-size: 0.9rem;
}

/* Contact Page Styles */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info h2,
.contact-form h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 30px;
}

.contact-info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-social {
    margin-top: 40px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

.social-links a svg {
    width: 22px;
    height: 22px;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.social-links a.instagram-gold {
    background: linear-gradient(135deg, #d4af37, #f2d06b);
}

.social-links a.instagram-gold:hover {
    background: linear-gradient(135deg, #f2d06b, #d4af37);
}

.contact-form {
    background: var(--gray-light);
    padding: 40px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--gray-medium);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-map {
    margin-top: 40px;
}

.contact-map h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    text-align: center;
}

/* Go to Top Button */
.go-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--bg-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.go-to-top.show {
    opacity: 1;
    visibility: visible;
}

.go-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Footer Styles */
.main-footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-section i {
    color: var(--primary-color);
    margin-right: 10px;
}

.footer-section a {
    color: white;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

/* Delivery Page Styles */

/* Hero CTA Banner */
.hero-cta-banner {
    padding: 24px 0 0;
}

.hero-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #5a0000 100%);
    border: 2px solid var(--primary-color);
    border-radius: 14px;
    padding: 30px 36px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

.hero-cta-badge {
    display: inline-block;
    background: rgba(201, 169, 97, 0.15);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.hero-cta-badge i {
    margin-right: 5px;
}

.hero-cta-content h2 {
    color: #fff;
    font-size: 1.7rem;
    margin-bottom: 6px;
}

.hero-cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    background: var(--primary-color);
    color: #000;
    padding: 18px 36px;
    border-radius: 10px;
    font-size: 1.15rem;
    font-weight: 700;
    box-shadow: 0 6px 22px rgba(201, 169, 97, 0.4);
    transition: all 0.3s;
    animation: cta-glow 2.5s ease-in-out infinite;
}

.hero-cta-btn:hover {
    background: #b8954a;
    transform: translateY(-2px);
    animation: none;
}

@keyframes cta-glow {
    0%, 100% { box-shadow: 0 6px 22px rgba(201, 169, 97, 0.4); }
    50% { box-shadow: 0 6px 30px rgba(201, 169, 97, 0.7); }
}

/* Mobile floating order button */
.mobile-order-fab {
    display: none;
}

@media (max-width: 768px) {
    .hero-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .hero-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }

    .mobile-order-fab {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: calc(12px + env(safe-area-inset-bottom, 0px));
        z-index: 1200;
        background: var(--primary-color);
        color: #000;
        border-radius: 12px;
        padding: 15px 16px;
        font-size: 1.05rem;
        font-weight: 700;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
        text-decoration: none;
    }

    .mobile-order-fab:hover {
        background: #b8954a;
    }

    .mobile-order-fab i {
        font-size: 1rem;
    }

    .delivery-page {
        padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
    }
}

@media (max-width: 360px) {
    .mobile-order-fab {
        left: 8px;
        right: 8px;
        padding: 13px 12px;
        font-size: 0.95rem;
        gap: 8px;
    }
}

/* Worker Menu Section */
.worker-menu-section {
    padding: 40px 0 10px;
}

.worker-menu-title {
    text-align: center;
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.worker-menu-title i {
    color: var(--primary-color);
    margin-right: 10px;
}

.worker-menu-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.worker-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.worker-menu-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 700px;
    margin: 40px auto 0;
    padding: 14px 24px;
    background: #fdf6e3;
    border: 1px solid #e6d59a;
    border-radius: 8px;
    color: #6b5418;
    font-size: 0.95rem;
    font-style: italic;
    text-align: center;
    line-height: 1.4;
}

.worker-menu-notice i {
    color: #c9a24a;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.worker-menu-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.worker-menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.worker-menu-card-header {
    background: linear-gradient(135deg, var(--secondary-color), #5a0000);
    padding: 15px;
    text-align: center;
    position: relative;
}

.worker-menu-letter {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.worker-menu-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 2px;
}

.worker-menu-card-body {
    padding: 18px 15px;
}

.worker-menu-contents {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.worker-menu-contents li {
    padding: 4px 0 4px 20px;
    position: relative;
    font-size: 0.9rem;
    color: #444;
    line-height: 1.4;
}

.worker-menu-contents li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.75rem;
    top: 6px;
}

.worker-menu-prices {
    border-top: 1px solid #eee;
    padding-top: 12px;
}

.worker-menu-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    font-size: 0.9rem;
}

.worker-menu-price-row span:first-child {
    color: #666;
}

.worker-price {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1rem;
}

/* Worker Menu Responsive */
@media (max-width: 992px) {
    .worker-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .worker-menu-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }
    
    .worker-menu-title {
        font-size: 1.5rem;
    }
}

.delivery-section {
    padding: 60px 0;
}

.delivery-content {
    display: flex;
    justify-content: center;
    align-items: start;
}

.delivery-info h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.delivery-info > p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--gray-dark);
}

.delivery-features {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.delivery-feature {
    display: flex;
    gap: 20px;
    align-items: start;
    padding: 20px;
    background: var(--gray-light);
    border-radius: 10px;
    transition: all 0.3s;
}

.delivery-feature:hover {
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.delivery-feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.delivery-feature h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.delivery-feature p {
    color: var(--gray-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, #b8954a 100%);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    color: #000;
}

.contact-info-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.phone-number {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    transition: all 0.3s;
}

.phone-number:hover {
    transform: scale(1.05);
}

.phone-number i {
    margin-right: 10px;
}

.delivery-widget {
    position: sticky;
    top: 100px;
}

.widget-wrapper {
    background: var(--gray-light);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.widget-wrapper h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    text-align: center;
}

.order-widget {
    margin-bottom: 20px;
    text-align: center;
}

.order-widget .glf-button {
    display: inline-block;
    background: var(--primary-color);
    color: #000;
    padding: 20px 46px;
    border-radius: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    border: none;
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.45);
    animation: cta-glow 2.5s ease-in-out infinite;
}

.order-widget .glf-button:hover {
    background: #b8954a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.5);
    animation: none;
}

.widget-info {
    padding: 20px;
    background: white;
    border-radius: 10px;
    text-align: center;
}

.widget-info i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: var(--gray-light);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 60px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    position: relative;
    transition: all 0.3s;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.step i {
    font-size: 3rem;
    color: var(--primary-color);
    margin: 20px 0;
}

.step h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.step p {
    color: var(--gray-dark);
    line-height: 1.6;
}

/* Popular Items Section */
.popular-items {
    padding: 80px 0;
    background: white;
}

.popular-items h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        position: relative;
    }
    
    .btn-phone-desktop {
        display: none !important;
    }
    
    .btn-phone-mobile {
        display: inline-flex !important;
        padding: 10px 15px;
        font-size: 1.2rem;
    }
    
    .language-switcher {
        gap: 0;
    }
    
    .language-switcher .lang-btn {
        padding: 8px 14px;
        font-size: 0.95rem;
    }
    
    .language-switcher .lang-btn.active {
        display: none;
    }
    
    .header-actions {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(20, 20, 20, 0.98);
        backdrop-filter: blur(10px);
        padding: 20px 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        z-index: 999;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav ul li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-nav ul li:last-child {
        border-bottom: none;
    }
    
    .main-nav ul li a {
        display: block;
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero {
        padding: 120px 0 60px 0;
        min-height: 500px;
    }

    .hero-fullwidth {
        background-attachment: scroll;
        background-position: center top;
        background-size: cover;
    }

    .page-header {
        background-attachment: scroll;
        background-position: center top;
        background-size: cover;
    }
    
    .hero-logo {
        height: 80px;
    }
    
    .hero-logo-display {
        padding: 30px 40px;
    }
    
    .hero-content {
        padding-left: 20px;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-content h3 {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .dishes-grid {
        grid-template-columns: 1fr;
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .delivery-content {
        grid-template-columns: 1fr;
    }
    
    .delivery-widget {
        position: static;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .widget-wrapper {
        padding: 25px;
    }
}

