/* Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background-color: #fdfaf6;
    color: #333;
    line-height: 1.6;
}

/* Sabit Üst Menü - Banner */
header {
    background-color: #2c1810; /* Kahve tonu */
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

nav {
    display: flex;
    justify-content: center;
    gap: 25px;
}

nav a {
    color: #ecd9c6;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.3s;
}

nav a:hover {
    color: #fff;
}

/* Ana İçerik Konteynırı */
.main-content {
    margin-top: 80px; /* Menünün altında kalmaması için */
    padding: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* ANA SAYFA ÖZEL (Hero Bölümü) */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1509042239860-f550ce710b93?q=80&w=1587&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    border-radius: 15px;
    margin-bottom: 40px;
}

.hero h1 { font-size: 4rem; color: #d4a373; }

/* Grid Yapısı (Kartlar) */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
}

/* Basit Sayfalar İçin Alt Başlık */
.page-title {
    border-bottom: 2px solid #2c1810;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.menu-grid {
    display: grid;
    /* Mobilde 1, tablette 2, geniş ekranda 3 sütun */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px; /* Kartlar arası boşluk */
    padding: 20px;
}

/* Her bir kahve kartı */
.menu-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden; /* Resim büyüdüğünde taşmasını önler */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: 0.3s ease;
}

/* Resim çerçevesi */
.image-frame {
    height: 250px; /* Sabit yükseklik */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
}

/* Kahve Resmi */
.menu-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmi çerçeveye sığdırır */
    transition: transform 0.5s ease; /* Yumuşak geçiş efekti */
}

/* HOVER EFEKTİ: Fare ile gelince resim büyür */
.menu-item:hover img {
    transform: scale(1.15); /* Resmi %115 büyüt */
}

/* Kahve İsmi */
.menu-item h3 {
    color: #2c1810;
    padding: 15px;
    font-size: 1.2rem;
    border-top: 1px solid #eee;
    background: #fff;
    margin: 0;
}.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.contact-info-box {
    flex: 1;
    min-width: 300px;
    background: #fcf8f3;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #d4a373;
}

.info-item {
    margin-bottom: 20px;
}

.info-item h4 {
    color: #2c1810;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.info-item p {
    font-size: 1.1rem;
    color: #555;
}.footer-alt {
    text-align: center;      /* Yazıyı ortalar */
    padding: 40px 0 20px 0;  /* Üstten ve alttan boşluk bırakır */
    color: #aaa;             /* Yazı rengini açık gri yapar */
    font-size: 14px;         /* Yazı boyutu */
    width: 100%;             /* Sayfayı tam kaplar */
    font-family: sans-serif; /* Yazı tipi */
}
@media (max-width: 768px) {
    .container {
        flex-direction: column; /* Yan yana olanları alt alta getirir */
    }
    
    .menu {
        display: none; /* Mobilde karmaşık menüyü gizleyebilirsin */
    }
}