/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    overflow-x: hidden;
}

/* Custom cursor */
body {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="8" fill="%23d32f2f" opacity="0.3"/></svg>'), auto;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    width: 100%;
}

/* Header specific container adjustments */
.header .container {
    max-width: none;
    padding: 0;
    width: 100%;
}

/* Decorative elements */
.container::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h2.section-title {
    font-size: 3rem;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #d32f2f 0%, #c62828 50%, #b71c1c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    position: relative;
    letter-spacing: -0.03em;
}

h2.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d32f2f, transparent);
    border-radius: 2px;
}

p {
    margin-bottom: 1.5rem;
    color: #34495e;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 400;
}

/* Header */
.header {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 70px;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(211, 47, 47, 0.02), transparent);
    pointer-events: none;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 40px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 1rem;
    min-height: 70px;
    position: relative;
    box-sizing: border-box;
}

.logo {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.logo img {
    height: 55px;
    width: auto;
    border-radius: 12px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

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

.logo:hover::after {
    left: 100%;
}

.nav-menu {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    flex: 1;
    justify-content: center;
    max-width: none;
    margin: 0 1rem;
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 12px;
    border-radius: 8px;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: #d32f2f;
    background: rgba(211, 47, 47, 0.05);
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d32f2f, #c62828);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.nav-menu a:hover::after {
    width: 80%;
}

.language-selector {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.lang-btn {
    padding: 8px 16px;
    border: 2px solid rgba(211, 47, 47, 0.2);
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    cursor: pointer;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.lang-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 ease;
}

.lang-btn:hover {
    border-color: #d32f2f;
    color: #d32f2f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.15);
}

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

.lang-btn.active {
    background: linear-gradient(135deg, #d32f2f, #c62828);
    border-color: #d32f2f;
    color: white;
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.3);
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-btn:hover {
    background: rgba(211, 47, 47, 0.08);
}

.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background: #2c3e50;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
        rgba(248, 250, 252, 0.95) 0%,
        rgba(255, 255, 255, 0.98) 30%,
        rgba(253, 254, 255, 0.95) 100%),
        radial-gradient(circle at 30% 70%, rgba(211, 47, 47, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(45, 80, 22, 0.02) 0%, transparent 50%);
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 80%, rgba(211, 47, 47, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(45, 80, 22, 0.02) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
    max-width: 800px;
}

.hero-logo {
    position: relative;
    display: inline-block;
    margin-bottom: 2.5rem;
}

.hero-logo img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(211, 47, 47, 0.1),
        inset 0 0 0 3px rgba(255, 255, 255, 0.8);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse 3s ease-in-out infinite;
}

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

.hero-logo:hover img {
    transform: scale(1.1) rotate(5deg);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 12px 24px rgba(211, 47, 47, 0.2);
}

.hero-logo::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(211, 47, 47, 0.2);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #d32f2f 0%, #c62828 50%, #b71c1c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    line-height: 1.1;
    position: relative;
    animation: fadeInUp 1s ease-out 0.3s both;
}

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

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d32f2f, transparent);
    border-radius: 2px;
    animation: expand 1s ease-out 1s both;
}

@keyframes expand {
    from { width: 0; }
    to { width: 100px; }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #5a6c7d;
    margin-bottom: 3.5rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.6s both;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 280px;
    width: 280px !important;
    height: 60px !important;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
    border: 2px solid transparent;
    animation: fadeInUp 1s ease-out 0.9s both;
    box-sizing: border-box;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.uber {
    background: linear-gradient(135deg, #2d5016 0%, #1e3510 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.25), 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cta-button.uber:hover {
    background: linear-gradient(135deg, #1e3510 0%, #153008 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(45, 80, 22, 0.4), 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-button.contact {
    background: linear-gradient(135deg, #d32f2f 0%, #c62828 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.25), 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cta-button.contact:hover {
    background: linear-gradient(135deg, #c62828 0%, #b71c1c 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(211, 47, 47, 0.4), 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}


/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 250, 252, 0.98) 50%,
        rgba(255, 255, 255, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(211, 47, 47, 0.2), transparent);
}

.about::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    padding: 0 20px;
}

.features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 4px 15px rgba(211, 47, 47, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d32f2f, #c62828, #d32f2f);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.12),
        0 8px 25px rgba(211, 47, 47, 0.15);
}

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

.feature h3 {
    background: linear-gradient(135deg, #d32f2f 0%, #c62828 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.feature p {
    color: #5a6c7d;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.about-images {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.08),
        0 6px 20px rgba(211, 47, 47, 0.05);
    transition: all 0.3s ease;
}

.about-img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.12),
        0 10px 30px rgba(211, 47, 47, 0.08);
}

/* Restaurant Section */
.restaurant-section {
    padding: 60px 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(248, 250, 252, 0.95) 50%,
        rgba(255, 255, 255, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

.restaurant-content {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.restaurant-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 20px;
}

.restaurant-image {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    position: relative;
}

.restaurant-img {
    width: 100% !important;
    height: 400px !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.02) saturate(1.1);
}

.restaurant-img:hover {
    transform: scale(1.02);
    filter: brightness(1.05) saturate(1.15);
}

.restaurant-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.1) 0%,
        transparent 30%,
        transparent 70%,
        rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
}

/* Menu Section */
.menu {
    padding: 80px 0;
    background: #ffffff;
}

.menu-carousel {
    max-width: 900px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.menu-item {
    min-width: 100%;
    height: 600px;
}

.menu-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: white;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #2d5016;
    transform: scale(1.2);
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: linear-gradient(135deg,
        rgba(248, 250, 252, 0.95) 0%,
        rgba(255, 255, 255, 0.98) 50%,
        rgba(253, 254, 255, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(45, 80, 22, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 20px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 4px 15px rgba(211, 47, 47, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(211, 47, 47, 0.1), rgba(45, 80, 22, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    border-radius: 20px;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(211, 47, 47, 0.1);
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: contrast(1.05) saturate(1.1);
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: contrast(1.1) saturate(1.2) brightness(1.05);
}

/* Hide specific gallery item on desktop */
@media (min-width: 769px) {
    .gallery-item-hidden-desktop {
        display: none;
    }
}

/* Order Section */
.order {
    padding: 80px 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(248, 250, 252, 0.95) 50%,
        rgba(255, 255, 255, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

.order .container {
    max-width: 100%;
    padding: 0 40px;
}

.order::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.order-cards {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
    gap: 2rem;
}

.order-card {
    background: rgba(255, 255, 255, 0.98) !important;
    padding: 3.5rem 2.5rem;
    border-radius: 24px;
    text-decoration: none;
    color: #2c3e50 !important;
    text-align: center;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.08),
        0 6px 20px rgba(211, 47, 47, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.order-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.order-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.12),
        0 12px 30px rgba(211, 47, 47, 0.1);
}

.order-card:hover::before {
    left: 100%;
}

.order-card.uber {
    border-top: 4px solid #2d5016;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(45, 80, 22, 0.02) 100%) !important;
}


.order-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.order-card:hover .order-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}

.order-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.order-card p {
    color: #5a6c7d !important;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.order-arrow {
    position: absolute;
    bottom: 1.2rem;
    right: 1.8rem;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #d32f2f, #c62828);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.order-card:hover .order-arrow {
    transform: translateX(5px) scale(1.1);
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

/* Contact Section */
.contact {
    padding: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(248, 250, 252, 0.95) 50%,
        rgba(255, 255, 255, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 30%;
    right: 10%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(45, 80, 22, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.contact-item h3 {
    background: linear-gradient(135deg, #d32f2f 0%, #c62828 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.contact-item p {
    margin: 0;
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.phone-link {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
}

.phone-link:hover {
    color: #d32f2f;
    background: rgba(211, 47, 47, 0.08);
    transform: translateY(-2px);
}

.social-link {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(45, 80, 22, 0.02);
}

.social-link:hover {
    color: #2d5016;
    background: rgba(45, 80, 22, 0.08);
    transform: translateY(-2px);
}

.map-container {
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.08),
        0 6px 20px rgba(211, 47, 47, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.12),
        0 10px 30px rgba(211, 47, 47, 0.08);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2d5016 0%, #3a6b1b 50%, #2d5016 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(211, 47, 47, 0.6), transparent);
}

.footer::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 15%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-main p {
    margin: 0.8rem 0;
    color: #bdc3c7;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-services {
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 4px;
}

.footer-links a:hover {
    color: white;
    background: rgba(211, 47, 47, 0.2);
    transform: translateY(-1px);
}

.footer-links span {
    color: #999;
}

.footer-powered {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #555;
}

.footer-powered p {
    margin: 0;
    color: #999;
    font-size: 0.85rem;
}

.footer-powered a {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 4px;
}

.footer-powered a:hover {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-1px);
}

/* Tablet portrait */
@media (max-width: 900px) {
    .header {
        min-height: 65px;
    }

    .header-content {
        min-height: 65px;
        padding: 0.8rem 25px;
        max-width: 100%;
    }

    .logo img {
        height: 42px;
    }

    .nav-menu {
        gap: 0.8rem;
    }

    .nav-menu a {
        font-size: 0.85rem;
        padding: 6px 8px;
    }

    .lang-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .header {
        min-height: 60px;
    }

    .header-content {
        padding: 0.5rem 20px;
        gap: 0.5rem;
        min-height: 60px;
        max-width: 100%;
    }

    .logo img {
        height: 40px;
    }

    .language-selector {
        display: none;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px) saturate(180%);
        flex-direction: column;
        padding: 1.5rem 1rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        justify-content: flex-start;
        gap: 0;
        margin: 0;
        max-height: 400px;
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu a {
        padding: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        font-size: 1.1rem;
        margin: 0;
        border-radius: 12px;
        text-align: center;
        transition: all 0.3s ease;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
    }

    .nav-menu a:last-child {
        border-bottom: none;
    }

    .nav-menu a:hover,
    .nav-menu a:focus {
        background: rgba(211, 47, 47, 0.08);
        transform: none;
        color: #d32f2f;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    .mobile-menu-btn.active {
        background: rgba(211, 47, 47, 0.1);
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background: #d32f2f;
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
        background: #d32f2f;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }

    .cta-button {
        min-width: 100%;
        max-width: 320px;
        width: 100%;
        height: 60px;
    }

    .hero-buttons {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text {
        padding: 0 30px;
    }

    .about-images {
        margin-top: 2rem;
    }

    .about-img {
        height: 300px;
        max-width: 100%;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .menu-item {
        height: 500px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.2rem;
    }

    .menu {
        padding: 60px 0;
    }

    .order {
        padding: 60px 0;
    }

    .order-cards {
        padding: 0 20px;
    }

    .order-card {
        width: 100%;
        padding: 2.5rem 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 40px 20px;
        min-height: 100vh !important;
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 3rem;
    }

    .hero-logo img {
        width: 110px;
        height: 110px;
    }

    h2.section-title {
        font-size: 2.4rem;
        margin-bottom: 3rem;
    }

    .about, .gallery, .order, .contact {
        padding: 50px 0;
    }

    .menu {
        padding: 50px 0;
    }

    .restaurant-section {
        padding: 40px 0;
    }

    .restaurant-img {
        height: 300px;
    }

    .contact-item {
        padding: 1.5rem;
    }

    .map-container {
        height: 350px;
    }

    .footer {
        padding: 2.5rem 0;
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 25px 20px;
        min-height: 100vh;
    }

    .hero-logo img {
        width: 80px;
        height: 80px;
    }

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

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

    .hero-buttons {
        gap: 1rem;
    }

    .cta-button {
        min-width: 200px;
        width: 200px;
        height: 50px;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .header {
        min-height: 55px;
    }

    .header-content {
        min-height: 55px;
        padding: 0.4rem 15px;
        max-width: 100%;
    }

    .logo img {
        height: 36px;
    }

    .mobile-menu-btn {
        padding: 8px;
        min-width: 40px;
        min-height: 40px;
    }

    .mobile-menu-btn span {
        width: 20px;
        height: 2px;
    }

    .nav-menu {
        padding: 1rem 0.5rem;
        max-height: 350px;
    }

    .nav-menu a {
        padding: 0.8rem;
        font-size: 1rem;
        min-height: 44px;
    }

    .hero {
        padding: 25px 15px;
    }

    .hero-logo img {
        width: 90px;
        height: 90px;
    }

    .hero-title {
        font-size: 2.4rem;
        line-height: 1.1;
    }

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

    h2.section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .cta-button {
        min-width: 100%;
        width: 100%;
        height: 56px;
        font-size: 1rem;
        padding: 14px 24px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .menu-item {
        height: 350px;
    }

    .order-card {
        padding: 1.5rem 1rem;
    }

    .order-card h3 {
        font-size: 1.4rem;
    }

    .about, .gallery, .order, .contact {
        padding: 30px 0;
    }

    .about-text {
        padding: 0 20px;
    }

    .restaurant-section {
        padding: 25px 0;
    }

    .restaurant-img {
        height: 250px;
    }

    .feature {
        padding: 1.5rem;
    }

    .contact-item {
        padding: 1rem;
    }

    .map-container {
        height: 300px;
    }

    .nav-menu {
        padding: 1.5rem 1rem;
    }

    .nav-menu a {
        padding: 1rem;
        font-size: 1rem;
    }
}



/* Tablet landscape and medium screens */
@media (min-width: 900px) and (max-width: 1199px) {
    .header-content {
        padding: 1rem 30px;
        max-width: 1400px;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-menu a {
        font-size: 0.9rem;
        padding: 6px 10px;
    }

    .language-selector {
        gap: 0.3rem;
    }

    .lang-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}

/* Large screens optimization */
@media (min-width: 1200px) {
    .header-content {
        padding: 1rem 60px;
        max-width: 1400px;
    }

    .nav-menu {
        gap: 1.8rem;
    }

    .nav-menu a {
        font-size: 1rem;
        padding: 8px 16px;
    }

    .header .container {
        padding: 0;
    }
}

@media (min-width: 1600px) {
    .header-content {
        padding: 1rem 80px;
        max-width: 1400px;
    }

    .header .container {
        max-width: none;
        padding: 0;
    }

    .nav-menu {
        gap: 2.2rem;
    }
}

/* Focus states for accessibility */
button:focus,
a:focus {
    outline: 2px solid #d32f2f;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Scroll animations */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* Parallax effect for background elements */
.parallax-element {
    will-change: transform;
    transition: transform 0.1s ease-out;
}

/* Glass morphism effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Gradient text animations */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animated-gradient {
    background: linear-gradient(-45deg, #d32f2f, #c62828, #b71c1c, #d32f2f);
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Floating elements animation */
@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.floating {
    animation: floating 6s ease-in-out infinite;
}

/* Shimmer effect */
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.shimmer-effect {
    position: relative;
    overflow: hidden;
}

.shimmer-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    animation: shimmer 2s infinite;
}

