:root {
    --primary-color: #c8a97e;
    --secondary-color: #333;
    --light-color: #f8f9fa;
    --dark-color: #222;
    --text-color: #555;
    --text-light: #777;
    --bg-color: #f9f5f0;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* menua.css'ye ekle */
@media (max-width: 768px) {
    .footer-content {
        text-align: center;
        grid-template-columns: 1fr;
    }
    
    .footer-logo {
        margin: 0 auto;
    }
    
    .footer-info {
        margin-top: 20px;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 20px;
    }
    
    .phone-link::before,
    .email-link::before {
        display: none;
    }
    
    .phone-link,
    .email-link {
        display: block;
        margin: 5px 0;
    }
}

/* menu.css dosyasına ekleyin veya var olanı güncelleyin */

/* Buffet bölümündeki TÜM öğeleri tıklanamaz yap */
#buffet .menu-item {
    pointer-events: none;
    cursor: default;
    opacity: 1;
    transform: none;
}

#buffet .menu-item:hover {
    transform: none;
    box-shadow: var(--box-shadow);
}

/* Theme Switcher */
.theme-switcher-container {
    position: fixed;
    bottom: 70px;
    right: 20px;
    z-index: 100;
}

.theme-switcher {
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.theme-switcher:hover {
    background-color: #b8986a;
    transform: scale(1.1);
}

.theme-switcher i {
    font-size: 1.1rem;
}

#buffet .menu-item .view-details {
    display: none !important;
}

/* Buffet'teki tüm item'larda hover efekti kaldır */
#buffet .menu-item:hover .item-image img {
    transform: none;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Styles */
.menu-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/header-bg.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 100px 20px 60px;
    position: relative;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    overflow: hidden;
    margin: 0 auto 20px;
    display: block;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: white;
}

.header-divider {
    width: 100px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto 20px;
}

.restaurant-slogan {
    font-style: italic;
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Menu Navigation */
.menu-navigation {
    background-color: white;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.menu-navigation ul {
    display: flex;
    justify-content: center;
    list-style: none;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    overflow-x: auto;
}

.menu-navigation li {
    margin: 0 15px;
}

.menu-navigation a {
    color: var(--text-color);
    font-weight: 600;
    padding: 5px 0;
    position: relative;
    transition: var(--transition);
}

.menu-navigation a:hover {
    color: var(--primary-color);
}

.menu-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.menu-navigation a:hover::after {
    width: 100%;
}

/* Menu Container */
.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Opening Hours */
.opening-hours {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.opening-hours h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.opening-hours h2 i {
    margin-right: 10px;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.hours-grid h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.hours-grid p {
    color: var(--text-light);
}

.note {
    font-style: italic;
    margin-bottom: 20px;
}

blockquote {
    font-style: italic;
    padding: 20px;
    border-left: 3px solid var(--primary-color);
    background-color: rgba(200, 169, 126, 0.1);
    margin-top: 20px;
}

/* Menu Sections */
.menu-section {
    margin-bottom: 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.section-divider {
    width: 80px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

/* Menu Items */
.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.menu-item {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.item-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.menu-item:hover .item-image img {
    transform: scale(1.05);
}

.view-details {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(200, 169, 126, 0.9);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.menu-item:hover .view-details {
    opacity: 1;
}

.item-content {
    padding: 20px;
}

.item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    align-items: center;
}

.item-header h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Allergen Info */
.allergen-info {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    margin-top: 40px;
    box-shadow: var(--box-shadow);
}

.allergen-info h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.allergen-info p {
    margin-bottom: 15px;
    line-height: 1.7;
}

/* Telefon ve e-posta bağlantı stilleri */
.phone-link, .email-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    padding: 2px 5px;
    border-radius: 3px;
}

.phone-link:hover, .email-link:hover {
    background-color: rgba(200, 169, 126, 0.1);
    transform: translateY(-2px);
}

.phone-link::before {
    content: "\f095";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 8px;
}

.email-link::before {
    content: "\f0e0";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 8px;
}

/* Footer */
.menu-footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 50px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-info p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    transition: var(--transition);
    border-radius: 50%;
    overflow: hidden;
}

.social-links a:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.social-links img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .social-links {
        justify-content: center;
        gap: 10px;
    }
    
    .social-links img {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .social-links {
        gap: 8px;
    }
    
    .social-links img {
        width: 32px;
        height: 32px;
    }
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background-color: white;
    border-radius: var(--border-radius);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    transform: translateY(20px);
    transition: var(--transition);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-gallery {
    position: relative;
}

.modal-image-container {
    height: 400px;
    overflow: hidden;
}

.modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-nav {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 5;
}

.modal-prev, .modal-next {
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--secondary-color);
}

.modal-prev:hover, .modal-next:hover {
    background-color: var(--primary-color);
    color: white;
}

.image-counter {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.modal-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.modal-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-title {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.modal-price {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.modal-description {
    color: var(--text-light);
    line-height: 1.7;
    flex-grow: 1;
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-dropbtn {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.language-dropbtn:hover {
    background-color: #b8986a;
}

.language-dropbtn img {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

.language-dropdown-content {
    display: none;
    position: absolute;
    bottom: 100%;
    right: 0;
    background-color: white;
    min-width: 150px;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    z-index: 1;
    margin-bottom: 10px;
}

.language-dropdown-content a {
    color: var(--text-color);
    padding: 10px 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.language-dropdown-content a:hover {
    background-color: rgba(200, 169, 126, 0.1);
    color: var(--primary-color);
}

.language-dropdown-content img {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

.language-dropdown:hover .language-dropdown-content {
    display: block;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .menu-header h1 {
        font-size: 2.2rem;
    }
    
    .menu-navigation ul {
        justify-content: flex-start;
    }
    
    .modal-container {
        grid-template-columns: 1fr;
        max-height: 80vh;
    }
    
    .modal-gallery {
        height: 300px;
    }
    
    .modal-image-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .menu-header {
        padding: 80px 20px 40px;
    }
    
    .menu-header h1 {
        font-size: 1.8rem;
    }
    
    .menu-items {
        grid-template-columns: 1fr;
    }
    
    .modal-gallery {
        height: 250px;
    }
    
    .modal-image-container {
        height: 250px;
    }
    
    .modal-content {
        padding: 20px;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
}