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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #d2691e 0%, #cd853f 30%, #daa520 70%, #b8860b 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: #FFD700;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s ease;
}

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

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
}

.lang-btn:hover,
.lang-btn.active {
    background: #FFD700;
    color: #8B4513;
    border-color: #FFD700;
    transform: translateY(-2px);
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(210, 105, 30, 0.8), rgba(205, 133, 63, 0.8), rgba(218, 165, 32, 0.8), rgba(184, 134, 11, 0.8)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23f4f1eb" width="1200" height="600"/><circle fill="%23d4af37" cx="200" cy="150" r="80" opacity="0.1"/><circle fill="%23b8860b" cx="1000" cy="400" r="120" opacity="0.1"/></svg>');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 70px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #8B4513;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    background: linear-gradient(45deg, #FFA500, #FFD700);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #fff;
}

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

.about-text h2 {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-logo {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
}

.about-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.2);
}

.image-placeholder {
    background: linear-gradient(135deg, #f4f1eb, #e8e0d6);
    border: 2px dashed #8B4513;
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    color: #8B4513;
    width: 100%;
    max-width: 400px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.1);
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background: #f8f9fa;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 3rem;
    font-weight: 600;
}

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

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.gallery-item .image-placeholder {
    height: 250px;
    border: none;
    border-radius: 15px;
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
}

/* Menu Header */
.menu-header {
    background: linear-gradient(135deg, #d2691e 0%, #cd853f 30%, #daa520 70%, #b8860b 100%);
    color: #fff;
    text-align: center;
    padding: 6rem 0 3rem;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.menu-header::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 fill="rgba(255,255,255,0.05)" cx="20" cy="20" r="2"/><circle fill="rgba(255,255,255,0.03)" cx="80" cy="40" r="1.5"/><circle fill="rgba(255,255,255,0.04)" cx="40" cy="80" r="1"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.menu-header h1 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.menu-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

/* Menu Categories */
.menu-categories {
    background: #fff;
    padding: 3rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    position: relative;
}

.menu-categories::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 2px;
}

.category-buttons {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.category-btn {
    background: transparent;
    border: 1px solid rgba(139, 69, 19, 0.2);
    color: #8B4513;
    padding: 0.7rem 1.2rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 400;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #8B4513, #A0522D);
    transition: left 0.4s ease;
    z-index: -1;
}

.category-btn:hover,
.category-btn.active {
    color: #fff;
    border-color: #8B4513;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.2);
}

.category-btn:hover::before,
.category-btn.active::before {
    left: 0;
}

/* Menu Items */
.menu-items {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f6f0 0%, #f0ede6 100%);
    min-height: 60vh;
    position: relative;
}

.menu-items::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 fill="rgba(139,69,19,0.02)" cx="20" cy="20" r="1"/><circle fill="rgba(139,69,19,0.03)" cx="80" cy="40" r="1.5"/><circle fill="rgba(139,69,19,0.02)" cx="40" cy="80" r="1"/></svg>');
    pointer-events: none;
}

.menu-category {
    margin-bottom: 6rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 6rem;
    position: relative;
    z-index: 1;
}

.menu-category h2 {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 600;
    position: relative;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.menu-category h2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    z-index: 1;
}

.menu-category h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 2px;
    z-index: 2;
}

.menu-category h2 span {
    background: linear-gradient(135deg, #f8f6f0 0%, #f0ede6 100%);
    padding: 0 2rem;
    position: relative;
    z-index: 3;
    display: inline-block;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(139, 69, 19, 0.15);
    overflow: hidden;
    border: 2px solid rgba(139, 69, 19, 0.1);
    position: relative;
}

.menu-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
    z-index: 1;
}

.menu-item {
    background: #fff;
    padding: 2rem 3rem;
    border-bottom: 1px solid rgba(139, 69, 19, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

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

.menu-item:hover {
    background: linear-gradient(135deg, #fff 0%, #faf8f5 100%);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.1);
}

.menu-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.menu-item:hover::before {
    transform: scaleY(1);
}

/* Menu Item Numbering */
.menu-item::after {
    content: counter(menu-item);
    counter-increment: menu-item;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #8B4513;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.menu-item:hover::after {
    opacity: 1;
    transform: scale(1.1);
}

.menu-grid {
    counter-reset: menu-item;
}

.menu-item-content {
    flex: 1;
    min-width: 0;
}

.menu-item-content h3 {
    color: #8B4513;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.menu-item-content p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 0.95rem;
    font-weight: 400;
    font-style: italic;
}

.price {
    color: #8B4513;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    white-space: nowrap;
    flex-shrink: 0;
    text-align: right;
    min-width: 80px;
}

.price::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    opacity: 0.4;
    border-radius: 1px;
}

/* Contact Header */
.contact-header {
    background: linear-gradient(135deg, #d2691e 0%, #cd853f 30%, #daa520 70%, #b8860b 100%);
    color: #fff;
    text-align: center;
    padding: 8rem 0 4rem;
    margin-top: 70px;
}

/* About Header */
.about-header {
    background: linear-gradient(135deg, #d2691e 0%, #cd853f 30%, #daa520 70%, #b8860b 100%);
    color: #fff;
    text-align: center;
    padding: 8rem 0 4rem;
    margin-top: 70px;
}

.about-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.about-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Services Header */
.services-header {
    background: linear-gradient(135deg, #d2691e 0%, #cd853f 30%, #daa520 70%, #b8860b 100%);
    color: #fff;
    text-align: center;
    padding: 8rem 0 4rem;
    margin-top: 70px;
}

.services-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.services-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contact-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Contact Info */
.contact-info {
    padding: 4rem 0;
    background: #fff;
}

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

.contact-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #FFD700;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-icon {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #8B4513;
    font-size: 1.5rem;
}

.contact-card h3 {
    color: #8B4513;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

/* Contact Form */
.contact-form-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-container h2 {
    text-align: center;
    color: #8B4513;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #8B4513;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B4513;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(45deg, #8B4513, #A0522D);
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
    background: linear-gradient(45deg, #A0522D, #8B4513);
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: #fff;
}

.map-section h2 {
    text-align: center;
    color: #8B4513;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
}

.map-placeholder {
    background: linear-gradient(135deg, #f4f1eb, #e8e0d6);
    border: 2px dashed #8B4513;
    border-radius: 15px;
    padding: 4rem;
    text-align: center;
    color: #8B4513;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.map-placeholder p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Interactive Features */
.interactive-menu-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.interactive-menu-item::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.5s ease-in-out;
    z-index: 1;
}

.interactive-menu-item:hover::before {
    left: 100%;
}

/* Natural variations for human-like feel */
.menu-item:nth-child(odd) {
    transform: translateX(-2px);
}

.menu-item:nth-child(even) {
    transform: translateX(2px);
}

.menu-item:hover {
    transform: translateY(-8px) scale(1.02) !important;
}

/* Subtle imperfections */
.menu-category h2 {
    transform: rotate(-0.5deg);
}

.menu-category:nth-child(even) h2 {
    transform: rotate(0.3deg);
}

/* Natural spacing variations */
.menu-item:nth-child(3n) {
    margin-top: 5px;
}

.menu-item:nth-child(5n) {
    margin-bottom: 8px;
}

.price-animation {
    transition: all 0.3s ease;
}

.price-animation:hover {
    transform: scale(1.1);
    color: #2d5a2d !important;
}

.menu-item-hover-effect {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-item-hover-effect:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(26, 61, 10, 0.15);
}

/* Scroll Animations */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Interactive Buttons */
.interactive-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.interactive-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Loading Animation */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

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

/* Pulse Animation */
.pulse-animation {
    animation: pulse 2s infinite;
}

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

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Interactive Menu Features */
.clickable-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.clickable-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(210, 105, 30, 0.2);
}

.item-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item:hover .item-actions {
    opacity: 1;
}

.add-to-cart-btn, .favorite-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.add-to-cart-btn {
    background: linear-gradient(45deg, #d2691e, #cd853f);
    color: white;
    flex: 1;
}

.add-to-cart-btn:hover {
    background: linear-gradient(45deg, #b8860b, #daa520);
    transform: scale(1.05);
}

.favorite-btn {
    background: #fff;
    color: #d2691e;
    border: 2px solid #d2691e;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.favorite-btn:hover {
    background: #d2691e;
    color: white;
    transform: scale(1.1);
}

.favorite-btn.active {
    background: #d2691e;
    color: white;
}

/* Cart Counter */
.cart-counter {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #d2691e;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
    z-index: 1000;
    display: none;
    animation: bounce 0.5s ease;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Interactive Price Display */
.price:hover {
    transform: scale(1.2) rotate(5deg);
    color: #d2691e !important;
    font-weight: bold;
}

/* Menu Item Rating */
.menu-item-rating {
    display: flex;
    gap: 0.2rem;
    margin-top: 0.5rem;
}

.star {
    color: #ffd700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.star:hover {
    transform: scale(1.2);
}

.star.active {
    color: #ff6b35;
}

/* Interactive Category Filter */
.category-filter {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    justify-content: center;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid #d2691e;
    background: transparent;
    color: #d2691e;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-btn:hover,
.category-btn.active {
    background: #d2691e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(210, 105, 30, 0.3);
}

/* Services Page Styles */
.main-services {
    padding: 5rem 0;
    background: #fff;
}

.main-services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 3rem;
    font-weight: 600;
}

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

.service-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #2d5a2d;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-icon {
    background: linear-gradient(45deg, #1a3d0a, #2d5a2d);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    font-size: 1.5rem;
}

.service-card h3 {
    color: #8B4513;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.delivery-services {
    padding: 5rem 0;
    background: #f8f9fa;
}

.delivery-services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 3rem;
    font-weight: 600;
}

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

.delivery-text h3 {
    font-size: 2rem;
    color: #8B4513;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.delivery-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.delivery-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #8B4513;
    font-weight: 500;
}

.feature i {
    color: #2d5a2d;
}

.trendyol-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #1a3d0a, #2d5a2d);
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 61, 10, 0.3);
}

.trendyol-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 61, 10, 0.4);
    background: linear-gradient(45deg, #2d5a2d, #1a3d0a);
}

.special-services {
    padding: 5rem 0;
    background: #fff;
}

.special-services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 3rem;
    font-weight: 600;
}

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

.special-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #4a7c59;
}

.special-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.special-icon {
    background: linear-gradient(45deg, #4a7c59, #2d5a2d);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    font-size: 1.5rem;
}

.special-card h3 {
    color: #8B4513;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c1810 0%, #3d2317 100%);
    color: #fff;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: #FFD700;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #FFD700;
    color: #8B4513;
    transform: translateY(-3px);
}

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

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

/* Menu Category Animation Delays */
.menu-category:nth-child(1) { animation-delay: 0.1s; }
.menu-category:nth-child(2) { animation-delay: 0.2s; }
.menu-category:nth-child(3) { animation-delay: 0.3s; }
.menu-category:nth-child(4) { animation-delay: 0.4s; }
.menu-category:nth-child(5) { animation-delay: 0.5s; }
.menu-category:nth-child(6) { animation-delay: 0.6s; }

/* Menu Item Stagger Animation */
.menu-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-item:nth-child(2) { animation-delay: 0.2s; }
.menu-item:nth-child(3) { animation-delay: 0.3s; }
.menu-item:nth-child(4) { animation-delay: 0.4s; }

/* Smooth Category Filtering */
.menu-category.hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    pointer-events: none;
}

.menu-category.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

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

    .nav-toggle {
        display: flex;
    }

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

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

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

    .about-text h2 {
        font-size: 2rem;
    }

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

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 0;
        margin: 0 1rem;
        max-width: calc(100% - 2rem);
    }

    .menu-item {
        padding: 1.5rem 2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .menu-item-content {
        width: 100%;
    }

    .price {
        align-self: flex-end;
        margin-top: 0.5rem;
    }

    .category-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .category-btn {
        width: 200px;
        padding: 0.8rem 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 2rem;
        margin: 0 1rem;
    }

    .language-switcher {
        margin-left: 1rem;
    }

    .menu-header {
        padding: 4rem 0 2rem;
    }

    .menu-header h1 {
        font-size: 2.2rem;
    }

    .menu-categories {
        padding: 2rem 0;
    }

    .about-logo {
        max-width: 300px;
        height: 250px;
    }

    .gallery-image {
        height: 200px;
    }
}

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

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .about-text h2,
    .gallery h2,
    .menu-header h1,
    .contact-header h1 {
        font-size: 1.8rem;
    }

    .menu-category h2 {
        font-size: 1.6rem;
    }

    .form-container {
        padding: 1.5rem;
    }

    .about-logo {
        max-width: 250px;
        height: 200px;
    }

    .gallery-image {
        height: 150px;
    }
}

/* Arabic RTL Support */
[dir="rtl"] {
    text-align: right;
}

/* Fix phone number display in Arabic */
.phone-number {
    direction: ltr;
    unicode-bidi: bidi-override;
    display: inline-block;
}

[dir="rtl"] .phone-number {
    direction: ltr;
    unicode-bidi: bidi-override;
    text-align: left;
}

[dir="rtl"] .nav-menu {
    flex-direction: row-reverse;
}

[dir="rtl"] .about-content {
    direction: rtl;
}

[dir="rtl"] .contact-grid {
    direction: rtl;
}

[dir="rtl"] .footer-content {
    direction: rtl;
}

[dir="rtl"] .social-links {
    flex-direction: row-reverse;
}

/* Smooth scrolling for better UX */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
.image-placeholder {
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: loading 2s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

