 

 



 
    /* GENEL SAYFA STİLİ */
    body {
      margin: 0;
      padding: 0;
      background-color: #000;
      color: #fff;
      font-family: Arial, sans-serif;
    }

    /* SLIDER RESİMLERİ */
    .carousel-item img {
      max-height: 600px;
      width: 100%;
      object-fit: cover;
    }

    /* REZERVASYON FORMU */
    .form-container {
      background: rgba(0, 0, 0, 0.7);
      padding: 20px;
      border-radius: 10px;
      color: #fff;
    }

    /* KAYAN YAZI */
    .marquee-wrapper {
       
      border: 2px solid #FFD700;
      border-radius: 8px;
      width: 90%;
      margin: 40px auto;
      overflow: hidden;
      position: relative;
      height: 50px;
    }
    .marquee-text {
      white-space: nowrap;
      position: absolute;
      font-size: 1.1rem;
      line-height: 50px;
      animation: marquee 20s linear infinite;
    }
    @keyframes marquee {
      0%   { transform: translateX(0); }
      10%  { transform: translateX(0); }
      100% { transform: translateX(-100%); }
    }

    /* OWL CAROUSEL - YAN YANA RESİMLER */
    .owl-carousel .item {
      position: relative;
    }
    .owl-carousel .item img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      border-radius: 8px;
    }

    /* PLAY BUTONU */
    .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(255, 215, 0, 0.8);
        color: #000;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 24px;
        z-index: 2;
      }
      .owl-carousel .item {
        position: relative;
      }
      

    


    /* SOSYAL MEDYA BÖLÜMÜ */
    .social-media {
      
      padding: 50px 0;
      text-align: center;
    }
    .social-media h2 {
      
      text-transform: uppercase;
      font-weight: bold;
    }
    .social-media hr {
      border: 1px solid #FFD700;
      width: 220px;
      margin: 10px auto 30px auto;
    }
    .social-media .icon-box {
      display: inline-block;
      margin: 15px;
      
      padding: 15px;
      border-radius: 10px;
      box-shadow: 0px 0px 10px rgba(255, 215, 0, 0.5);
    }
    .social-media .icon-box img {
      width: 160px;
      height: auto;
    }
    .social-media p {
      color: #fff;
      margin-top: 10px;
    }



    /* Fiyat Listesi Bölümü */
.price-list-section {
  background-color: #000;
  color: #FFD700;
  text-align: center;
  padding: 50px 0;
}

.price-title {
  text-transform: uppercase;
  font-weight: bold;
  color: #FFD700;
}

.price-divider {
  border: 1px solid #FFD700;
  width: 220px;
  margin: 10px auto 30px auto;
}

/* Fiyat Kartları */
.price-box {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.price-card {
  background: #222;
  border: 1px solid #FFD700;
  border-radius: 10px;
  padding: 15px;
  width: 100%;
  max-width: 350px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* İkonun solda olması */
.icon-container {
  display: flex;
  align-items: center;
  margin-right: 15px;
}

.icon-container i {
  font-size: 30px;
  color: #FFD700;
}

/* Lokasyon yazıları */
.location-container {
  flex: 1;
  text-align: left;
}

.from-location, .to-location {
  font-size: 16px;
  font-weight: bold;
}

.arrow {
  color: #FFD700;
  font-size: 18px;
  margin: 0 5px;
}

/* Nabız Efekti */
.animated-price {
  font-size: 20px;
  font-weight: bold;
  color: #FFD700;
  animation: pulse 1.5s infinite;
}

/* Nabız Animasyonu */
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
  .price-box {
    width: 100%;
    justify-content: center;
  }

  .price-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .icon-container {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .location-container {
    text-align: center;
  }

  .animated-price {
    margin-top: 10px;
  }
}


/* Blog Bölümü Genel Stili */
/* Genel Blog Stili */
/* Genel Blog Bölümü */
.blog-section {
    background-color: #000;
    color: #FFD700;
    padding: 50px 0;
}

.blog-title {
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    color: #FFD700;
}

.blog-divider {
    border: 1px solid #FFD700;
    width: 220px;
    margin: 10px auto 30px auto;
}

/* Blog Kartları */
.blog-post {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

/* Blog Kartı Genel Çerçeve */
.blog-wrapper {
    width: 80%;
}

/* İçerik ve Resim Aynı Çerçevede */
.blog-box {
    display: flex;
    align-items: center;
    border: 2px solid #FFD700;
    border-radius: 10px;
    padding: 20px;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Efekti */
.blog-box:hover {
    transform: scale(1.02);
    box-shadow: 0px 0px 15px rgba(255, 215, 0, 0.8);
}

/* Blog Resmi */
.blog-image {
    flex: 1;
    max-width: 40%;
    overflow: hidden;
    border-radius: 10px;
}

.blog-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Blog İçerik */
.blog-content {
    flex: 1;
    padding: 20px;
    color: #fff;
}

/* Başlık */
.blog-content h3 {
    color: #FFD700;
    font-size: 22px;
    margin-bottom: 10px;
}

/* Açıklama */
.blog-content p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 15px;
}

/* Hashtag Alanı */
.blog-hashtags {
    margin-bottom: 15px;
}

.hashtag {
    display: inline-block;
    background-color:rgb(249, 247, 239);
    color: #000;
    padding: 5px 10px;
    font-size: 10px;
    font-weight: bold;
    border-radius: 5px;
    margin-right: 5px;
}

/* Devamını Oku Butonu */
.blog-content .btn {
    background-color: #FFD700;
    color: #000;
    font-weight: bold;
    padding: 10px 15px;
    text-transform: uppercase;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.blog-content .btn:hover {
    background-color: #FFA500;
}

/* Sağda ve Solda Resim Ayarı */
.blog-post.reverse .blog-box {
    flex-direction: row-reverse;
}

/* Mobil Görünüm */
@media (max-width: 768px) {
    .blog-box {
        flex-direction: column;
        text-align: center;
    }

    .blog-image {
        max-width: 100%;
    }

    .blog-content {
        padding: 15px 0;
    }
}

/**********************
 * YORUM EKLEME FORMU
 **********************/
.yorum-ekle {
    background-color: #000;  /* Siyah arka plan */
    color: #FFD700; /* Altın sarısı yazılar */
    padding: 60px 0;
}

.yorum-ekle .card {
    border: 2px solid #FFD700; /* Altın sarısı çerçeve */
    border-radius: 10px;
    padding: 20px;
}

.yorum-ekle .card h4 {
    color: #FFD700;
    text-transform: uppercase;
    font-weight: bold;
}

.yorum-ekle .form-control,
.yorum-ekle .form-control-file {
    
    color: #fff;
    border: 1px solid #FFD700;
    border-radius: 5px;
    margin-bottom: 10px;
}

.yorum-ekle select {
    
    color: #FFD700;
    border: 1px solid #FFD700;
}

.yorum-ekle button {
    background-color: #FFD700;
    color: #000;
    font-weight: bold;
    padding: 10px 15px;
    text-transform: uppercase;
    border-radius: 5px;
    transition: background 0.3s ease;
    width: 100%;
}

.yorum-ekle button:hover {
    background-color: #FFA500;
}

/**********************
 * MÜŞTERİ YORUMLARI
 **********************/
.musteri-yorumlari {
    padding: 60px 0;
}

.yorum-karti {
     /* Kart koyu gri */
    border: 2px solid #FFD700; /* Altın sarısı çerçeve */
    border-radius: 10px;
    padding: 20px;
    max-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yorum-karti:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 15px rgba(255, 215, 0, 0.8);
}

.yorum-baslik {
    font-size: 18px;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 10px;
}

.yorum-icerik {
    font-size: 16px;
    color: #34d364;
    margin-bottom: 15px;
}

.yorum-puan {
    font-size: 20px;
    color: #FFD700;
    margin-bottom: 10px;
}

.yorum-tarih {
    font-size: 14px;
    color: #34d364;
}

.yorum-resimler {
    display: flex;
    gap: 10px;
}

.yorum-resimler img {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    border: 1px solid #FFD700;
}

/* Mobil Görünüm */
@media (max-width: 768px) {
    .yorum-karti {
        max-width: 100%;
        margin: 20px 10px;
    }

    .yorum-resimler {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Beyaz Tema */
body.light-theme {
  background-color: #fff;
  color: #000;
}

body.light-theme .form-container,
body.light-theme .social-media,
body.light-theme .price-list-section,
body.light-theme .blog-section,
body.light-theme .yorum-ekle,
body.light-theme .musteri-yorumlari {
  background-color: #f8f9fa;
  color: #000;
}

body.light-theme .form-control,
body.light-theme .form-control-file,
body.light-theme select,
body.light-theme button,
body.light-theme .price-card,
body.light-theme .blog-box,
body.light-theme .yorum-karti {
  background-color: #fff;
  color: #000;
  border: 1px solid #ccc;
}

body.light-theme .btn {
  background-color: #007bff;
  color: #fff;
}

body.light-theme .btn:hover {
  background-color: #0056b3;
}

body.light-theme .price-title,
body.light-theme .blog-title,
body.light-theme .yorum-baslik {
  color: #000;
}

body.light-theme .price-divider,
body.light-theme .blog-divider {
  border-color: #000;
}

body.light-theme .icon-container i,
body.light-theme .arrow,
body.light-theme .animated-price,
body.light-theme .yorum-puan {
  color: #000;
}

body.light-theme .navbar,
body.light-theme .py-2 {
  background-color: #ffffff;
  color: #d70404;
}

body.light-theme .navbar .nav-link,
body.light-theme .text-white {
  color: #d70404;
}

 
    .whatsapp-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 999;
    }

    @media (max-width: 768px) {
      .whatsapp-button {
        bottom: 20px;
        right: 10px;
      }
    }


    @keyframes blink {
    50% {
      opacity: 0;
    }
  }

  /* Turuncu rengi */
  .blink-text {
    color: orange;
    animation: blink 1s infinite; /* Animasyonun süresi ve döngüsü */
  }
  

  .video-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
  }
  
  .video-carousel .owl-nav button.owl-prev,
  .video-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    pointer-events: all;
  }
  
  .video-carousel .owl-nav button.owl-prev {
    left: -40px; /* sola dışa taşı */
  }
  
  .video-carousel .owl-nav button.owl-next {
    right: -40px; /* sağa dışa taşı */
  }
  
  .video-carousel .owl-nav i {
    background-color: rgba(255, 215, 0, 0.95);
    padding: 10px;
    border-radius: 50%;
    color: black;
    font-size: 24px;
    transition: background 0.3s;
  }
  
  .video-carousel .owl-nav i:hover {
    background-color: #ffc107;
  }
  @media (max-width: 768px) {
    .video-carousel .owl-nav button.owl-prev {
      left: -10px;
    }
  
    .video-carousel .owl-nav button.owl-next {
      right: -10px;
    }
  }
    
  .footer-legal {
    color: #bbb;
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
  }
  
  .footer-legal a {
    color: #FFD700;
    margin: 0 6px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .footer-legal a:hover {
    color: #fff;
    text-decoration: underline;
  }
  