@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;700&display=swap');

:root {
  --primarycolor: #FBAD18;
  --secondarycolor: #85837D;
  --thirdcolor: #0c243d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  /* Yatay kaydırmayı engeller */
}

html {
  scroll-behavior: smooth;
}

/* Header */

/* Menü açıkken scroll'u engelle */

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding-left: 0 !important;
}

.menu-header button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  color: inherit;
}

/* Container sadece navbar içeriğini sarmalar */
.container-navbar {
  max-width: 1800px;
  /* İçeriğin genişliğini ayarla */
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40%;
  /* Header yüksekliği kadar */
}

/* Ana Header (Navbar) */
.main-header {
  position: fixed;
  /* Sayfa içeriğinin üzerine çıkar */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  /* Diğer öğelerin üzerinde kalması için */
  padding: 15px 0;
  /* Üst ve alt boşluk */
  height: 80px;
  /* Navbar yüksekliğini belirleyebilirsiniz */
  background-color: transparent;
  /* Başlangıçta şeffaf */
  transition: background-color 0.3s ease;
}

.main-header.scrolled {
  background-color: var(--thirdcolor);
  /* İsteğe göre renk */
  color: black;
  /* Yazı rengi değişebilir */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  height: 18%;
}

/* Logo ayarı */
.logo img {
  height: 150px;
  /* Logonuzun boyutuna göre ayarlayın */
  display: block;
  margin-top: 30px;
}

/* Ana menü dropdown stilleri */
.main-nav {
  display: block;
  margin-top: 5.5rem;
}

.main-nav .nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  gap: 2rem;
}

.main-nav .nav-item {
  position: relative;
}

.main-nav .nav-link {
  color: #fff;
  text-decoration: none;
  padding: 10px 5px;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.3s ease;
  gap: 5px;
  cursor: pointer;
  position: relative;
}

.main-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primarycolor);
  transition: width 0.3s ease;
}

.main-nav .nav-item:hover .nav-link::after {
  width: 100%;
}

.main-nav .nav-link i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
  margin-left: 4px;
}

.main-nav .nav-item:hover .nav-link {
  color: var(--primarycolor);
}

.main-nav .nav-item:hover .nav-link i {
  transform: rotate(180deg);
}

.main-nav .dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: rgba(255, 255, 255, 0.98);
  min-width: 280px;
  padding: 15px 0;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  display: block;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.main-nav .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.main-nav .dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.98);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.main-nav .dropdown-menu li {
  list-style: none;
  margin: 4px 0;
}

.main-nav .dropdown-menu li a {
  color: #0c243d;
  text-decoration: none;
  padding: 10px 25px;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
}

.main-nav .dropdown-menu li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background-color: var(--primarycolor);
  transition: height 0.3s ease;
}

.main-nav .dropdown-menu li a:hover {
  background-color: rgba(12, 36, 61, 0.05);
  padding-left: 30px;
}

.main-nav .dropdown-menu li a:hover::before {
  height: 70%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
}

.mobile-actions {
  display: none;
  align-items: center;
  gap: 10px;
}

.search-toggle-button {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  margin-right: 10px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.search-toggle-button:hover {
  color: var(--primarycolor);
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

.social-icons a {
  color: inherit;
  /* Ana rengi alır */
  margin-left: 12px;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--primarycolor);
}

.lang-switch {
  display: flex;
  gap: 6px;
  flex-wrap: nowrap;
  margin-top: 84px !important;
}

.lang-switch a {
  color: rgba(255, 255, 255, 0.7);
  /* Ana renge göre ayarla */
  /* color: rgba(51, 51, 51, 0.7); */
  font-weight: bold;
  font-size: 1.1rem;
  display: flex;
  white-space: nowrap;
}

.lang-switch a.active {
  color: #fff;
  /* Ana renge göre ayarla */
  /* color: #333; */
}

.search-icon {
  color: inherit;
  /* Ana rengi alır */
  font-size: 1.2rem;
  cursor: pointer;
  /* Buton gibi davranacak */
}

.search-icon:hover {
  color: var(--primarycolor);
}

.mobile-menu-toggle {
  display: none;
  /* Masaüstünde gizli */
  color: white;
  /* Ana rengi alır */
  font-size: 1.5rem;
  cursor: pointer;
  /* Buton gibi davranacak */
  background-color: rgba(255, 255, 255, 0);
  border: 0;
}

/* Tam Ekran Overlay Menü */
.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #e79701;
  /* Koyu Kırmızı Arkaplan */
  z-index: 9999;
  /* En üstte */
  display: flex;
  /* display: none yerine flex/block kullanıyoruz animasyon için */
  flex-direction: column;
  padding: 20px 40px;
  color: #fff;
  overflow-y: auto;
  /* İçerik sığmazsa scroll çıksın */

  /* Başlangıç durumu: Gizli ve yukarıda */
  opacity: 0;
  visibility: hidden;
  /* Başlangıçta görünmez ve tıklanamaz */
  transform: translateY(-100%);
  /* Başlangıçta tamamen yukarıda */

  /* Geçiş animasyonları */
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0s linear 0.4s;
  /* Önemli:
       - transform ve opacity 0.4 saniyede 'ease' ile değişecek.
       - visibility, menü *gizlenirken* 0.4 saniye gecikmeli olarak (animasyon bittikten sonra) anında (0s) 'hidden' olacak.
    */
}

.fullscreen-menu.active {
  /* Aktif durum: Görünür ve yerinde */
  opacity: 1;
  visibility: visible;
  /* Görünür ve tıklanabilir */
  background-image: url(./images/bfm-opak-logo.png);
  background-repeat: no-repeat;
  background-position: center;
  /* Ortalar */
  transform: translateY(0);
  /* Son pozisyonuna (normal yerine) kaydır */


  /* Aktif olurken visibility gecikmesini sıfırlamak/kaldırmak için transition'ı tekrar tanımlayabiliriz
       veya base'deki tanım yeterli olacaktır. Genellikle base'deki tanım yeterlidir.
       Sadece visibility'nin açılırken gecikmemesini sağlıyoruz. */
  transition: transform 1.3s ease, opacity 1s ease;
  /* visibility'nin hemen (gecikmesiz) 'visible' olmasını sağlar */
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  /* flex-wrap: wrap; Bu satırı kaldırıyoruz */
  gap: 15px;
  /* Öğeler arasına boşluk */
}

.logo-menu img {
  height: 90px;
  /* Menü içindeki logo boyutu */
}

.menu-search-container {
  position: relative;
  flex-grow: 1;
  /* Esnek genişlik */
  margin: 0 10px;
  /* Kenarlara boşluk */
  min-width: 200px;
  /* Minimum genişlik */
  max-width: 400px;
  /* Maksimum genişlik */
}

.menu-search-input {
  width: 100%;
  padding: 10px 40px 10px 15px;
  /* Sağda ikon için boşluk */
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  color: #fff;
  font-size: 1rem;
}

.menu-search-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.menu-search-button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

.menu-search-button:hover {
  color: #fff;
}

.menu-header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  /* Arama kutusundan sonra sağa yasla */
}

.menu-header-actions .lang-switch a {
  color: rgba(255, 255, 255, 0.7);
}

.menu-header-actions .lang-switch a.active {
  color: #fff;
}

.menu-header-actions-fs {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.menu-header-actions-fs .lang-switch {
  margin-top: 0 !important;
  margin-left: 0 !important;
}

.menu-header-actions-fs .lang-switch a {
  color: rgba(255, 255, 255, 0.7);
}

.close-menu-btn {
  font-size: 2rem;
  color: #fff;
  transition: transform 0.3s ease;
  line-height: 1;
}

.close-menu-btn:hover {
  transform: rotate(90deg);
}

.menu-content {
  flex-grow: 1;
  /* Kalan alanı kapla */
  display: flex;
  flex-wrap: wrap;
  /* Küçük ekranlarda alt alta */
  justify-content: space-around;
  /* Sütunları dağıt */
  padding: 40px 0;
}

.menu-column {
  margin-bottom: 30px;
  padding: 0 20px;
}

.menu-column h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 8px;
  display: inline-block;
  /* Alt çizginin yazı kadar olmasını sağlar */
  cursor: pointer;
  /* Başlığa tıklayınca kapatma hissi verir */
  transition: color 0.3s ease;
}

.menu-column h3:hover {
  color: rgba(255, 255, 255, 0.8);
}

.menu-column ul li {
  margin-bottom: 10px;
}

.menu-column ul li a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.menu-column ul li a:hover {
  color: #fff;
  padding-left: 5px;
  /* Hover'da hafif içeri kayma efekti */
}

.menu-footer {
  margin-top: auto;
  /* En alta yasla */
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  /* Ortala */
  gap: 15px;
  font-size: 0.9rem;
}

.social-icons-menu a {
  color: #fff;
  font-size: 1.3rem;
  margin-left: 15px;
  transition: color 0.3s ease;
}

.social-icons-menu a:hover {
  color: #eee;
  /* Hafif soluk beyaz */
}

/* Responsive Tasarım */

@media (max-width: 1490px) {
  .main-nav ul li a {
    font-size: 1.1rem;
    /* Büyük ekranlarda 1.1rem, küçük ekranlarda 1rem */
    padding: 10px 0px;
  }

  .lang-switch a {
    font-size: 1rem;
    padding: 8px 0px;
  }
}

@media (max-width: 1323px) {
  .main-nav ul li a {
    font-size: 0.8rem;
    /* Büyük ekranlarda 1.1rem, küçük ekranlarda 1rem */
    padding: 10px 0px;
  }

  .lang-switch a {
    font-size: 0.9rem;
    padding: 8px 0px;
  }
}

@media (max-width: 1138px) {
  .main-nav ul li a {
    font-size: 0.7rem;
    padding: 9px 0px;
  }


  .lang-switch a {
    font-size: 0.6rem;
    padding: 6px 0px;
  }

  .trigger-button {
    font-size: 10px;
  }
  
}

@media (max-width: 1289px) {
  .main-nav ul li a {
    font-size: 0.8rem !important; 
    padding: 10px 6px !important;
  }

  .header-search-input {
    width: 77px !important;
    height: 27px !important;
    padding: 8px 40px 8px 15px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 20px !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    font-size: 12px !important;
    transition: all 0.3s ease !important;
}


  .lang-switch a {
    font-size: 0.5rem !important;
    padding: 8px 8px !important;
    margin-right: 0;
  }
}

.logo img {
  height: 130px;
  display: block;
  margin-top: 30px;
}

/* 768px ve altı için mobil stil */
@media (max-width: 1030px) {
  .container-navbar {
    padding: 0 20px;
    /* Yan boşlukları artır */
    height: 70px;
    /* Navbar yüksekliğini azalt */
  }

  .main-nav ul li a {
    font-size: 0.6rem;
    /* Yazı boyutunu küçült */
    padding: 8px 0px;
    /* Padding'i azalt */
  }

  .main-nav,
  .header-actions>.lang-switch,
  .header-actions>.search-icon {
    display: none !important;
    /* Masaüstü menüyü ve dil/arama öğelerini gizle */
  }

  .mobile-menu-toggle {
    display: block !important;
    /* Hamburger menüyü göster */
    font-size: 1.8rem;
    margin-top: 5px;
    margin-left: 0;
  }

  .mobile-actions {
    display: flex;
    margin-left: 0;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    top: 15px;
  }

  .logo img {
    height: 100px !important;
    /* Mobil logo boyutu */
    margin-top: -47px !important;
    margin-right: 95px;
  }

  /* Header'ı daha kompakt hale getir */
  .main-header {
    height: 93px !important;
  }

  .slider-container {
    padding: 0 4rem;
    width: 100%;
  }

  /* Menü içi responsive ayarlar */
  .fullscreen-menu {
    padding: 15px 20px;
  }

  .menu-content {
    padding: 20px 0;
    flex-direction: column;
    /* Sütunları dikey hizala */
  }

  .menu-column {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }

  .menu-header {
    padding-bottom: 15px;
  }

  .logo-menu img {
    height: 40px;
    /* Mobil menüdeki logo boyutu */
  }

  .nav-menu {
    display: none;
  }
}


/* 480px ve altı için ekstra küçük ekranlar */
@media (max-width: 480px) {
  .container-navbar {
    padding: 0 15px;
  }

  .logo img {
    height: 100px;
  }

  .mobile-menu-toggle {
    font-size: 1.5rem;
    margin-right: 15px;
  }

  .fullscreen-menu {
    padding: 10px 15px;
  }

  .menu-search-container {
    min-width: 100%;
    /* Arama kutusunu tam genişlik yap */
    order: 3;
    /* Arama kutusunu en alta al */
    margin-top: 15px;
  }

  .menu-header-actions {
    margin-left: 0;
  }

  .logo img {
    height: 120px !important;
    margin-top: -67px !important;
    margin-right: 148px;
  }

  .trigger-button {
    font-size: 14px !important;
    padding: 4px 10px !important;
  }
}

/* Video Styling */
.video-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  /* Place video behind content */
  transform: translateX(-50%) translateY(-50%);
  background-size: cover;
  transition: 1s opacity;
  filter: brightness(95%);
  /* Apply brightness to the video */
  object-fit: cover;
}

/* Buton Stilleri */
.trigger-button {
  background-color: #fff;
  color: var(--primarycolor) !important;
  border: none;
  font-weight: 600 !important;
  padding: 5px 14px ;
  font-size: 17px !important;
  cursor: pointer;
  border-radius: 25px;
  text-transform: uppercase;
  margin-right: 12px;
}


.trigger-button:hover {
  background-color: rgba(0, 0, 0, 0.4);
  color: white !important;
}

/* Logo Slider */

.logo-slider {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  background-color: #0c243d;
}

.logo-slider-container {
  display: flex;
  width: 200%;
  animation: slide 20s linear infinite;
}

.logo-slide {
  width: 50%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-shrink: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
  flex: 1;
  max-width: 310px;
}

.logo-img-container {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  width: 100%;
}

.logo-img-slider {
  max-width: 100%;
  height: auto;
  max-height: 150px;
  filter: grayscale(100%);
  transition: all 0.3s;
  object-fit: contain;
}

.logo-link:hover .logo-img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.logo-text {
  margin-top: 5px;
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .logo-img-container {
    height: 60px;
  }

  .logo-link {
    padding: 0 15px;
    max-width: 180px;
  }
}

@media (max-width: 768px) {
  .logo-slider {
    padding: 20px 0;
  }

  .logo-slider-container {
    width: 200%;
  }

  .logo-slide {
    width: 50%;
    justify-content: space-evenly;
    gap: 10px;
  }

  .logo-link {
    padding: 0 10px;
    max-width: 200px;
  }

  .logo-img-container {
    height: 80px;
  }

  .logo-img-slider {
    max-height: 70px;
  }

  .logo-text {
    display: none;
  }
}

/* Footer Styles */
.footer {
  background-color: #0c243d;
  color: #fff;
  padding: 40px 0;
  width: 100%;
  text-align: start;
}

.footer-content {
  width: 100%;
  max-width: 100%;
  padding: 0 50px;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  gap: 310px;
}

.footer-left {
  flex: 0 0 300px;
  padding-left: 30px;
}

.contact-info {
  margin-left: 0;
  padding-left: 0;
}

.contact-info p {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  margin-left: -10px;
  position: relative;
}

.contact-info p i {
  width: 20px;
  margin-right: 15px;
  text-align: left;
  position: relative;
  left: 0;
}

.contact-info p span {
  flex: 1;
}

.follow-us {
  margin: 20px 0 15px;
  font-size: 18px;
  text-align: left;
  color: var(--primarycolor);
}

.social-icons-footer {
  display: flex;
  gap: 15px;
  margin-left: 0;
  padding-left: 0;
}

.address {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  padding-left: 0;
  color: var(--primarycolor);
}

.logo-footer {
  margin-bottom: 20px;
}

.logo-footer img {
  max-width: 200px;
}

.footer-right {
  flex: 1;
  max-width: 800px;
}

.logo-footer {
  margin-bottom: 20px;
}

.logo-footer img {
  max-width: 200px;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-column h3 {
  color: var(--primarycolor);
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: bold;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--primarycolor);
}

@media (max-width: 992px) {
  .footer-content {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }

  .footer-left {
    flex: none;
    text-align: start;
    padding-left: 0;
  }

  .footer-right {
    max-width: 100%;
  }

  .contact-info p {
    justify-content: center;
    margin-left: 0;
  }

  .contact-info p i {
    margin-right: 10px;
    left: 0;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-column {
    flex: 0 0 calc(50% - 15px);
    text-align: center;
  }
}

@media (max-width: 576px) {
  .footer-column {
    flex: 0 0 100%;
    text-align: start;
  }
}

/* Countdown css */
.countdown-wrapper {
  position: fixed;
  bottom: 20px;
  right: 15px;
  z-index: 9999;
  opacity: 0.9;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  background-color: white;
  padding: 40px;
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  min-width: 250px;
  height: 250px;
}

.timer {
  display: flex;
  gap: 20px;
}

.time-box {
  background-color: var(--thirdcolor);
  color: var(--primarycolor);
  border-radius: 16px;
  padding: 20px 15px;
  width: 81px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.time-value {
  font-size: 32px;
  font-weight: bold;
}

.time-label {
  font-size: 12px;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ccc;
}

.button-group {
  display: flex;
  gap: 15px;
}

.btn {
  border: none;
  border-radius: 12px;
  padding: 14px 24px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-reserve {
  background: linear-gradient(to right, #FBAD18, #FBAD18);
  color: white;
}

.btn-reserve:hover {
  background: linear-gradient(to right, #FBAD18, #FBAD18);
  color: rgb(255, 255, 255);
}

.btn-ticket {
  background: linear-gradient(to right, #040d1b, #182150);
  color: white;
}

.btn-ticket:hover {
  background: linear-gradient(to right, #182150, #182150);
  color: white;
}

@media (max-width: 991px) {
  .countdown-wrapper {
    display: none;
  }
}


/*========================= index.html Css End ==========================*/

/*=============== Hakkımızda.html Css Sidebar bulunan sayfalar css i buradan alıyor =================*/
:root {
  --sidebar-bg: #0c243d;
  --text-color: #ffffff;
  --border-color: #dee2e6;
  --transition-duration: 1s;
}

.banner-yazi {
  position: relative;
  font-size: 48px;
  font-weight: bold;
  padding-top: 178px;
  color: white;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  background-color: #fff;
}

/* Container Styles */
.main-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
}

/* Main Content Styles */
.content-area {
  flex: 1;
  padding: 30px;
  background-color: #ffffff;
  margin-top: 28px;
}

.harita-section {
  background-color: #eff5fd;
}

.ifm-harita {
  width: 937px;
  height: 711px;
  margin-bottom: 25px;
  margin-top: 25px;
}

.pharmaist-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.pharmaist-text {
  flex: 1 1 400px;
  max-width: 600px;
}

.pharmaist-text h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #0a2a43;
  text-align: flex-start;
}

.pharmaist-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #0a2a43;
  text-align: justify;
  padding-left: 20px;
}

.pharmaist-text .highlight {
  font-weight: bold;
  color: #0077a3;
}

.pharmaist-images {
  position: relative;
  flex: 1 1 300px;
  max-width: 500px;
}

.pharmaist-images .img-top {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.pharmaist-images .img-bottom {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 60%;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.breadcrumb {
  font-size: 0.9rem;
  color: #6c757d;
}

.breadcrumb a {
  color: #6c757d;
  text-decoration: none;
  margin-right: 0.5rem;
}

.breadcrumb a:hover {
  color: var(--primarycolor);
}

/* Mobile Menu Toggle */
.sidebar-toggle-button {
  position: fixed;
  bottom: 40px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primarycolor);
  color: white;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: none;
}

/* Responsive Styles */

@media (max-width: 767.98px) {
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1000;
    transform: translateX(-100%);
    width: 80% !important;
    max-width: 300px;
    transition: transform 0.3s ease;
    border-radius: 0;
  }

  .sidebar.show {
    transform: translateX(0);
    height: 100%;
  }

  .sidebar-toggle-button {
    display: block;
  }

  .content-container {
    width: 100%;
    padding: 1rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .main-container {
    max-width: 95%;
  }
}


@media (max-width: 480px) {
  .logo img {
    height: 95px !important;
    margin-top: -61px !important;
    margin-right: 130px;
  }

  .trigger-button {
    font-size: 14px !important;
    padding: 4px 10px !important;
  }
}


/* Loader */

/* From Uiverse.io by doniaskima */
/* HTML: <div class="loader"></div> */

.loading h2 {
  text-align: center;
  position: relative;
  font-weight: 500;
  font-size: 4rem;
  margin-top: 200px;
  color: #000;
}

.loader {
  --c1: #673b14;
  --c2: #f8b13b;
  width: 40px;
  height: 80px;
  margin-left: 50%;
  border-top: 4px solid var(--c1);
  border-bottom: 4px solid var(--c1);
  background: linear-gradient(90deg, var(--c1) 2px, var(--c2) 0 5px, var(--c1) 0) 50%/7px 8px no-repeat;
  display: grid;
  overflow: hidden;
  animation: l5-0 2s infinite linear;
}

.loader::before,
.loader::after {
  content: "";
  grid-area: 1/1;
  width: 75%;
  height: calc(50% - 4px);
  margin: 0 auto;
  border: 2px solid var(--c1);
  border-top: 0;
  box-sizing: content-box;
  border-radius: 0 0 40% 40%;
  -webkit-mask: linear-gradient(#000 0 0) bottom/4px 2px no-repeat,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  background: linear-gradient(var(--d, 0deg), var(--c2) 50%, #0000 0) bottom /100% 205%,
    linear-gradient(var(--c2) 0 0) center/0 100%;
  background-repeat: no-repeat;
  animation: inherit;
  animation-name: l5-1;
}

.loader::after {
  transform-origin: 50% calc(100% + 2px);
  transform: scaleY(-1);
  --s: 3px;
  --d: 180deg;
}

@keyframes l5-0 {
  80% {
    transform: rotate(0)
  }

  100% {
    transform: rotate(0.5turn)
  }
}

@keyframes l5-1 {

  10%,
  70% {
    background-size: 100% 205%, var(--s, 0) 100%
  }

  70%,
  100% {
    background-position: top, center
  }
}

@media (max-width: 768px) {
  .loading h2 {
    font-size: 2.5rem;
    margin-top: 150px;
    padding: 0 20px;
  }

  .loader {
    width: 30px;
    height: 60px;
    margin-left: 45%;
  }
}

@media (max-width: 480px) {
  .loading h2 {
    font-size: 2rem;
    margin-top: 120px;
  }

  .loader {
    width: 25px;
    height: 50px;
    margin-left: 42%;
  }
}

@media (max-width: 768px) {
  .mobile-actions {
    display: flex;
  }

  .header-actions {
    margin-left: auto;
  }
}

@media (max-width: 480px) {
  .search-toggle-button {
    font-size: 1rem;
    padding: 6px;
  }
}

/* Arama Çubuğu Stilleri */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 36, 61, 0.98);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-container {
  width: 90%;
  max-width: 800px;
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-overlay.active .search-container {
  transform: translateY(0);
}

.search-input {
  width: 100%;
  padding: 20px 60px 20px 30px;
  font-size: 24px;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--primarycolor);
  color: white;
  outline: none;
  transition: all 0.3s ease;
}

.search-input:focus {
  border-color: var(--primarycolor);
  box-shadow: 0 4px 20px rgba(251, 173, 24, 0.2);
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
}

.search-close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.search-close:hover {
  color: var(--primarycolor);
  opacity: 1;
  transform: translateY(-50%) rotate(90deg);
}

@media (max-width: 768px) {
  .search-input {
    font-size: 20px;
    padding: 15px 50px 15px 20px;
  }

  .search-close {
    font-size: 20px;
  }

  .search-input::placeholder {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .search-input {
    font-size: 18px;
    padding: 12px 40px 12px 15px;
  }

  .search-close {
    font-size: 18px;
  }

  .search-input::placeholder {
    font-size: 16px;
  }
}


/* Arama Çubuğu Stilleri */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 36, 61, 0.98);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-container {
  width: 90%;
  max-width: 800px;
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-overlay.active .search-container {
  transform: translateY(0);
}

.search-input {
  width: 100%;
  padding: 20px 60px 20px 30px;
  font-size: 24px;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--primarycolor);
  color: white;
  outline: none;
  transition: all 0.3s ease;
}

.search-input:focus {
  border-color: var(--primarycolor);
  box-shadow: 0 4px 20px rgba(251, 173, 24, 0.2);
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
}

.search-close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.search-close:hover {
  color: var(--primarycolor);
  opacity: 1;
  transform: translateY(-50%) rotate(90deg);
}

@media (max-width: 768px) {
  .search-input {
    font-size: 20px;
    padding: 15px 50px 15px 20px;
  }

  .search-close {
    font-size: 20px;
  }

  .search-input::placeholder {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .search-input {
    font-size: 18px;
    padding: 12px 40px 12px 15px;
  }

  .search-close {
    font-size: 18px;
  }

  .search-input::placeholder {
    font-size: 16px;
  }
}

/* header arama çubuğu */

.header-search {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.header-search-input {
  width: 100px;
  height: 36px;
  padding: 8px 40px 8px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 12px;
  transition: all 0.3s ease;
}

.header-search-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.header-search-input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  width: 100px;
}

.header-search-button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 5px;
  transition: color 0.3s ease;
}

.header-search-button:hover {
  color: white;
}

@media (max-width: 1055px) {
  .header-search {
    display: none;
  }

  .lang-switch {
    margin-left: 0 !important;
  }
}


/* Copyright Section Styles */
.copyright-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  gap: 20px;
  flex-wrap: wrap;
}

.copyright-left {
  color: #fff;
}

.copyright-right {
  display: flex;
  gap: 10px;
  align-items: center;
}

.copyright-right a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.copyright-right a:hover {
  color: #007bff;
}

@media (max-width: 768px) {
  .copyright-section {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 15px 20px;
  }
  
  .copyright-right {
    justify-content: center;
  }
}

/* Privacy Modal Styles */
.privacy-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  overflow-y: auto;
}

.privacy-modal-content {
  position: relative;
  background-color: #fff;
  margin: 50px auto;
  padding: 20px;
  width: 90%;
  max-width: 800px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.privacy-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.privacy-modal-header h2 {
  margin: 0;
  color: #333;
  font-size: 24px;
}

.privacy-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  padding: 0;
  line-height: 1;
}

.privacy-modal-close:hover {
  color: #333;
}

.privacy-modal-body {
  color: #333;
  line-height: 1.6;
  max-height: 70vh;
  overflow-y: auto;
  padding-right: 10px;
}

.privacy-modal-body::-webkit-scrollbar {
  width: 8px;
}

.privacy-modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.privacy-modal-body::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.privacy-modal-body::-webkit-scrollbar-thumb:hover {
  background: #555;
}

@media (max-width: 768px) {
  .copyright-section {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .privacy-modal-content {
    margin: 20px;
    width: auto;
  }
}

/* English Privacy Modal Styles */
.privacy-modal-en {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  overflow-y: auto;
}

.privacy-modal-content-en {
  position: relative;
  background-color: #fff;
  margin: 50px auto;
  padding: 20px;
  width: 90%;
  max-width: 800px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.privacy-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.privacy-modal-header h2 {
  margin: 0;
  color: #333;
  font-size: 24px;
}

.privacy-modal-close-en {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  padding: 0;
  line-height: 1;
}

.privacy-modal-close-en:hover {
  color: #333;
}

.privacy-modal-body {
  color: #333;
  line-height: 1.6;
  max-height: 70vh;
  overflow-y: auto;
  padding-right: 10px;
}

@media (max-width: 768px) {
  .privacy-modal-content-en {
    margin: 20px;
    width: auto;
  }
}
