﻿/* Genel Stiller */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

/* Header */
header {
    background: #2c3e50; /* Modern koyu gri mavi ton */
    color: #ecf0f1; /* Açık gri beyaz ton */
    text-align: center;
    padding: 2em 1em;
    border-bottom: 4px solid #34495e; /* Daha koyu bir gri mavi ton */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    position: relative;
}

/* Header İçerik */
.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header Yazıları */
.header-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-text h1 {
    margin: 0;
    font-size: 2.5em;
    font-weight: 700;
    color: #ecf0f1;
}

.header-text .tagline {
    margin-top: 0.5em;
    font-size: 1.2em;
    font-weight: 400;
    color: #bdc3c7; /* Açık gri mavi */
}

/* Main İçeriği */
main {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 1em;
}

/* Kategori Container */
.category-container {
    max-width: 600px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Dinamik kolon sayısı */
    gap: 1em; /* Kategoriler arasındaki boşluk */
    width: 100%; /* Kapsayıcı genişlik */
}

/* Kategori Kutuları */
.category-box {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    text-align: left;
    padding: 1em;
    cursor: pointer;
    position: relative; /* İçerik konumlandırması için */
    height: 220px; /* Sabit yükseklik */
    display: flex;
    align-items: flex-end; /* Kategori ismini altta ortala */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-box:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 16px rgba(0, 0, 0, 0.3);
}

/* Kategori İsmi */
.category-box h2 {
    margin: 0;
    font-size: 0.9em;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Metni öne çıkar */
    background: rgba(0, 0, 0, 0.3); /* Arka plan için yarı saydam koyu zemin */
    padding: 0.5em 1em;
    border-radius: 8px;
}

/* Menü Container */
.menu-container {
    flex-grow: 1;
    margin-left: 2em;
    position: relative; /* Lightbox ve diğer elementler için */
}

/* Menü Başlığı */
.menu-header {
    background: #007bff; /* Modern mavi */
    color: white;
    padding: 1.5em;
    border-radius: 12px;
    margin-bottom: 1em;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    position: relative;
}

.menu-header h2 {
    margin: 0;
    font-size: 2.2em;
    font-weight: 500;
}

/* Geri Dönüş Butonu */
.back-button {
    position: absolute;
    top: 1em;
    right: 1em; /* Sağ tarafa yaslamak için */
    background: #ffffff;
    color: #007bff;
    border: none;
    border-radius: 8px;
    padding: 0.5em 1em;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

.back-button:hover {
    background: #f1f1f1;
}

/* Menü Ürünleri */
.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1em;
}

/* Menü Ürünleri İçindeki Görseller */
.menu-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* İçerik sola dayalı */
    position: relative;
}

.menu-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
}

.menu-item img {
    width: 100%;
    height: 200px; /* Sabit yükseklik */
    object-fit: cover; /* Görseli kaplayacak şekilde kırpma */
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.menu-item img:hover {
    transform: scale(1.15); /* Hover sırasında biraz büyür */
}

/* Menü Ürünleri İçindeki Metinler */
.menu-item h3,
.menu-item p,
.menu-item span {
    margin: 0;
    text-align: left; /* Sol dayalı */
    width: 100%; /* Kapsayıcı genişlik */
}

/* Menü Ürünleri Başlığı */
.menu-item h3 {
    margin-top: 0.5em;
    font-size: 1.2em;
    font-weight: 500;
    color: #2c3e50; /* Koyu gri mavi ton */
}

/* Menü Ürünleri Açıklaması */
.menu-item p {
    margin: 0.5em 0;
    color: #7f8c8d; /* Gri mavi ton */
}

/* Menü Ürünleri Fiyatı */
.menu-item span {
    display: block;
    font-weight: 700;
    color: #007bff; /* Modern mavi */
    margin-top: 0.5em;
}

/* Menü Ürünleri Fiyatının Konumu */
.menu-item .price-container {
    position: absolute;
    bottom: 1em;
    left: 1em;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.lightbox-img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 12px;
}

.lightbox-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2em;
    color: #ecf0f1;
    cursor: pointer;
}

/* WhatsApp Butonu */
.whatsapp-button {
    position: fixed;
    bottom: 20px; /* Sayfanın altından 20px yukarıda */
    right: 20px; /* Sayfanın sağından 20px içeride */
    font-size: 1.2rem; /* Butonun font boyutu küçültüldü */
    padding: 6px 9px;
    display: flex;
    align-items: center;
    background-color: #25d366;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    width: fit-content;
    transition: background-color 0.3s ease;
    z-index: 1000; /* Butonun diğer öğelerin üstünde görünmesi için */
    overflow: hidden;
}

.whatsapp-button:hover {
    background-color: #1ebe5b;
}


.whatsapp-button .fab {
    font-size: 2.2rem;
    margin-right: 10px;
    transition: margin-right 2.5s ease; /* Logo kenar boşluğu değişimi */
}

.whatsapp-button span {
   display: inline-block;
   white-space: nowrap;
   animation: fadeInOut 35s infinite;
   animation-delay: 1.5s;
}

/* Harflerin animasyonu ve genişlik kontrolü */
@keyframes fadeInOut {
    0% {
        opacity: 1;
        width: auto; /* Başlangıç genişliği */
    }
    30% {
        opacity: 0;
        width: 0; /* Genişlik küçülür */
        margin-right: 0;
    }
    60% {
        opacity: 0;
        width: 0; /* Genişlik tamamen kaybolur */
        margin-right: 0;
    }
    90% {
        opacity: 1;
        width: auto; /* Genişlik eski haline döner */
        margin-right: 10px;
    }
    100% {
        opacity: 1;
        width: auto; /* Yazı tekrar görünür */
        margin-right: 10px;
    }
}

.whatsapp-button i {
    margin: 0px 10px;
    font-size: 2em; /* Büyük simge boyutu */
}

/* Responsive Tasarım */
@media (min-width: 768px) {
    .whatsapp-button {
        padding: 10px; /* Orta ve büyük ekranlar için buton boyutu */
        font-size: 1em;
    }

    .whatsapp-button i {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .header-text h1 {
        font-size: 2em;
    }

    .header-text .tagline {
        font-size: 1em;
    }

    .menu-header h2 {
        font-size: 1.8em;
    }

    .category-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .category-box {
        height: 180px;
    }
}

@media (max-width: 576px) {
    main {
        flex-direction: column;
        align-items: center;
    }

    .menu-container {
        margin-left: 0;
        width: 100%;
    }

    .category-box {
        height: 150px;
    }

    .menu-header h2 {
        font-size: 1.6em;
    }

    .menu-item {
        padding: 0.5em;
    }

    .menu-item h3 {
        font-size: 1em;
    }

    .menu-item p {
        font-size: 0.9em;
    }

    .menu-item span {
        font-size: 1em;
    }
}

@media (max-width: 576px) {
    .whatsapp-button {
        padding: 5px; /* Daha küçük ekranlar için buton boyutu */
        font-size: 1em;
    }

    .whatsapp-button i {
        font-size: 1.1em;
    }
}

/* Menü Başlıkları */
@media (max-width: 992px) {
    .menu-header {
        padding: 1em;
    }

    .menu-header h2 {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .header-text h1 {
        font-size: 2em;
    }

    .header-text .tagline {
        font-size: 1em;
    }

    .menu-header h2 {
        font-size: 1.8em;
    }

    .category-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .category-box {
        height: 180px;
    }
}

@media (max-width: 576px) {
    main {
        flex-direction: column;
        align-items: center;
    }

    .menu-container {
        margin-left: 0;
        width: 100%;
    }

    .category-box {
        height: 150px;
    }

    .menu-header h2 {
        font-size: 1.6em;
    }

    .menu-item {
        padding: 0.5em;
    }

    .menu-item h3 {
        font-size: 1em;
    }

    .menu-item p {
        font-size: 0.9em;
    }

    .menu-item span {
        font-size: 1em;
    }
}
