
  /* HEADER */
  .main-header {
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    backdrop-filter: blur(5px);
  }
  
  .main-header .logo {
    color: white;
    font-size: 20px;
    font-weight: bold;
  }
  
  .main-header .nav-link {
    color: white !important;
    margin: 0 10px;
    font-weight: 500;
    transition: 0.3s;
  }
  
  .main-header .nav-link:hover {
    text-decoration: underline;
    color: #f4b400 !important;
  }
  
  .main-header .social-icons {
    display: flex;
    align-items: center;
  }
  
  .main-header .social-icons a {
    color: white;
    margin-left: 15px;
    font-size: 18px;
    transition: 0.3s;
  }
  
  .main-header .social-icons a:hover {
    color: #f4b400;
  }
  
  /* MOBİL HEADER */
  @media (max-width: 991px) {
    .main-header .social-icons {
      display: none;
    }
  
    .main-header .navbar-collapse {
      background-color: rgba(0, 0, 0, 0.9);
      padding: 20px;
      border-radius: 5px;
      text-align: center;
    }
  
    .main-header .nav-link {
      display: block;
      margin: 10px 0;
    }
  }
  
  /* SLIDER */
  .carousel-item {
    height: 100vh;
    position: relative;
  }
  
  .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
    pointer-events: none;
  }
  
  .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    width: 100%;
    padding: 0 15px;
  }
  
  .carousel-caption h1 {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    margin-bottom: 10px;
  }
  
  .carousel-caption p {
    font-size: 1.25rem;
    color: #eee;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
  }
  
  .carousel-indicators li {
    background-color: white;
    width: 10px;
    height: 10px;
    border-radius: 50%;
  }
  
  .carousel-indicators .active {
    background-color: #f4b400;
  }
  
  /* GENEL SECTION */
  section {
    padding: 80px 0;
    background: #fff;
    border-bottom: 1px solid #ddd;
  }
  
  h1, h2, h3 {
    text-align: center;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    border-bottom: 3px solid #f4b400;
    display: inline-block;
    padding-bottom: 5px;
  }
  
  /* ABOUT */
  .about-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
  }
  
  /* FACILITIES */
  .facilities-section .row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; 
    gap: 20px;
  }
  
  
  .facilities-section i {
    display: block;
    margin-bottom: 10px;
    color: #f4b400;
  }
  
  /* GALERİ */
  .gallery-section h3 {
    display: block;
    width: fit-content;
    margin: 0 auto 30px auto;
    border-bottom: 3px solid #f4b400;
    padding-bottom: 5px;
  }
  
  
  
  .gallery-section img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.3s ease;
    cursor: pointer;
  }
  
  .gallery-section img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }
  
  /* MODAL İMG */
  .modal-content img {
    max-width: 100%;
    max-height: 80vh;
    margin: 0 auto;
    display: block;
    border-radius: 10px;
  }
  
  /* CONTACT */
  .contact-section {
    background: #f9f9f9;
    padding: 60px 0;
  }
  
  .contact-section .lead {
    font-size: 1.5rem;
    color: #333;
  }
  
  /* PHONE LINK */
  .phone-link {
    color: #333;
    text-decoration: none;
    font-weight: bold;
  }
  
  .phone-link:hover {
    color: #f4b400;
    text-decoration: underline;
  }
  
  /* FOOTER (Yeni Versiyon) */
  .custom-footer {
    background: #f5f5f5;
    padding: 60px 0 30px 0;
    color: #333;
  }
  
  .custom-footer h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
  }
  
  .custom-footer p,
  .custom-footer li,
  .custom-footer a {
    font-size: 0.95rem;
    color: #555;
  }
  
  .custom-footer a:hover {
    color: #f4b400;
    text-decoration: none;
  }
  
  .footer-social {
    text-align: center;
    margin-top: 20px;
  }
  
  .footer-social a {
    display: inline-block;
    background: #000;
    color: #fff;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    text-align: center;
    margin: 0 5px;
    transition: 0.3s;
  }
  
  .footer-social a:hover {
    background: #f4b400;
    color: #000;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .main-header {
      padding: 10px 0;
    }
  
    .main-header .logo {
      font-size: 18px;
    }
  
    .main-header .nav-link {
      font-size: 14px;
      margin: 0 5px;
    }
  
    .carousel-caption h1 {
      font-size: 2rem;
    }
  
    .carousel-caption p {
      font-size: 1rem;
    }
  
    .facilities-section .row {
      flex-direction: column;
      align-items: center;
    }
  
    .gallery-container img {
      width: 100%;
      height: auto;
    }
  }
  

  .whatsapp-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 9999;
  }
  
  .whatsapp-fixed i {
    font-size: 22px;
    color: white;
    transition: none;
  }
  
  .whatsapp-fixed:hover {
    background-color: #1ebe5d; /* biraz koyusu */
    text-decoration: none;
  }
  
  .whatsapp-fixed:hover i {
    color: white; /* maviye dönmesin */
  }
  
  .whatsapp-fixed {
    font-size: 17px;
    font-weight: 700;
  }
  
  .whatsapp-fixed,
.whatsapp-fixed:hover {
  color: white;
  text-decoration: none;
}
