/* Genel Container Ayarları */
.containerkahve {
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 30px;
    position: relative;
    color: rgb(255, 255, 255);
    font-family: sans-serif;
}

.MENÜkahve {
    margin-top: 55px;
    text-align: center;
    padding: 20px 10px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.MENÜkahve h1 {
    font-size: 2.1em;
    margin-bottom: 15px;
    color: #ffffff;
}

 .box-head h3 {
        display: block;
        font-size: 1.0em; /* Yazıları biraz büyüt */
        white-space: normal; /* Uzun kelimeler taşmasın */
        word-wrap: break-word;
        padding: 5px 0; /* Üst ve alt boşluk ekle */
        font-weight: 1000;
    }

/* Ürün Görselleri */
.box-head .boximg {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
}

.containerkahvescnk {
    background: url(../img/foto-9.jpg) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    min-height: 100vh;
}

/* Ürün Kartları */
.box {
    background: hsla(39, 100%, 38%, 0.77);
    border-radius: 15px;
    background: url(../img/wp-8.jpg); /* Arka plan resmi */
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    padding: 15px;
    word-wrap: break-word; /* Kelimeleri bölerek taşmayı önle */
    text-align: center; /* Yazıları ortala */
}

/* Ürünleri Flexbox ile Dizecek Kısım */
.box-containerkahve {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.box-containerkahve .box {
    width: calc(20% - 20px); /* Beşli sütun düzeni */
    max-width: 500px;
    box-sizing: border-box;
}

/* Mobil Uyum (Responsive) */
@media (max-width: 750px) {
    .box-containerkahve .box {
        width: calc(50% - 10px); /* İki sütun düzeni */
    }
    .box {
        word-break: break-word; /* Yazının taşmasını önle */
        padding: 10px; /* Daha iyi boşluk ayarı */
    }
}