@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Lora:wght@400;600;700&display=swap');
/* Gray & Gold theme override */
/* Global typography: Turkish-friendly fonts */
html, body { font-family: 'Manrope', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important; }
h1, h2, h3, h4, h5, h6 { font-family: 'Lora', 'Georgia', 'Times New Roman', serif !important; }
a { font-family: inherit !important; }
:root {
  --gold-500: #C9A227; /* primary gold */
  --gold-600: #B38E1F;
  --gold-700: #9C7A1A;
  --gray-900: #1A1A1A;
  --gray-800: #2E2E2E; /* primary gray */
  --gray-700: #3A3A3A;
  --gray-600: #4A4A4A;
  --white: #FFFFFF;
}

/* Arka plan bant yardımcı sınıfları */
.bg-band-blur {
  backdrop-filter: blur(6px);
}
.bg-band {
  position: relative;
}
.bg-band + .bg-band { margin-top: var(--band-gap, 80px); }

/* Body genel arka plan için daha koyu base */
body { background-color: #0f0f0f; }

/* Body & header background to deep gray */
body,
.header-section,
.footer-section,
.page-header {
  background-color: var(--gray-800) !important;
  color: var(--white);
}

/* Fixed header: keep header actually fixed and reduce offset */
body.has-fixed-header { --header-height: 35px; padding-top: var(--header-height); }
@media (max-width: 576px) { body.has-fixed-header { --header-height: 64px; } }
@media (min-width: 992px) { body.has-fixed-header { --header-height: 45px; } }

.has-fixed-header .header-section {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030; /* above content */
}

/* Header compact sizing */
.header-section .header-bottom { padding: 1px 0 !important; }
.header-section .header-wrapper { min-height: auto !important; }
.header-section .logo img { max-height: 140px; height: 140px; width: auto; }
@media (max-width: 576px) {
  .header-section .logo img { max-height: 100px !important; height: 100px !important; }
}
.menu > li > a { padding: 8px 14px !important; font-size: 16px !important; letter-spacing: .2px; }
.header-section .menu { gap: 4px; }

/* Keep navbar gray even when fixed on scroll */
.header-section.header-fixed {
  background-color: var(--gray-800) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}
.header-section.header-fixed .header-bottom {
  background: var(--gray-800) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Primary accent elements to gold */
.lab-btn,
.lab-btn span,
.header-wrapper .menu-area .cart-ticket .cart-icon a span,
.scrollToTop,
.paginations ul li a:hover,
.paginations ul li.active a,
.widget .widget-header h5::before,
.section-header h2::after,
.section-header h2::before {
  background: var(--gold-500) !important;
  border-color: var(--gold-500) !important;
  color: var(--white) !important;
}

/* Button hover */
.lab-btn:hover,
.lab-btn:hover span {
  background: var(--gold-600) !important;
  border-color: var(--gold-600) !important;
}

/* Links in header/footer */
.header-section a,
footer a,
.page-header a,
.menu > li > a {
  color: var(--white) !important;
}
.menu > li > a:hover,
.menu > li.active > a {
  color: var(--gold-500) !important;
}

/* Countdown to gold theme */
.banner-section .banner-wrapper .banner-content .countdown .clock-item .count-number {
  background: #4b5563 !important; /* gray tone */
  color: #ffffff !important;
}
.banner-section .banner-wrapper .banner-content .countdown .clock-item .count-text {
  background: #4b5563 !important;
  color: #ffffff !important;
  border: 1px solid #4b5563 !important;
}

/* Countdown layout & sizing improvements */
.banner-section .banner-wrapper .banner-content .countdown {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px; /* row / column gaps */
}
.banner-section .banner-wrapper .banner-content .countdown .clock-item {
  list-style: none;
  width: clamp(92px, 12vw, 120px) !important; /* genişlik artırıldı: taşma yok */
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.banner-section .banner-wrapper .banner-content .countdown .clock-item .count-number {
  font-size: clamp(22px, 4.2vmin, 34px) !important;
  font-weight: 800 !important;
  padding: 0.65rem 0.5rem !important;
  border-radius: 8px 8px 0 0 !important;
  text-align: center !important;
  line-height: 1.05 !important;
  overflow: hidden;
}
.banner-section .banner-wrapper .banner-content .countdown .clock-item .count-text {
  font-size: clamp(12px, 2.2vmin, 16px) !important;
  padding: 0.45rem 0.55rem !important;
  border-radius: 0 0 8px 8px !important;
  text-align: center !important;
  line-height: 1.15 !important;
  white-space: nowrap; /* etiket tek satırda kalsın */
  overflow: hidden; /* taşmayı gizle */
  text-overflow: ellipsis; /* çok dar ekranlarda zarif kesim */
}

/* Mobile refinements */
@media (max-width: 576px) {
  .banner-section .banner-wrapper .banner-content .countdown {
    justify-content: center;
    gap: 10px 12px;
  }
  .banner-section .banner-wrapper .banner-content .countdown .clock-item {
    width: clamp(88px, 26vw, 110px) !important;
  }
  .banner-section .banner-wrapper .banner-content .countdown .clock-item .count-number {
    font-size: clamp(20px, 5.6vw, 28px) !important;
    padding: 0.6rem 0.5rem !important;
  }
  .banner-section .banner-wrapper .banner-content .countdown .clock-item .count-text {
    font-size: clamp(11px, 3.5vw, 14px) !important;
    padding: 0.4rem 0.5rem !important;
  }
}

/* Mobile hero spacing and image cap to avoid overlap */
@media (max-width: 576px) {
  .banner-section { padding-top: calc(var(--header-height) + 12px); }
  .banner-section .banner-image img {
    width: 100%;
    max-height: 230px;
    object-fit: cover;
  }
}

/* Cards and light surfaces */
.news-item .news-inner,
.post-item .post-inner,
.pricing-item .pricing-inner,
.speaker-item .speaker-inner,
.widget,
.shop-cart .section-wrapper .cart-bottom {
  background-color: var(--gray-700) !important;
  border-color: var(--gray-700) !important;
}

/* Inputs */
input, select, textarea {
  background-color: var(--gray-700) !important;
  color: var(--white) !important;
  border-color: var(--gray-600) !important;
}
input::placeholder, textarea::placeholder {
  color: #bfbfbf !important;
}

/* Hero title color to white, accent gold (exclude gradient title) */
.banner-section .banner-wrapper .banner-content h2:not(.altin-gradient-title),
.banner-section .banner-wrapper .banner-content h2 span {
  color: var(--white) !important;
}
.banner-section .banner-wrapper .banner-content h2 span {
  text-shadow: 0 2px 0 rgba(0,0,0,.15);
}

/* Hero açıklama ve benzeri metinler beyaz olsun */
.banner-section .banner-wrapper .banner-content p,
.banner-section .banner-wrapper .banner-content .event-sponsored p {
  color: var(--white) !important;
}

/* Altın geçişli başlık stili */
.banner-section .banner-wrapper .banner-content .altin-gradient-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.5px;
  background-image: linear-gradient(135deg,
    #fff3b0 0%,
    #f7d36c 20%,
    #e8c15a 40%,
    #d4af37 60%,
    #b8901a 80%,
    #fff3b0 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  text-shadow: 0 1px 0 rgba(0,0,0,0.18), 0 6px 16px rgba(212,175,55,0.18);
}

/* Global heading color unity */
.section-header h2,
.footer-middle-item .fm-item-title h5,
.schedule-pack h5,
.page-header h2,
.banner-section .banner-wrapper h2 { color: var(--white) !important; }

/* Banner katmanları: metin üstte, görsel altta kalsın */
.banner-section .banner-wrapper .banner-content { 
  position: relative; 
  z-index: 10 !important; 
}
.banner-section .banner-wrapper .banner-image { 
  position: relative; 
  z-index: 1 !important; 
}
.banner-section .banner-wrapper .banner-image img {
  position: relative;
  z-index: 1 !important;
  max-width: 100%;
  height: auto;
}
.banner-section .banner-wrapper.shape-a::before,
.banner-section .banner-wrapper.shape-a::after { 
  z-index: 0 !important; 
}

/* Mobil ve masaüstünde görsel overlap'ini önle */
@media (max-width: 991px) {
  .banner-section .banner-wrapper .banner-image {
    margin-top: 2rem;
    z-index: 1 !important;
  }
  .banner-section .banner-wrapper .banner-content {
    z-index: 10 !important;
    margin-bottom: 1rem;
  }
  /* Mobilde üst kısım boşluğunu azalt ve arka plan etkisini sadeleştir */
  .banner-section .banner-wrapper {
    padding-top: 110px !important;
    padding-bottom: 60px !important;
  }
}

/* Çok küçük ekranlarda arka plan resmini kaldır, çakışma hissini azalt */
@media (max-width: 576px) {
  .banner-section {
    background: none !important;
  }
}
}

@media (min-width: 992px) {
  .banner-section .banner-wrapper .banner-image {
    z-index: 1 !important;
  }
  .banner-section .banner-wrapper .banner-content {
    z-index: 10 !important;
  }
}

/* Remove gallery arrows as requested */
.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev { display: none !important; }

/* Fix swiper-pagination positioning to stay within gallery-section */
.gallery-section {
  position: relative !important;
  overflow: hidden !important;
}

.gallery-swiper {
  position: relative !important;
  padding-bottom: 50px !important; /* Space for pagination */
}

.gallery-swiper .swiper-pagination {
  position: absolute !important;
  bottom: 10px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: auto !important;
  z-index: 10 !important;
}

.gallery-swiper .swiper-pagination-bullet {
  background: var(--gold-500) !important;
  opacity: 0.5 !important;
  margin: 0 4px !important;
}

.gallery-swiper .swiper-pagination-bullet-active {
  opacity: 1 !important;
  background: var(--gold-500) !important;
}

/* Gallery image hover effects - Professional masonry-style layout */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 20px;
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
    border-color: var(--gold-500);
}

.gallery-item img {
    width: 100%;
    height: auto;
    min-height: 200px;
    max-height: 350px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    cursor: pointer;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

/* Remove forced aspect ratio for natural image proportions */
.gallery-section .gallery-item {
    height: auto;
}

.gallery-section .gallery-item img {
    height: auto;
    min-height: 200px;
    max-height: 350px;
}

/* Gallery image class override for natural sizing */
.gallery-image {
    width: 100% !important;
    height: auto !important;
    min-height: 200px !important;
    max-height: 350px !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform 0.3s ease !important;
}

.gallery-image:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3) !important;
}

/* Contact page styles */
.contact-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold-500);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-icon svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.map-section {
  margin-top: 0;
}

.map-section iframe {
  filter: grayscale(20%) contrast(1.1);
}

/* ScrollToTop icon style to ensure visibility */
.scrollToTop svg { display: inline-block; vertical-align: middle; }
.scrollToTop { color: var(--white) !important; }

/* Badge and small accents */
.header-wrapper .menu-area .cart-ticket .cart-icon .cart-content .cart-list .cart-item .cart-inner .cart-details h6 a,
.header-wrapper .menu-area .cart-ticket .cart-icon .cart-content .lab-btn {
  background: var(--gold-500) !important;
  color: var(--white) !important;
}

/* Section separators */
hr, .divider {
  border-color: var(--gold-500) !important;
}

/* Override any pink (old accent) */
[style*="#e413a6"],
.text-theme,
.bg-theme,
.btn-theme {
  color: var(--gold-500) !important;
  background: var(--gold-500) !important;
  border-color: var(--gold-500) !important;
}
/* Global arka plan görseli */
body {
  background-image: url('../images/backgrounds/site-bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
}

/* Blur arkaplan overlay - ana içerik altında hafif flu efekt */
.bg-blur-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  pointer-events: none;
  z-index: 0;
}

/* Faint background slideshow behind everything */
.bg-slideshow {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 40vh; /* daha az yükseklik */
  z-index: -1; /* behind main content */
  overflow: hidden;
}
.bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(2px) brightness(0.6);
  opacity: 0;
  animation: bgFade 24s linear infinite;
}
.bg-slide:nth-child(1) { animation-delay: 0s; }
.bg-slide:nth-child(2) { animation-delay: 8s; }
.bg-slide:nth-child(3) { animation-delay: 16s; }

/* Gallery slider: standardize image sizes */
/* Galeri section - fix overflow and standardize image sizes */
.gallery-section {
  overflow: hidden;
  padding: 60px 0;
}

.gallery-swiper {
  --gallery-height: 360px;
  overflow: hidden;
  border-radius: 8px;
}
.gallery-swiper .swiper-slide {
  height: var(--gallery-height);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gallery-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
@media (max-width: 576px) {
  .gallery-swiper { --gallery-height: 220px; }
}
@media (min-width: 992px) {
  .gallery-swiper { --gallery-height: 320px; }
}

/* Gallery grid images on dedicated page */
.gallery-section img.w-100 {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
}

@keyframes bgFade {
  0% { opacity: 0; }
  8% { opacity: 1; }
  33% { opacity: 1; }
  41% { opacity: 0; }
  100% { opacity: 0; }
}

/* Preloader düzeni */
.preloader {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.80);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}
.preloader-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
/* SVG tabanlı animasyonlu preloader */
.preloader-fp-svg {
  width: clamp(160px, 32vmin, 320px);
  height: clamp(200px, 40vmin, 400px);
  filter: drop-shadow(0 0 10px rgba(247,183,51,0.35));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-fp-svg .fingerprint-svg {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}

.preloader-fp-svg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Parmak izi PNG maskesiyle altın dolum animasyonu */
.preloader-fp-svg { position: relative; overflow: hidden; }
.preloader-fp-svg .fp-fill {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%; /* başlangıçta boş */
  background: linear-gradient(180deg, #F5D36B 0%, #C9A227 100%);
  filter: drop-shadow(0 0 10px rgba(247,183,51,0.35));
  /* PNG maskesi: doğrudan URL ile tanımlandı */
  -webkit-mask-image: url('../images/altındokunuşlar_broş.png');
  mask-image: url('../images/altındokunuşlar_broş.png');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  animation: fpFill 4.8s ease-in-out infinite alternate;
}
.preloader-fp-svg .fp-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 25%, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0) 60%);
  -webkit-mask-image: var(--fp-src);
  mask-image: var(--fp-src);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  pointer-events: none;
}
@keyframes fpFill {
  0% { height: 12%; }
  100% { height: 100%; }
}

/* Fallback resmi alt katmanda tut (mask yüklenmezse görünür) */
.preloader-fp-svg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 0;
  /* Parçalanıp-birleşme döngüsü sırasında arka katman gizli kalsın */
  opacity: 0;
}
.preloader-fp-svg .fp-fill { z-index: 1; }

/* Görseli parçalara bölerek oluşan animasyon */
.preloader-fp-svg { --pieces: 16; }
.preloader-fp-svg .fp-pieces {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.preloader-fp-svg .fp-piece {
  --top: calc(var(--i) * (100% / var(--pieces)));
  --bottom: calc(100% - (var(--i) + 1) * (100% / var(--pieces)));
  position: absolute;
  inset: 0;
  clip-path: inset(var(--top) 0 var(--bottom) 0);
  background-image: var(--fp-src);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transform: translateY(8%) scale(0.985);
  will-change: opacity, transform;
  /* Parçalanıp birleşme: yumuşak ve yavaş, sonsuz döngü */
  animation: pieceLoop 5.2s ease-in-out infinite alternate;
  animation-delay: calc(var(--i) * var(--delay-unit, 0.09s));
}

@keyframes pieceReveal {
  0% { opacity: 0; transform: translateY(12%) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Sonsuz döngü: her parça hafifçe nefes alır, gecikme ile dalga etkisi oluşur */
@keyframes pieceWave {
  0% { opacity: 0.35; transform: translateY(2%) scale(0.995); }
  50% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0.45; transform: translateY(-1%) scale(0.995); }
}

/* Parçalanıp-birleşme döngüsü: yumuşak geçiş ve yavaş tempo */
@keyframes pieceLoop {
  0% { opacity: 0; transform: translateY(8%) scale(0.985); }
  40% { opacity: 1; transform: translateY(0) scale(1); }
  60% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-6%) scale(0.985); }
}

@keyframes imgIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* Profesyonel tarama çizgileri: görselin içinde yumuşak bir ışık şeridi gezer */
.preloader-fp-svg .fp-stripes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.65) 50%, rgba(255,255,255,0) 100%);
  background-size: 100% 200%;
  animation: fpScan 2.6s linear infinite;
  mix-blend-mode: screen;
  /* PNG maskesiyle sadece görünür alanlarda tarama */
  -webkit-mask-image: url('../images/altındokunuşlar_broş.png');
  mask-image: url('../images/altındokunuşlar_broş.png');
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
}

@keyframes fpScan {
  0% { background-position: 0% 0%; }
  100% { background-position: 0% 100%; }
}

/* Dairesel halka: etrafında dönen ince bir altın halka */
.preloader-fp-svg .fp-ring {
  position: absolute;
  inset: 6% 10%; /* dikdörtgenlerde ellips hissini azaltmak için içe al */
  z-index: 2;
  pointer-events: none;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(247,183,51,0.9) 0deg,
    rgba(247,183,51,0.2) 120deg,
    rgba(247,183,51,0) 180deg,
    rgba(247,183,51,0.2) 300deg,
    rgba(247,183,51,0.9) 360deg
  );
  animation: ringSpin 1.8s linear infinite;
  /* halka kalınlığı için iç daireyi maskele */
  -webkit-mask-image: radial-gradient(circle, transparent 62%, black 63%);
  mask-image: radial-gradient(circle, transparent 62%, black 63%);
}

@keyframes ringSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Broş SVG tabanlı preloader (aynı boyut ve merkezleme) */
.preloader-bros-svg {
  width: clamp(160px, 32vmin, 320px);
  height: clamp(200px, 40vmin, 400px);
  filter: drop-shadow(0 0 10px rgba(247,183,51,0.35));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-bros-svg .brooch-svg,
.preloader-bros-svg object,
.preloader-bros-svg img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Hero bölümündeki ilk section kahraman görseli (gerekirse) */
.banner-section .banner-image img {
  object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/* Logo ışıltı efekti */
.header-section .logo { position: relative; display: inline-block; }
.header-section .logo a { position: relative; display: inline-block; overflow: hidden; }
.header-section .logo img {
  position: relative;
  display: block;
  height: auto;
  width: auto;
  max-height: 140px; /* Header içinde taşmayı önlemek için */
}
@media (max-width: 576px) {
  .header-section .logo img { max-height: 52px !important; height: 52px !important; }
}
.header-wrapper .logo { width: auto !important; }
.header-wrapper .logo a img { height: auto; width: auto; max-height: 80px; }
.header-section .logo .shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  /* İnce ve profesyonel parlama şeridi (maskesiz, kutu içinde) */
  background: linear-gradient(110deg,
    rgba(255,255,255,0) 42%,
    rgba(255,255,255,0.95) 50%,
    rgba(255,255,255,0) 58%
  );
  background-repeat: no-repeat;
  background-size: 260% 100%;
  mix-blend-mode: normal;
  filter: blur(0.4px);
  opacity: 0.55;
  will-change: background-position, opacity;
  animation: shineSweep 3.8s ease-in-out infinite;
}

/* İstenmeyen logo hareketini kaldır (parlama/animasyon devre dışı) */
.header-section .logo .shine { display: none !important; animation: none !important; opacity: 0 !important; }

/* Ana başlık fontu: KroppenRound-Regular (dosyayı assets/fonts altına ekleyin) */
@font-face {
  font-family: 'KroppenRound-Regular';
  src: url('../fonts/KroppenRound-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.altin-gradient-title {
  font-family: 'KroppenRound-Regular', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.1;
  letter-spacing: 0;
  /* Mobilde taşmayı önleyen esnek boyutlama */
  font-size: clamp(28px, 6vw, 56px);
}

@media (max-width: 576px) {
  .altin-gradient-title { font-size: clamp(24px, 7vw, 36px); }
}

@keyframes shineSweep {
  0% { background-position: -150% 0; opacity: 0.42; }
  50% { background-position: 150% 0; opacity: 0.60; }
  100% { background-position: 150% 0; opacity: 0.42; }
}

/* Maskeye destek yoksa zarif bir fallback uygula */
/* Not: maskeye artık ihtiyaç yok; kutu içinde tarama çizgisi yeterli görünürlük sağlar */

/* Footer sosyal ikonları hizalama */
.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-social a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #f1f1f1;
  color: #333;
}

/* İlham veren eserler bilgi çubuğu */
.inspire-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 8px 16px;
  font-size: 14px;
  z-index: 9999;
}
/* Readability overrides: make text gray on patterned background */
.banner-section .banner-content,
.banner-section .banner-content h1:not(.altin-gradient-title),
.banner-section .banner-content h2:not(.altin-gradient-title),
.banner-section .banner-content h3,
.banner-section .banner-content p,
.about-section,
.about-section .section-header h2,
.about-section .section-header p,
.about-section .section-wrapper p,
.schedule-section,
.schedule-section h2,
.schedule-section p,
.gallery-section,
.gallery-section h2,
.gallery-section p,
.speaker-section,
.speaker-section h2,
.speaker-section p {
  color: #FFF8DC !important;
}

/* Typography consistency: section headers */
.section-header h2 {
  text-shadow: none !important;
  color: #FFF8DC !important; /* neutral dark */
}
.section-header p {
  color: #4b5563 !important; /* gray-700 */
}

/* Navigation menu links: unify font weight and color */
.header-wrapper .menu-area .menu li a {
  font-weight: 600;
  color: #ffffff !important;
}
.header-wrapper .menu-area .menu li a:hover {
  color: #c9a227 !important; /* gold accent */
}

/* Keep buttons legible; do not override button text colors */
.lab-btn span { color: inherit; }

/* Fix: decorative square covering section headers (push behind text) */
.section-header h2::after {
  z-index: -1 !important;
  opacity: 0.18 !important; /* soften the shape */
}
.about-section .section-header h2::after {
  z-index: -1 !important;
  opacity: 0.15 !important;
  pointer-events: none !important;
}

/* Ensure all shape pseudo elements never overlap text */
.shape-a::before,
.shape-a::after,
.shape-b::before,
.shape-b::after,
.shape-c::before,
.shape-c::after {
  z-index: -1 !important;
}

/* Ensure About image is visible and above decorative overlays */
.about-section .about-image img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.about-section .about-image::before,
.about-section .about-image::after {
  z-index: 0 !important;
}

/* === Image color fixes: remove unintended grayscale site-wide === */
img { filter: none !important; -webkit-filter: none !important; }
.speaker-item .speaker-inner .speaker-thumb img { filter: none !important; -webkit-filter: none !important; }
.swiper-slide.swiper-slide-visible.swiper-slide-thumb-active { filter: none !important; -webkit-filter: none !important; }

/* === About (Sergi) layout: slight right shift for visual balance === */
.about-section .about-image { transition: transform 200ms ease; }
@media (min-width: 992px) {
  .about-section .about-image { transform: translateX(20px); }
}

/* Ensure about image/video above decorative layers */
.about-section .about-image img,
.about-section .about-image video { position: relative; z-index: 2; }

/* Footer alt bant: temaya uyumlu koyu gri ve beyaz yazı */
.footer-section .footer-bottom,
.footer-bottom {
  background: var(--gray-800) !important;
  color: var(--white) !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
}

/* Footer sosyal ikonları: koyu ikon rengi ve açık arkaplan */
.footer-social a {
  background: #f3f4f6 !important;
  color: #111827 !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* --- Event Calendar: Professional tabs & cards - Fixed standardized layout --- */
.schedule-section .day-tabs { 
  display: flex; 
  gap: 12px; 
  flex-wrap: nowrap; 
  overflow-x: auto; 
  padding: 8px 4px; 
  -webkit-overflow-scrolling: touch;
}
.schedule-section .day-tab { 
  display: inline-block; 
  min-width: 180px; 
  padding: 12px 16px; 
  border: 1px solid #e5e7eb; 
  border-radius: 10px; 
  background: #ffffff; 
  color: #FFF8DC;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  text-align: center; 
  line-height: 1.25;
}
.schedule-section .day-tab .day-num { display:block; font-weight:700; margin-bottom: 2px; }
.schedule-section .day-tab .day-date { display:block; font-size: .9rem; color:#374151; }
.schedule-section .day-tab:hover { transform: translateY(-1px); box-shadow: 0 6px 14px rgba(0,0,0,0.10); }
.schedule-section .day-tab.active { 
  background: var(--gold-500); 
  border-color: var(--gold-500); 
  color: #fff; 
}
.schedule-section .day-tab.active .day-date { color: #fff; }
.schedule-section .day-tab:focus { 
  outline: none; 
  box-shadow: 0 0 0 3px rgba(201,162,39,0.35); 
}

.schedule-section .day-panel { 
  margin-top: 10px; 
}
.schedule-section .speaker-item { 
  border: none;
  border-radius: 8px; 
  overflow: hidden; 
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: auto;
  transition: all 0.3s ease;
  position: relative;
}
.schedule-section .speaker-item:hover { 
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.schedule-section .speaker-item .speaker-thumb {
  height: 120px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.schedule-section .speaker-item .speaker-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.schedule-section .speaker-item:hover .speaker-thumb img {
  transform: scale(1.05);
}
.schedule-section .speaker-item .speaker-content {
  padding: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}
.schedule-section .speaker-item .spkr-content-title h5 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.3;
}
.schedule-section .speaker-item .spkr-content-title h5 a {
  color: #333 !important;
  text-decoration: none;
}
.schedule-section .speaker-item .spkr-content-title p {
  margin: 0;
  font-weight: 500;
  color: #666;
  font-size: 14px;
  line-height: 1.4;
}
.schedule-section .speaker-item .spkr-content-details {
  flex: 1;
  margin-top: 10px;
}
.schedule-section .speaker-item .spkr-content-details p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.schedule-section .speaker-item .social-icons { 
  display: flex; 
  align-items: center; 
  justify-content: center;
  gap: 8px; 
  padding: 10px 0;
  border-top: 1px solid #eee;
  margin-top: auto;
  min-height: 40px;
  background: #f8f9fa;
  position: relative;
  z-index: 2;
}

.schedule-section .speaker-item .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #f8f9fa;
  border-radius: 6px;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.schedule-section .speaker-item .social-icons a:hover {
  background: #007bff;
  color: white;
  transform: translateY(-1px);
/* Menü linklerini standartlaştır - anasayfa hariç diğer linkler için ikon kaldır */
.menu li:not(:first-child) a::before,
.menu li:not(:first-child) a::after {
  display: none !important;
}

/* Anasayfa linki için özel stil */
.menu li:first-child a {
  position: relative;
}

/* Diğer sayfalar için menü linklerini temizle */
.menu li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

.menu li a:hover {
  color: #C9A227 !important; /* Ana tema altın rengi */
}
.speaker-item .speaker-inner .speaker-content .spkr-content-title h5 a:hover {
  color: #C9A227 !important; /* Ana tema altın rengi */
}

.speaker-item .speaker-inner .speaker-content .spkr-content-details .social-icons li a:hover {
  color: #C9A227 !important; /* Ana tema altın rengi */
  background: rgba(201, 162, 39, 0.1);
}

.schedule-section .badge.bg-primary {
  background: #C9A227 !important; /* Ana tema altın rengi */
  color: white !important;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 500;
}

.schedule-section .speaker-item .spkr-content-title h5 a:hover {
  color: #C9A227 !important; /* Ana tema altın rengi */
}border: none;
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 10;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Grid Layout Optimization */
.schedule-section .row {
  margin: 0 -10px;
}

.schedule-section .col-lg-4,
.schedule-section .col-md-6 {
  padding: 0 10px;
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .schedule-section .speaker-item {
    margin-bottom: 15px;
  }
  
  .schedule-section .speaker-item .speaker-thumb {
    height: 100px;
  }
  
  .schedule-section .speaker-item .speaker-content {
    padding: 12px;
  }
  
  .schedule-section .speaker-item .speaker-content h5 {
    font-size: 15px;
  }
  
  .schedule-section .speaker-item .speaker-content p {
    font-size: 13px;
    -webkit-line-clamp: 2;
  }
}

/* Türkçe karakter uyumlu font ve başlık stilleri */
.page-header-content h1 {
    font-family: 'Lora', 'Georgia', 'Times New Roman', serif !important;
    font-weight: 700 !important;
    color: #2E2E2E !important;
    margin-bottom: 15px !important;
}
/* --- About readability & rich content --- */
.about-section .section-wrapper.about-readable {
  background: rgba(255, 255, 255, 0.88) !important;
  border-radius: 12px !important;
  padding: 20px 24px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
  backdrop-filter: blur(2px) !important;
  -webkit-backdrop-filter: blur(2px) !important;
}
.about-section .section-wrapper.about-readable,
.about-section .section-wrapper.about-readable p,
.about-section .section-wrapper.about-readable h1,
.about-section .section-wrapper.about-readable h2,
.about-section .section-wrapper.about-readable h3,
.about-section .section-wrapper.about-readable h4,
.about-section .section-wrapper.about-readable h5,
.about-section .section-wrapper.about-readable h6 {
  color: #111827 !important; /* koyu metin */
}
.about-content { color: #111827 !important; font-size: 1.05rem !important; line-height: 1.75 !important; }
.about-content p { margin-bottom: 1rem !important; }
.about-content ul, .about-content ol { margin: 0.75rem 0 1rem 1.25rem !important; }
.about-content li { line-height: 1.65 !important; }
.about-content h2, .about-content h3 { margin-top: 1rem !important; margin-bottom: .5rem !important; }
.about-content a { color: #1d4ed8 !important; text-decoration: underline; }

.page-header-content p {
    font-family: 'Manrope', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    color: #666 !important;
}

/* Başlık bölümü için margin ekleme */
.page-header {
    margin-top: 80px !important;
    padding-top: 60px !important;
    padding-bottom: 40px !important;
}
@media (max-width: 576px) {
  .page-header { margin-top: calc(var(--header-height) + 10px) !important; padding-top: 30px !important; }
}