/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    padding-bottom: 70px; /* Alt menü için boşluk */
}

/* Header Stili */
header {
    background-color: #2c3e50;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.logo {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background-color: #000;
    padding: 2rem;
    overflow: hidden;
    margin: 0;
}

.logo::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    opacity: 0.3;
    z-index: 0;
}

.logo-image {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 1;
}

.logo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo h1 {
    position: relative;
    color: #fff;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    z-index: 1;
}

.logo a {
    text-decoration: none;
    color: #fff;
}

/* Alt Menü Stili */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 1rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.bottom-nav a {
    color: #666;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-nav a:hover {
    color: #2c3e50;
    background-color: #f5f5f5;
}

.bottom-nav a.active {
    color: #3498db;
    background-color: #f5f5f5;
}

/* Yatay Menü Stili */
.menu-nav {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox için */
    -ms-overflow-style: none; /* IE ve Edge için */
    padding: 0.5rem;
	
}

.menu-nav::-webkit-scrollbar {
    display: none; /* Chrome, Safari ve Opera için */
}

.menu-nav-container {
    display: inline-flex;
    gap: 1.5rem;
    padding: 0.5rem 1rem;
}

.menu-nav-container a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
}

.menu-nav-container a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Ana Sayfa Kategoriler */
.categories-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.categories-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.category-card {
    position: relative;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    height: 180px;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.category-card:hover img {
    opacity: 1;
}

.category-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    color: #fff;
    z-index: 1;
}

.category-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.category-content p {
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    max-width: 80%;
}

/* Menü Sayfası Stilleri */
.menu-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.menu-section {
    margin-bottom: 3rem;
}

.menu-section h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3498db;
}

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

.menu-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-item h3 {
    padding: 1rem;
    color: #2c3e50;
}

.menu-item p {
    padding: 0 1rem;
    color: #666;
    font-size: 0.9rem;
}

.menu-item .price {
    display: block;
    padding: 1rem;
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Footer Stili */
footer {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

/* İşletme Detayları Sayfası Stilleri */
.business-details-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.business-details-container section {
    margin-bottom: 3rem;
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.business-details-container h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3498db;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.business-details-container h2 i {
    color: #3498db;
}

/* WiFi Kartı */
.wifi-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.wifi-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.btn {
    background: #3498db;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #2980b9;
}

/* İletişim Kartları */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card i {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: #3498db;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Harita */
.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Sosyal Medya */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
    background: #e9ecef;
}

.social-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.social-card:nth-child(1) i { color: #E1306C; } /* Instagram */
.social-card:nth-child(2) i { color: #1877F2; } /* Facebook */
.social-card:nth-child(3) i { color: #1DA1F2; } /* Twitter */
.social-card:nth-child(4) i { color: #000000; } /* TikTok */
.social-card:nth-child(5) i { color: #FF0000; } /* YouTube */

/* Çalışma Saatleri */
.hours-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.hours-grid {
    display: grid;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.hours-item .day {
    font-weight: bold;
    color: #2c3e50;
}

.hours-item .time {
    color: #3498db;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .categories-grid,
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .logo-image {
        width: 80px;
        height: 80px;
    }

    .menu-item img {
        height: 180px;
    }

    .category-card {
        height: 150px;
    }

    .category-content h3 {
        font-size: 1.3rem;
    }

    .category-content p {
        font-size: 0.9rem;
        max-width: 90%;
    }

    .menu-nav-container {
        gap: 1rem;
    }

    .menu-nav-container a {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .bottom-nav a {
        font-size: 1.3rem;
        width: 45px;
        height: 45px;
    }
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-item,
.category-card {
    animation: fadeIn 0.5s ease-out;
} 