body{

    display: block;
    background-image: url(../images/BEYAZZ1.jpg);
    background-size: cover;
    font-family:'Gill Sans', 'Gill Sans MT','Trebuchet MS', sans-serif
    
}
#header{
    background-color: #333;
}
 /* Navbar yazı rengi ve stili */
 /* Navbar marka ve yazı stilleri */
 .navbar-brand p {
    font-weight: bold;
    color: rgb(221, 194, 39) !important;
    margin: 0;
}
.navbar-toggler-icon {
    background-image: url('custom-icon.png'); /* Özel bir ikon ekleyebilirsin */
}

/* Menü yazıları */
.nav-link {
    font-weight: bold;
    color: #fff !important;
    margin: 0 15px; /* Sağ ve sol boşluklar */
}
.navbar-toggler {
    border-color: #DDC227; /* Buton çerçeve rengi */
}

.navbar-toggler-icon {
    background-color: #DDC227; /* Menü ikonu arka plan rengi */
    filter: invert(1); /* İkon rengini beyaza çevirir (isteğe bağlı) */
}

/* Dropdown menü */
.dropdown-menu a {
    color: #000 !important;
}
.dropdown-menu a:hover {
    font-weight: bold;
    background-color: rgb(221, 194, 39);
    color: #fff !important;
}
/* Navbar genel boşluklar */
.navbar-nav {
    gap: 20px; /* Menü elemanları arası boşluk */
}
footer {
    background-color: #333; /* Arka plan rengi */
    color: #fff; /* Yazı rengi */
    text-align: center; /* Ortalanmış yazı */
    padding: 1px;
    width: 100%; /* Sayfanın tamamını kaplar */
    position:relative; /* Doğal akış */
    bottom: 0;
    left: 0;
    font-weight: bold;
    margin: auto;
}

/* Footer'daki link */
footer a {
    color: red; /* Kırmızı link rengi */
    text-decoration: none;
}
/*MODAL BURDA/*
/* Modal stilini oluştur */
/* Genel Stil */
/* Genel Stil */

/* Ürün Kartları */
.product-card {
    text-align: center;
    margin-bottom: 20px; /* Alt boşluk */
    padding: 10px;
    border: 1px solid rgb(61, 60, 60);
    border-radius: 5px;
    background-color: rgb(61, 60, 60);
    display:flexbox;
    
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 295px; /* Kartın sabit yüksekliği */
}

/* Ürün Görselleri */
.product-card img { 
    width: 70%; /* Görsel genişliğini %90 olarak ayarla */
    height: auto; /* Oranı koruyarak yüksekliği ayarla */
    max-height: 235px; /* Görselin en fazla yüksekliği */
    object-fit: contain; /* Görüntüyü kırpmadan göster */
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 10px;
}

/* Ürün Adı */
.product-card h5 {
    font-size: 14px;
    margin-top: 5px;
    font-weight: bold;
    color: #333;
    color: rgb(221, 194, 39);
    text-align: center;
}

/* Ürünler Arasındaki Boşluk */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Kartlar arasında boşluk */
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    margin: 10% auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    text-align: center;
    position: relative;
}

.modal-content img {
    width: 55%;
    height: auto;
    margin: auto;
    border-radius: 5px;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
/* Mobil cihazlar */
@media (max-width: 768px) {
    .menu {
      display: flex;
      flex-direction: column;
    }
    img {
      width: 50px;
      height: auto;
    }
  }
  
  /* Masaüstü cihazlar */
  @media (min-width: 769px) {
    .menu {
      display: flex;
      flex-direction: row;
    }
  }
  .slider-dots li:nth-child(3) {
    background-color: #FF5733 !important;
}

