/* Menü Stilleri */
body {
    background-color: #d4a76a;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

/* Modern Header Stilleri */
.modern-header {
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    position: relative;
    z-index: 1000;
}

.top-bar {
    background-color: #8B4513;
    color: #fff;
    padding: 8px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a {
    color: #fff;
    margin-right: 20px;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #d4a76a;
}

.contact-info i {
    margin-right: 5px;
}

.social-links a {
    color: #fff;
    margin-left: 15px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #d4a76a;
}

.main-header {
    padding: 20px 0;
    display: flex;
    align-items: center;
    background-color: #fff;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    flex: 0 0 auto;
}

.logo {
    max-height: 80px;
    width: auto;
}

.menu-title {
    flex: 1;
    text-align: center;
}

.menu-title h1 {
    font-size: 32px;
    color: #8B4513;
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Modern Footer Stilleri */
.modern-footer {
    background-color: #1a1a1a;
    color: #fff;
    margin-top: 60px;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
    padding-right: 20px;
}

.footer-title h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #d4a76a;
}

.footer-info p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

.footer-info i {
    margin-right: 10px;
    color: #d4a76a;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a:before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #d4a76a;
}

.footer-links a:hover {
    color: #d4a76a;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon.facebook {
    background-color: #3b5998;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    background-color: #111;
    padding: 20px 0;
    border-top: 1px solid #333;
}

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

.copyright p {
    margin: 0;
    font-size: 14px;
    color: #888;
}

.designer-logo {
    height: 30px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.designer-logo:hover {
    opacity: 1;
}

/* Kategori Stilleri */
.category-section {
    margin-bottom: 50px;
}

.category-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #8B4513;
    text-align: center;
    position: relative;
}

.category-title:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background-color: #e74c3c;
}

.category-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.menu-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 30px 0;
}

.menu-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.menu-item-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

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

.menu-item:hover .menu-item-image img {
    transform: scale(1.05);
}

.menu-item-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #e0e0e0;
    min-height: 50px; /* Fiyat olmadığında da yüksekliği korumak için */
}

.menu-item-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    padding-right: 10px;
}

.menu-item-price {
    font-size: 18px;
    font-weight: 700;
    color: #e74c3c;
    white-space: nowrap;
    min-width: 70px; /* Fiyat alanı için minimum genişlik */
    text-align: right;
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .category-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .main-header .container {
        flex-direction: column;
    }
    
    .logo-container {
        margin-bottom: 15px;
    }
    
    .menu-title h1 {
        font-size: 28px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-column {
        width: 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .category-items {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-title {
        font-size: 24px;
    }
    
    .menu-item-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .menu-item-title {
        font-size: 16px;
        margin-right: 10px;
    }
    
    .menu-item-price {
        font-size: 16px;
    }
    
    .menu-item-image {
        height: 180px;
    }
    
    .top-bar-content {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info {
        margin-bottom: 10px;
    }
    
    .contact-info a {
        display: block;
        margin-bottom: 5px;
        text-align: center;
    }
    
    .social-links {
        margin-top: 5px;
    }
    
    .menu-title h1 {
        font-size: 24px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .copyright {
        margin-bottom: 15px;
    }
} 