/* Base */
:root {
  --bg: #ffffff;
  --panel: #ffffff;
  --text: #111111;
  --muted: #555555;
  --brand: #e63946; /* kırmızı ton */
  --brand-2: #c1121f; /* koyu kırmızı vurgusu */
  --radius: 14px;
  --container: 1120px;
}

* { box-sizing: border-box; }
html, body { 
  height: 100%; 
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif, oswald, caveat;
  color: var(--text);
  background: var(--bg);
  width: 100%;
  max-width: 100vw; /* Viewport genişliğini aşmasın */
  overflow-x: hidden; /* Yatay kaymayı önle */
}
img { max-width: 100%; display: block; border-radius: calc(var(--radius) - 6px); }
a { color: inherit; text-decoration: none; }





/* --- Preloader: her şeyin üstünde ve içerik görünür --- */
body.preloading { overflow: hidden; }

.preloader{
  position: fixed;
  inset: 0;
  z-index: 2147483000;        /* süper yüksek */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:#ffffff;         /* beyaz arka plan */
  transition: opacity .8s ease, visibility .8s ease;
}

/* Herhangi bir eski pseudo overlay'i iptal et */
.preloader::before,
.preloader::after{
  content: none !important;
  display: none !important;
}

.preloader__inner{
  position: relative;
  z-index: 2147483001;        /* arka planın üstünde */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* GIF mutlaka üstte */
.preloader__icon{
  position: relative;
  z-index: 2147483002;
  display: block;
  width: 100px; height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(255,100,0,.6));
  opacity: 1 !important;      /* görünürlüğü zorla */
}

/* Yazı GIF'in altında ve üstte */
.preloader__text{
  position: relative;
  z-index: 2147483002;
  margin-top: 18px;
  color: #ff3b30;
  letter-spacing: .3px;
  animation: preloaderFlicker 1.6s infinite alternate;
  opacity: 1 !important;
  font-family:"Caveat", cursive;
  font-weight:bold;
  font-size:50px;
}

@keyframes preloaderFlicker{ from{opacity:.4} to{opacity:1} }

/* Kapanış */
.preloader.is-hide{ opacity:0; visibility:hidden; }





/* Scroll Progress Bar */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px; /* Kalınlık */
  background: rgba(255, 255, 255, 0.08);
  z-index: 99999;
  overflow: hidden;
}

/* Bar */
.progress__bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #ff9a00, #ff3b30, #ff9a00);
  background-size: 300% 100%;
  animation: progressShimmer 3s linear infinite;
  transition: width 0.08s linear;
  box-shadow: 0 0 12px rgba(255, 58, 30, 0.7);
}

/* Gradient hareket efekti */
@keyframes progressShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}




/* === Instagram Feed Lite: Premium grid görünüm === */

/* Kart stil + köşe yuvarlama */
#sb_instagram .sbi_item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0,0,0,.15);
}

/* Görsel animasyonu */
#sb_instagram .sbi_item .sbi_photo img,
#sb_instagram .sbi_item .sbi_photo {
  transition: transform .4s ease, filter .35s ease;
  transform: scale(1.02);
}
#sb_instagram .sbi_item:hover .sbi_photo img,
#sb_instagram .sbi_item:hover .sbi_photo {
  transform: scale(1.08);
  filter: brightness(.85);
}

/* Hover overlay (soft degrade) */
#sb_instagram .sbi_item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.35));
  opacity: 0; transition: opacity .25s ease;
}
#sb_instagram .sbi_item:hover::after { opacity: 1; }

/* Instagram ikonu sol üstte (SVG inline) */
#sb_instagram .sbi_item::before {
  content: "";
  position: absolute; left: 12px; top: 12px; width: 24px; height: 24px;
  background: url("data:image/svg+xml;utf8,\
  <svg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='%23ffffff'>\
  <path d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5zm0 2a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3H7zm5 3.5a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11zm0 2a3.5 3.5 0 1 0 0 7 3.5 3.5 0 0 0 0-7zM18.5 6a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3z'/>\
  </svg>") center/contain no-repeat;
  opacity: .95; pointer-events: none; z-index: 2;
}

/* Caption'ı hover'da alt bantta göster (Lite sürümde caption açıksa gizle) */
#sb_instagram .sbi_caption { display: none !important; }
#sb_instagram .sbi_item .sbi_custom_caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 10px 12px; color: #fff; font-size: 14px; line-height: 1.35;
  opacity: 0; transform: translateY(8px);
  transition: all .25s ease; z-index: 3;
}
#sb_instagram .sbi_item:hover .sbi_custom_caption {
  opacity: 1; transform: translateY(0);
}

/* Load more / Follow butonları - modern */
#sb_instagram .sbi_load_btn,
#sb_instagram .sbi_follow_btn a {
  border: none !important;
  border-radius: 999px !important;
  padding: 10px 16px !important;
  color: #fff !important;
  background: linear-gradient(90deg,#ff9a00,#ff3b30) !important;
  box-shadow: 0 8px 20px rgba(255,78,28,.25) !important;
  font-weight: 600; letter-spacing: .2px;
}
#sb_instagram .sbi_load_btn:hover,
#sb_instagram .sbi_follow_btn a:hover { filter: brightness(1.05); }

/* Responsive boşluklar daha ferah */
#sb_instagram .sbi_item { margin: 4px; }
@media (max-width: 640px){
  #sb_instagram .sbi_item { margin: 3px; border-radius: 14px; }
}




.nav-toggle { display: none; background: transparent; color: var(--text); border: 0; font-size: 24px; }
.nav-list { display: flex; gap: 20px; list-style: none; padding: 0; margin: 0; font-family:"Caveat", cursive; }
.nav-list a { color: var(--muted); }
.nav-list a:hover { color: var(--text); }
.cta {
  background: var(--brand);
  color: black;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
  font-family:"Caveat", cursive;
  
}



.site-bg { position: fixed; inset: 0; z-index: -1; overflow: hidden; }
.site-bg img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  filter: blur(var(--intro-blur, 0px)); 
  transform: scale(1.05); 
  transition: filter 100ms linear; 
  will-change: filter, transform; /* Performans için */
}
.site-bg::after { 
  content: ""; 
  position: absolute; 
  inset: 0; 
  background: rgba(255,255,255, var(--intro-white, 0)); 
  pointer-events: none; 
  transition: background 100ms linear; 
  will-change: background; /* Performans için */
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box; /* Padding'i genişlik hesabına dahil et */
}

/* Intro cover */
.intro-cover {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.intro-overlay {
  position: relative; z-index: 1;
  height: 100%;
  display: grid; place-items: center;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.0) 40%, rgba(255,255,255,0.35) 100%);
  padding: 24px;
}
.intro-overlay h1 { font-size: 48px; margin: 0 0 9px; color: #ffffff; font-family: "Caveat", cursive; }
.intro-overlay p { margin: 0 0 0px; color: #ffffff; font-family: "Caveat", cursive; font-size: 48px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
  padding-left: 0;
}
.logo-container { display: flex; align-items: center; gap: 8px; justify-content: flex-start; margin: 0; padding: 0; }
.logo-img { width: 32px; height: 32px; border-radius: 0; }
.logo { font-weight: 700; letter-spacing: 0.4px; font-family: "Caveat", cursive; text-transform: uppercase; color: #000000; }
.logo span { color: inherit; }










/* Hero */
.hero { padding: 72px 0; }
.hero-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: center; }
.hero h1 { font-size: 40px; line-height: 1.15; margin: 0 0 12px; font-family:"Caveat", cursive; color:#b91c1c; }
.hero p { color: black; margin: 0 0 20px; font-family:"Caveat", cursive; font-size:30px; }
.hero-actions { display: flex; gap: 12px; }

.btn { display: inline-block; padding: 12px 16px; border-radius: 12px; background: var(--panel); color: var(--text); border: 1px solid rgba(0,0,0,0.08); font-family:"Caveat", cursive; font-size:30px; font-weight:bold;}
.btn.primary { background: linear-gradient(135deg, var(--brand) 0%, #b91c1c 100%); border-color: transparent; }
.btn:hover { filter: brightness(1.08); }

/* Sections */
.section { padding: 56px 0; }
.section h2 { font-size: 40px; margin: 0 0 20px; text-align: center; font-family: "Caveat", cursive; color:#b91c1c; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; font-family: "Caveat", cursive; font-size: 30px; }
.checks { list-style: none; padding: 0; margin: 16px 0 0; }
.checks li { margin: 8px 0; position: relative; padding-left: 26px; color: var(--muted); }
.checks li::before { content: "✔"; position: absolute; left: 0; top: 0; color: var(--brand-2); }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: radial-gradient(1200px 400px at 20% -10%, rgba(230,57,70,0.08), transparent), var(--panel); border: 1px solid rgba(0,0,0,0.08); border-radius: var(--radius); overflow: hidden; }
.card-body { padding: 14px; }
.card h3 { margin: 0 0 8px; font-size: 35px; text-align: center; font-family: "Caveat", cursive; font-weight:bold;  }
.card p { margin: 0; color: red; text-align: center; font-weight: bold; font-family: "Caveat", cursive; font-size: 22px; }

/* Gallery */
.masonry { columns: 2; gap: 12px; }
.masonry img, .masonry video { 
  margin: 0 0 12px; 
  border-radius: var(--radius); 
  break-inside: avoid; 
  width: 100%; 
  height: auto; 
  max-height: 520px; 
  object-fit: cover; 
  display: block; /* Video elementleri için */
}


/* Reviews */
.quotes { display: grid; gap: 12px; }
.quotes blockquote { margin: 0; padding: 16px; background: var(--panel); border: 1px solid rgba(0,0,0,0.08); border-radius: var(--radius); color: #333; font-family: "Caveat", cursive; font-size: 36px; }
.quotes cite { color: var(--brand); font-style: normal; font-family: "Caveat", cursive; }

/* Contact */
.contact-list { list-style: none; margin: 0 0 16px; padding: 0; color: #333; font-size: 25px; }
.contact-list strong { font-weight: 900; }
.contact-list a { font-weight: normal; }
.contact-actions { display: flex; gap: 10px; }
.map-embed img { width: 100%; height: auto; }
.map-embed iframe { 
  width: 100%; 
  height: auto; 
  min-height: 250px; 
  border: 0; 
  border-radius: var(--radius);
}







/* Footer */
.site-footer { border-top: 1px solid rgba(0,0,0,0.06); background: transparent; font-weight: bold; font-family:"Caveat", cursive;; }
.footer-inner { display: flex; align-items: center; flex-direction: column; justify-content: space-between; height: 64px; text-align: center; }
.back-to-top { color: var(--brand); }
.back-to-top:hover { color: var(--brand-2); }

/* Responsive */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .hero { padding: 48px 0; }
  .section { padding: 40px 0; }
  .hero h1 { font-size: 32px; }
  .section h2 { font-size: 32px; }
  .intro-overlay h1 { font-size: 36px; }
  .intro-overlay p { font-size: 36px; }
  .cards { grid-template-columns: 1fr; gap: 16px; }
  .card-body { padding: 12px; }
  .card h3 { font-size: 18px; }
  .card p { font-size: 18px; }
  .quotes blockquote { font-size: 28px; padding: 12px; }
  .contact-list { font-size: 16px; }
  .hero-actions { flex-direction: column; gap: 8px; }
  .btn { padding: 10px 14px; font-size: 14px; }
  .cta { padding: 8px 12px; font-size: 14px; }
}

@media (max-width: 680px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-list { position: absolute; top: 64px; left: 0; right: 0; background: rgba(15,15,15,0.95); flex-direction: column; gap: 0; display: none; }
  .nav-list.show { display: flex; }
  .nav-list li { border-top: 1px solid rgba(255,255,255,0.06); }
  .nav-list a { padding: 14px 20px; display: block; }
  .masonry { columns: 1; }
}

@media (max-width: 480px) {
  .container { padding: 0 12px; }
  .hero { padding: 32px 0; }
  .section { padding: 32px 0; }
  .hero h1 { font-size: 28px; line-height: 1.2; }
  .section h2 { font-size: 28px; }
  .intro-overlay h1 { font-size: 32px; }
  .intro-overlay p { font-size: 32px; }
  .intro-overlay { padding: 16px; }
  .header-inner { height: 56px; }
  .logo { font-size: 18px; }
  .logo-img { width: 28px; height: 28px; }
  .card h3 { font-size: 16px; }
  .card p { font-size: 16px; }
  .quotes blockquote { font-size: 24px; }
  .contact-list { font-size: 14px; }
  .btn { padding: 8px 12px; font-size: 13px; }
  .cta { padding: 6px 10px; font-size: 13px; }
  .hero-actions { gap: 6px; }
  .contact-actions { flex-direction: column; gap: 8px; }
  .footer-inner { height: auto; padding: 16px 0; }
  .footer-inner p { font-size: 12px; line-height: 1.4; margin: 8px 0; }
}


