body {
  font-family: 'Poppins', sans-serif;
  padding-top: 100px
}
/* FOOTER GENEL STİL */
/* custom.css */
/* === Genel Stil === */

/* ========== TOPBAR ========== */
.header-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040; /* navbar'dan küçük olmasın */
}


.header-topbar a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s ease;
}

.header-topbar a:hover {
  text-decoration: underline;
}

/* ========== NAVBAR ========== */
.navbar {
  font-family: 'Poppins', sans-serif;
  padding: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  z-index: 999;
}

.navbar.sticky-top {
  position: sticky;
  top: 0;
}

.navbar-brand img {
  max-height: 90px;
}

/* ========== NAV LINKS ========== */
.navbar-nav .nav-link {
  font-size: 16px;
  font-weight: 500;
  padding: 12px 16px;
  color: #0d2b52;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #ffbc13;
  text-decoration: none;
}

#mainNavbar {
  position: fixed;
  top: 40px; /* topbar'ın yüksekliğine göre ayarla */
  left: 0;
  right: 0;
  z-index: 1050;
}


#mainNavbar.navbar-visible {
  transform: translateY(0);
}

/* ========== DROPDOWN ========== */
.dropdown-menu {
  border: none;
  border-radius: 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.3s ease-in-out;
  margin-top: 0;
}

.dropdown-item {
  font-size: 15px;
  padding: 10px 18px;
  color: #0d2b52;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: #ffbc13;
}

/* Dropdown açıldığında ekstra ok simgesi eklenmesin */
.nav-item.dropdown .dropdown-toggle::after {
  display: none;
}

/* ========== MOBİL UYUMLULUK ========== */
/* Mobilde taşma ve boşlukları sıfırla */
@media (max-width: 768px) {
  body, html {
    overflow-x: hidden;
  }

  .container-fluid,
  .navbar,
  .navbar-brand,
  .navbar-brand img,
  .header,
  .header-topbar {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .navbar-brand img {
    max-height: 20px;
    height: auto;
    width: auto;
    padding-left: 10px;
    margin-bottom: 15px;
  }

  .navbar-toggler {
    margin-left: auto;
    margin-right: 10px;
  }

  .navbar-collapse {
    width: 100%;
    padding: 0 15px;
  }

  .row,
  .col-12,
  .col-sm-12,
  .col-md-12 {
    margin: 0;
    padding: 0;
  }
}


/* ========== ANİMASYON ========== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ========== FOOTER GENEL ========== */
footer {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  background-color: #0d2b52;
  color: #ffffff;
  padding: 60px 0 30px;
}

/* === LOGO === */
.footer__logo {
  width: 180px;
  height: auto;
  margin-bottom: 20px;
}

/* === BAŞLIKLAR === */
.footer-widget__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
  text-transform: uppercase;
}

/* === METİN VE LİSTELER === */
.footer-widget-contact ul,
.footer-widget-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-widget-contact li,
.footer-widget-nav li {
  color: #cccccc;
  font-size: 15px;
  margin-bottom: 10px;
  transition: 0.3s;
}

.footer-widget-contact li i,
.footer-widget-nav li i {
  margin-right: 8px;
  color: #ffbc13;
}

.footer-widget-nav li a {
  color: #dddddd;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-widget-nav li a:hover {
  color: #ffbc13;
  text-decoration: underline;
}

/* === TELEFON VURGULAMA === */
.phone__number {
  color: #ffbc13;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.phone__number i {
  margin-right: 8px;
}

/* === SOSYAL MEDYA === */
.footer-widget-social .social-icons {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

.footer-widget-social .social-icons li {
  list-style: none;
}

.footer-widget-social .social-icons li a {
  font-size: 20px;
  background-color: transparent;  /* sade görünüm */
  color: #ffffff;                 /* beyaz ikon */
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3); /* yarı saydam çerçeve */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-widget-social .social-icons li a:hover {
  background-color: #ffbc13;  /* sarı arka plan */
  color: #0d2b52;             /* lacivert ikon */
  border-color: #ffbc13;      /* sarı çerçeve */
}


/* ========== ALT FOOTER ========== */
.footer-secondary {
  background-color: #062246;
  border-top: 1px solid #1a3a61;
  padding: 15px 0;
  font-size: 14px;
  color: #ffffff;
  display: flex;
  flex-direction: column; /* satır içine alma */
  align-items: center;     /* ortalama */
  justify-content: center; /* ortalama */
  text-align: center;
  gap: 10px;
}

.footer__bottom-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}


.footer__bottom-links li a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.footer__bottom-links li a:hover {
  color: #ffbc13;
  text-decoration: underline;
}

/* ========== RESPONSIVE (Mobil Uyum) ========== */
@media (max-width: 992px) {
  .footer-secondary {
    flex-direction: column;
    text-align: center;
  }

  .footer__bottom-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  footer {
    padding: 40px 20px 30px;
    font-size: 15px;
  }

  .footer__logo {
    margin-bottom: 20px;
  }

  .footer-widget-social .social-icons {
    justify-content: center;
  }
}


/* YUKARI ÇIK BUTONU */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 100px; /* WhatsApp butonuyla çakışmasın diye biraz sola */
  width: 48px;
  height: 48px;
  background-color: #ffbc13;
  color: #0d2b52;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  display: none;
  z-index: 9999;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
  justify-content: center;
  align-items: center;
  display: flex; /* ikonu ortalamak için */
}
#scrollTopBtn:hover {
  background-color: #ffc107;
}



/* WhatsApp Sabit Butonu */
.whatsapp-fixed {
  position: fixed;
  bottom: 90px;
  left: 30px;
  width: 55px;
  height: 55px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, background-color 0.3s;
}

.whatsapp-fixed:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
}

/* galeri image kart */
    .gallery-card {
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }
    .gallery-card:hover {
      transform: translateY(-5px);
    }
    .gallery-thumb {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }
    .video-thumb {
      position: relative;
    }
    .video-thumb::after {
      content: '\f04b';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 2rem;
      color: #fff;
      background: rgba(0,0,0,0.4);
      border-radius: 50%;
      padding: 10px 14px;
    }

    .modal-content {
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 768px) {
  #modalContent img,
  #modalContent video {
    max-height: 50vh;
    object-fit: contain;
  }
}

#modalContent img,
#modalContent video {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
}

.modal-body {
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-title {
  color: #fff !important;
  font-weight: 600;
}

.gallery-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
@media (max-width: 576px) {
  .gallery-thumb {
    height: 120px;
  }
}
