/* === RESET & TEMEL === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Outfit', sans-serif;
  background: #fafafa;
  color: #333;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
a:hover {
  color: #e63946;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* === CONTAINER === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* === HEADER === */
.header {
  background: #fff;
  border-bottom: 2px solid #e63946;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* --- ÜST KISIM --- */
.header-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  margin-bottom: 1rem;
}
.header-top .logo {
  height: 80px;
}
.header-top .logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e63946;
  text-transform: uppercase;
  white-space: nowrap;
}

/* --- NAVBAR --- */
.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  background: #fff;
  border: 2px solid #e63946;
  border-radius: 10px;
  padding: 0.75rem 1rem;
}

/* Menü listesi */
.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
  flex: 1;
}

/* Menü linkleri */
.nav-list a {
  font-size: 1rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.25rem;
  white-space: nowrap;
  color: #333;
}
.nav-list a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #e63946;
  transition: width 0.3s;
}
.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

/* === DROPDOWN CONTAINER === */
.dropdown {
  position: relative;
}

/* Başlık linki (toggle) */
.dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s;
}
.dropdown > a:hover {
  color: #e63946;
}

/* Ok işaretine dönüş animasyonu */
.dropdown > a .arrow {
  display: inline-block;
  transition: transform 0.2s;
}

/* Menü başlangıçta gizli */
/* Menü başlangıçta gizli */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;             /* BAŞLIĞIN TAM ALTINA */
  left: 0;
  background: #fff;
  border: 1px solid #e63946;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  padding: 0.5rem 0;
  min-width: 200px;
  z-index: 1000;
  animation: fadeIn 0.2s ease-out;
}

/* Hover’la gösterme */
@media (hover: hover) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* Menü öğeleri */
.dropdown-menu li {
  list-style: none;
}
.dropdown-menu li + li {
  margin-top: 0.25rem;
}
.dropdown-menu li a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  color: #333;
  transition: background 0.2s, color 0.2s;
}
.dropdown-menu li a:hover {
  background: rgba(230,57,70,0.1);
  color: #e63946;
}

/* Masaüstü hover ile gösterme */

/* Dokunmatik cihazlarda tıklama için "open" sınıfı kullan */
.dropdown.open .dropdown-menu {
  display: block;
}
.dropdown.open > a .arrow {
  transform: rotate(180deg);
}

/* Fazla geniş ekranlarda taşmayı önle */
.dropdown-menu {
  max-height: 70vh;
  overflow-y: auto;
}

/* Mobilde menüyü akışın içinde göster */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0;
    max-height: none;
  }
  .dropdown-menu li + li {
    margin-top: 0;
  }
  .dropdown-menu li a {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
  }
}
 
/* Küçük fade-in animasyonu */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* CTA butonu */
.header-cta {
  background: #e63946;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 1.2rem;
  text-transform: uppercase;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(230,57,70,0.3);
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
  margin-left: auto;
}
.header-cta:hover {
  background: #d62828;
  transform: translateY(-2px);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .header-top .logo {
    height: 40px;
  }
  .header-top .logo-text {
    font-size: 1.25rem;
  }
  .navbar {
    flex-direction: column;
    gap: 0.75rem;
  }
  .nav-list {
    flex-direction: column;
    gap: 1rem;
  }
  .header-cta {
    width: 100%;
    text-align: center;
    margin-left: 0;
  }
}


/* Container */
.swiper-container.swiper-slider-classic {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

/* Wrapper & Slide Layout */
.swiper-container.swiper-slider-classic .swiper-wrapper {
  display: flex;
  flex-direction: column; /* vertical slides */
  height: 100%;
  transition: transform 0.4s ease;
}
.swiper-container.swiper-slider-classic .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 1;
  display: flex;            /* içerikleri ortalamak için */
  align-items: center;      /* dikey ortala */
  justify-content: center;  /* yatay ortala */
  background-position: center 20%; /* Varsayılan center center yerine center %20 */
  background-size: cover;
}
.swiper-container.swiper-slider-classic .swiper-slide-active {
  z-index: 2;
}

/* Hafif overlay */
.swiper-container.swiper-slider-classic .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

/* Caption – tam ortada, absolute'tan normal akışa geçirildi */
.swiper-slide-caption {
  position: relative;
  padding: 0 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 3;
  opacity: 0;
  animation: slideInCaption 0.8s ease-out 0.2s forwards;
}

/* Başlık ve altbaşlık */
.swiper-slide-caption p {
  font-weight: 700;         /* kalın (bold) */
  color: #c0392b;   
   font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  opacity: 0;
  animation: slideInText 0.8s ease-out 0.3s forwards;
 display: flex;
  flex-direction: column;
  align-items: center;    /* ← yatayda tam ortalar */
  text-align: center;     /* ← inline-block metinleri ortalar */
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.25em 0.5em;
  border-radius: 4px;
  margin:0 auto;
}

.swiper-slide-caption h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  font-weight: 700;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  opacity: 0;
  animation: slideInText 0.8s ease-out 0.5s forwards;
  display: inline-block;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.3em 0.6em;
  border-radius: 4px;

}

/* CTA & Sosyal ikon kapsayıcısı */
.slide-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
  opacity: 0;
  animation: fadeInButtons 0.8s ease-out 0.7s forwards; /* gecikmeyi öne aldık */
}

/* Bilgi Al butonu */
.info-btn {
  display: inline-block;
  background: #e63946;
  color: #fff;
  padding: 1rem 2rem;        /* büyütüldü */
  font-size: 1.1rem;         /* büyütüldü */
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.info-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(230, 57, 70, 0.5);
}

/* Sosyal medya ikonu */
.slide-buttons .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;               /* büyütüldü */
  height: 60px;              /* büyütüldü */
  background: #fff;
  color: #e63946;
  font-size: 1.6rem;         /* büyütüldü */
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s, color 0.3s, background 0.3s;
}
.slide-buttons .social-icons a:hover {
  transform: scale(1.15);
  background: #e63946;
  color: #fff;
}

/* Pagination */
.swiper-container.swiper-slider-classic .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
}
.swiper-container.swiper-slider-classic .swiper-pagination-bullet-active {
  background: #e63946;
  opacity: 1;
}

/* ================================
   ANIMATIONS
   ================================ */

@keyframes slideInCaption {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInText {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInButtons {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================
   RESPONSIVE TWEAKS
   ================================ */

@media (max-width: 768px) {
  .swiper-slide-caption p {
    font-size: 0.9rem;
  }
  .swiper-slide-caption h1 {
    font-size: 2rem;
  }
  .info-btn {
    padding: 0.8rem 1.6rem;
    font-size: 1rem;
  }
  .slide-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* ===== VIDEO & OVERLAY ===== */
/* ===== VIDEO & OVERLAY ===== */
/* ===== VIDEO & OVERLAY ===== */
.video-section {
  margin-bottom: 30px;
  text-align: center;                 /* video’yu ortala */
  opacity: 0.6;
  transition: opacity 0.3s ease;
  margin-top: 100px;
}
.video-section:hover {
  opacity: 0.8;
}

.video-wrapper {
  position: relative;
  display: block;
  max-width: 800px;
  margin: 0 auto;                     /* sayfa ortasına alır */
}

#promoVideo {
  width: 100%;
  max-width: 800px;
  max-height: 400px;
  display: block;
  border-radius: 10px;
  box-shadow: none;
}

/* “Biz Kimiz” başlığı video’nun üst orta kısmında */
.video-overlay-title {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color:#e63946;          /* canlı kırmızı */
  background: none;        /* arkaplanı kaldır */
  backdrop-filter: none;   /* blur kaldır */
  padding: 0;              /* iç boşluğu sıfırla */
  border-radius: 0;        /* köşe yuvarlamayı kaldır */
  pointer-events: none;
  white-space: nowrap;
  text-align: center;
  margin-top: -40px;

}


/* ===== CONTENT SECTION ===== */
.content-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}
.content-section h4 {
  color: #ffcc00;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.content-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #222;
  position: relative;
}
.content-section h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #ffcc00;
  display: block;
  margin-top: 10px;
}
.content-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 40px;
}

/* ===== FEATURES LIST ===== */
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  background: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  animation: fadeIn 1.2s ease-in-out;
}
.features ul {
  flex: 1;
  list-style: none;
  padding: 0;
}
.features li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #333;
  font-weight: 500;
}
.features li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: #ffcc00;
  font-size: 1.1rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .features {
    flex-direction: column;
  }
  .content-section h2 {
    font-size: 1.8rem;
  }
  .video-wrapper {
    max-width: 100%;
  }
  #promoVideo {
    max-height: 250px;
  }
}

/* === ORTAK KART BÖLÜMÜ === */
.card-section {
  padding: 2rem 1rem;
}
.card-section h4 {
  color: #ffcc00;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 0.5rem;
}
.card-section h2 {
  font-size: 2.2rem;
  color: #222;
  text-align: center;
  margin-bottom: 0.5rem;
}
.card-section .quote-jean {
  text-align: center;
  font-style: italic;
  color: #666;
  margin-bottom: 2rem;
}

/* === KART LİSTESİ (GRID) === */
.card-list {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  overflow-x: auto;
  padding-bottom: 0.5rem; /* scroll bar alanı için */
}

/* === KENDİ KART === */
.card {
  background: #fff;
  border: 1px solid #e63946;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  min-width: 0;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* === KART RESİM === */
.card img {
  width: 100%;
  height: clamp(150px, 20vw, 300px);
  object-fit: cover;
  flex: 0 0 auto;
}

/* === KART İÇERİK === */
.card-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 0;
}
.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: auto;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* === CTA / İLGİLİ LİNK === */
.card-link {
  margin-top: 1rem;
  align-self: start;
  background: #e63946;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s;
}
.card-link:hover {
  background: #d62828;
}

/* === TAŞMA/KAYDIRMA ÖNLEMLERİ === */
/* Flex/grid içinde taşma sorununu engelle */
.card-list, .card, .card-content, .card img, .card-title, .card-text, .card-link {
  min-width: 0;
}

/* === RESPONSIVE AYARLAR === */
@media (max-width: 768px) {
  .card img {
    height: 130px;
  }
  .card-title {
    font-size: 1.1rem;
  }
  .card-text {
    font-size: 0.95rem;
  }
  /* 2 sütun yerine 1 sütun istersen: */
  /* .card-list { grid-template-columns: 1fr; } */
}

@media (max-width: 576px) {
  .card img {
    height: 120px;
  }
  .card-section h2 {
    font-size: 1.8rem;
  }
  .card-title {
    font-size: 1rem;
  }
  .card-text {
    font-size: 0.9rem;
  }
  /* Yatay scroll yerine tek sütun: */
  .card-list {
    grid-template-columns: 1fr;
  }
}





   /* FOOTER */
.footer {
 background-color: red;
  color: #fff;
  padding: 40px 0;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a,
.footer-col p,
.footer-col a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-logo img {
  max-width: 150px;
  margin-bottom: 15px;
}

.social-icons {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.social-icons a {
  background: #fff;
  color: #333;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.3s;
}

.social-icons a:hover {
  background: #ff3333;
  color: #fff;
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding: 15px 0;
  background: #c0392b;
  font-size: 14px;
}
