/* Genel Ayarlar */
body {
    margin-top: 70px;
    font-family: 'Cambria', Cochin, Georgia, Times, 'Times New Roman', serif;
    background-color: #fafafa;
    color: #333;
}

/* Navbar */
.navbar {
    background-color: #ffffff;
    padding: 8px 0; /* Yüksekliği küçülttük */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    width: 120px; /* Logo boyutunu küçülttük */
}

.navbar-nav .nav-link {
    font-size: 22px;
    margin-right: 10px;
}
/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}


/* Hero Bölümü */
.hero-section {
    position: relative;
    height: 95vh;
    overflow: hidden;
    margin-top: 70px;
}

.carousel-item img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    z-index: 2;
}

/* Responsive için düzenleme */
@media (max-width: 768px) {
    .hero-text {
        font-size: 30px;
    }
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

/* Hakkımızda Bölümü */
#hakkimizda {
    text-align: center;
    background-color: #f8f9fa;
    padding: 50px 0;
}

#hakkimizda h2 {
    font-size: 45   px;
    margin-bottom: 20px;
}

#hakkimizda p {
    font-size: 23px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Çizgi Stili */
.section-divider {
    border: 0;
    height: 1px;
    background: #ddd;
    margin: 40px auto;
    width: 80%;
}

/* İletişim Bölümü */
#iletisim {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 60px 0;
}

.section-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
}

.contact-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    margin-bottom: 20px;
    text-align: center; /* Orta hizalama */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 50px;
    margin-bottom: 15px;
}

.contact-item h5 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.contact-item p, .contact-item a {
    font-size: 16px;
    color: #555;
    text-decoration: none;
}

.contact-item a:hover {
    color: #007bff;
}

/* Buton Stilleri */
.contact-item .btn {
    margin-top: 10px;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 5px;
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

    .contact-item {
        padding: 15px;
    }

    .contact-icon {
        width: 40px;
    }

    .contact-item h5 {
        font-size: 16px;
    }

    .contact-item p {
        font-size: 14px;
    }

    /* Mobilde Instagram ve Konum için margin-top'u kaldır */
    .col-md-4 {
        margin-top: 0 !important; /* margin-top'ı sıfırla */
    }
}

/* Aynı boyutta hizalama için ekstra stil */
.contact-item {
    height: 250px; /* Her iki öğe için sabit yükseklik */
}



/* Responsive Tasarım */
@media (max-width: 768px) {
    .hero-text {
        font-size: 35px;
    }

    .navbar-nav .nav-link {
        font-size: 16px;
    }

    #hakkimizda p {
        font-size: 16px;
    }

    .row h3 {
        font-size: 26px;
    }

    .row p {
        font-size: 16px;
    }

    .hero-section {
        height: 60vh;
    }

    .carousel-item img {
        height: 60vh;
    }
}
/* Kahveler Bölümü */
#kahveler .row {
    display: flex;
    flex-wrap: wrap; /* Kartların yan yana gelmesini engeller */
    margin: -10px; /* Kartlar arası boşluğu dengeler */
}

#kahveler .col-md-6 {
    flex: 0 0 50%; /* Büyük ekranlarda her satırda 2 kart */
    max-width: 50%; /* Maksimum genişlik */
    padding: 10px; /* Kartlar arası boşluk */
    box-sizing: border-box; /* Padding'i genişliğe dahil et */
}

#kahveler .card {
    width: 100%; /* Kartların genişliği tam olarak kaplasın */
    border: none;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    height: 450px; /* Kartların yüksekliğini artırdık */
    display: flex;
    flex-direction: column;
}

#kahveler .card:hover {
    transform: scale(1.05);
}

#kahveler .card img {
    height: 300px; /* Resim yüksekliğini artırdık */
    object-fit: cover;
}

#kahveler .card-body {
    text-align: center;
    padding: 10px; /* Yazı kısmının padding'ini ayarladık */
    flex-grow: 1; /* Yazı kısmının esnek olmasını sağladık */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#kahveler .card-title {
    font-size: 23px; /* Başlık boyutu */
    margin-bottom: 10px; /* Başlık ile açıklama arası boşluk */
}

#kahveler .card-text {
    font-size: 20px; /* Açıklama yazı boyutu */
    color: #555; /* Açıklama rengi */
    margin-bottom: 0; /* Açıklama alt boşluğu */
}

/* Mobil için ekstra ayarlar */
@media (max-width: 768px) {
    #kahveler .col-md-6 {
        flex: 0 0 100%; /* Mobilde her satırda 1 kart */
        max-width: 100%; /* Maksimum genişlik */
    }

    #kahveler .card {
        height: auto; /* Mobilde kart yüksekliği otomatik */
    }

    #kahveler .card img {
        height: 200px; /* Mobilde resim yüksekliği */
    }

    #kahveler .card-title {
        font-size: 18px; /* Mobilde başlık boyutu */
    }

    #kahveler .card-text {
        font-size: 15px; /* Mobilde açıklama yazı boyutu */
    }
}
/* Slider Bölümü */
#imageSlider {
    max-width: 800px; /* Slider'ın maksimum genişliği */
    margin: 0 auto; /* Slider'ı ortala */
    border-radius: 10px; /* Köşeleri yuvarla */
    overflow: hidden; /* Taşan içeriği gizle */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Gölge efekti */
}

#imageSlider .carousel-item img {
    height: 500px; /* Slider resimlerinin yüksekliği */
    object-fit: cover; /* Resimlerin boyutlandırılması */
}

/* Mobil için ayarlar */
@media (max-width: 768px) {
    #imageSlider {
        max-width: 100%; /* Mobilde tam genişlik */
    }

    #imageSlider .carousel-item img {
        height: 250px; /* Mobilde resim yüksekliği */
    }
}
/* Gizlilik Politikası Modal Stili */
#privacyModal .modal-content {
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

#privacyModal .modal-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
}

#privacyModal .modal-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

#privacyModal .modal-body {
    padding: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

#privacyModal .modal-body h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

#privacyModal .modal-body h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #333;
}

#privacyModal .modal-body ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

#privacyModal .modal-body ul li {
    margin-bottom: 5px;
}

#privacyModal .modal-footer {
    border-top: 1px solid #ddd;
    background-color: #f8f9fa;
}

#menu {
    font-family: 'Arial', sans-serif;
    color: #333;
}

.menu-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.menu-card:hover {
    transform: scale(1.02);
}

.menu-card h2.category {
    font-size: 28px;
    border-bottom: 2px solid #555;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    padding: 8px 0;
    border-bottom: 1px dashed #ddd;
}

.menu-list li span:first-child {
    font-weight: 500;
}

@media (max-width: 768px) {
    .menu-card h2.category {
        font-size: 24px;
    }

    .menu-list li {
        font-size: 16px;
    }
}
