/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  background: url("img/background.jpg") center center fixed;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Header Styles */
.header {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 10px rgba(221, 14, 26, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo img {
  height: 60px;
  width: auto;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
}

.menu-items {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 0;
}

.menu-item {
  position: relative;
}

.menu-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 25px 20px;
  display: block;
  transition: all 0.3s ease;
  font-size: 14px;
}

.menu-link:hover,
.menu-link.active {
  color: #dd0e1a;
}

/* Giriş Yap / Üye Ol Butonu */
.auth-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #d4af37 0%, #f4e5b0 50%, #d4af37 100%);
  color: #3a2815;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-left: 10px;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.auth-button:hover {
  background: linear-gradient(135deg, #f4e5b0 0%, #d4af37 50%, #f4e5b0 100%);
  box-shadow: 0 3px 12px rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero Section - Slider */
.hero {
  position: relative;
  width: 100%;
  height: clamp(260px, 60vh, 700px);
  overflow: hidden;
  background: transparent;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slide {
  position: relative;
  min-width: 100%;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Mobil ve desktop görselleri için görünürlük kontrolü */
.slide .mobile-img {
  display: none;
}

.slide .desktop-img {
  display: block;
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #d4af37 0%, #f4e5b0 50%, #d4af37 100%);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  color: #3a2815;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.slider-arrow:hover {
  background: linear-gradient(135deg, #f4e5b0 0%, #d4af37 50%, #f4e5b0 100%);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.slider-arrow-left {
  left: 30px;
}

.slider-arrow-right {
  right: 30px;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.dot.active {
  background: linear-gradient(135deg, #d4af37, #f4e5b0);
  transform: scale(1.3);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.5);
}

.dot:hover {
  background: linear-gradient(135deg, #d4af37, #f4e5b0);
  border: 2px solid #d4af37;
}

/* Bottom Section */
.bottom-section {
  background: transparent;
  color: white;
  padding: 60px 0;
  text-align: center;
  position: relative;
}

.bottom-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 300;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-button {
  background: linear-gradient(135deg, #d4af37 0%, #f4e5b0 50%, #d4af37 100%);
  color: #3a2815;
  border: none;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  background: linear-gradient(135deg, #f4e5b0 0%, #d4af37 50%, #f4e5b0 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* Products Section */
.products-section {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.95);
  position: relative;
}

.products-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.products-header h2 {
  font-size: 36px;
  color: #3a2815;
  margin-bottom: 25px;
  font-weight: 600;
  line-height: 1.3;
}

.products-header h2 .highlight {
  background: linear-gradient(90deg, #d4af37, #f4e5b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.products-description {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.products-subtitle {
  font-size: 16px;
  background: linear-gradient(90deg, #d4af37, #f4e5b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s ease;
  z-index: 1;
}

.product-card:hover::before {
  left: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(221, 14, 26, 0.2);
  border-bottom: 4px solid transparent;
  border-image: linear-gradient(90deg, #d4af37, #f4e5b0, #d4af37) 1;
}

.product-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-title {
  padding: 20px;
  font-size: 16px;
  color: #3a2815;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  margin: 0;
}

/* Featured Models Section */
.featured-models-section {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.92);
  position: relative;
}

.featured-header {
  text-align: center;
  margin-bottom: 60px;
}

.featured-header h2 {
  font-size: 36px;
  color: #3a2815;
  font-weight: 600;
}

.featured-header .highlight {
  background: linear-gradient(90deg, #d4af37, #f4e5b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.featured-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
}

.featured-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s ease;
  z-index: 1;
}

.featured-card:hover::before {
  left: 100%;
}

.featured-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(221, 14, 26, 0.25);
  border-bottom: 4px solid transparent;
  border-image: linear-gradient(90deg, #d4af37, #f4e5b0, #d4af37) 1;
}

.featured-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-card:hover .featured-image img {
  transform: scale(1.08);
}

.featured-title {
  padding: 25px 20px;
  font-size: 20px;
  color: #3a2815;
  font-weight: 600;
  text-align: center;
  margin: 0;
  transition: color 0.3s ease;
}

.featured-card:hover .featured-title {
  color: #dd0e1a;
}

/* Quick CTA Section */
.quick-cta {
  position: relative;
  padding: 60px 0;
}

.quick-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.quick-cta .container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-box {
  display: block;
  background-color: rgba(179, 11, 21, 0.85);
  color: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  transition: all 250ms ease-in-out;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #d4af37, #f4e5b0, #d4af37);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.cta-box > * {
  position: relative;
  z-index: 1;
}

.cta-box:hover::before {
  opacity: 1;
}

.cta-box:hover {
  background-color: rgba(139, 10, 16, 0.9);
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.cta-icon {
  margin-bottom: 20px;
}

.cta-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 1.5;
  color: #ffffff;
  display: block;
  margin: 0 auto;
}

.cta-box h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #fff;
}

.cta-box p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0;
  color: #fff;
}

/* Site Footer */
.site-footer {
  background: #ffffff;
  color: #000000;
  padding: 80px 0 0;
  font-size: 15px;
  position: relative;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  color: #000000;
  text-decoration: none;
  transition: color 200ms ease;
}

.footer-col ul a:hover {
  color: #d4af37;
}

.footer-social {
  text-align: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  color: #000000;
  margin: 0 12px;
  transition: all 200ms ease;
  position: relative;
}

.footer-social a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(45deg, #d4af37, #f4e5b0);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.footer-social a:hover::before {
  opacity: 1;
}

.footer-social a:hover {
  color: #3a2815;
  transform: scale(1.1);
}

.footer-social svg {
  width: 24px;
  height: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  font-size: 13px;
}

.copyright {
  color: #000000;
}

.footer-legal-links a {
  color: #000000;
  text-decoration: none;
  margin-left: 20px;
  transition: color 200ms ease;
}

.footer-legal-links a:hover {
  color: #d4af37;
}

/* Animation Styles */
@media (prefers-reduced-motion: reduce) {
  .anim,
  .anim-item {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.anim {
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform, opacity;
}

.anim-item {
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform, opacity;
  opacity: 0;
}

.anim:not(.is-inview) {
  opacity: 0;
}

.anim[data-anim="fade-up"]:not(.is-inview),
.anim[data-anim="fade-up"] .anim-item {
  opacity: 0;
  transform: translateY(60px);
}

.anim[data-anim="fade-in"]:not(.is-inview) {
  opacity: 0;
}

.anim.is-inview,
.anim.is-inview .anim-item {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1) rotate(0deg);
}

/* Stagger Animation Delays */
.anim[data-anim-stagger] .anim-item:nth-child(1) {
  transition-delay: 0ms;
}
.anim[data-anim-stagger] .anim-item:nth-child(2) {
  transition-delay: 150ms;
}
.anim[data-anim-stagger] .anim-item:nth-child(3) {
  transition-delay: 300ms;
}
.anim[data-anim-stagger] .anim-item:nth-child(4) {
  transition-delay: 450ms;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .products-grid,
  .featured-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .hero {
    height: clamp(260px, 55vh, 620px);
  }

  .slider-arrow {
    width: 44px;
    height: 44px;
  }

  .slider-arrow-left {
    left: 18px;
  }

  .slider-arrow-right {
    right: 18px;
  }

  .slider-dots {
    bottom: 18px;
  }
}

@media (max-width: 900px) {
  .products-grid,
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-header h2,
  .featured-header h2 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }

  .nav-menu {
    display: none;
  }

  .nav-menu.active {
    display: flex;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .nav-menu.active .menu-items {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .nav-menu.active .menu-item {
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .nav-menu.active .menu-link {
    padding: 15px 20px;
  }

  .nav-menu.active .auth-button {
    width: calc(100% - 40px);
    margin: 15px 20px;
    justify-content: center;
  }

  .hero {
    height: clamp(240px, 50vh, 520px);
  }

  .slide img {
    object-fit: contain;
  }
  /* Mobil cihazlarda mobil görseli göster */
  .slide .desktop-img {
    display: none;
  }

  .slide .mobile-img {
    display: block;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
  }

  .slider-arrow-left {
    left: 12px;
  }

  .slider-arrow-right {
    right: 12px;
  }

  .products-section,
  .featured-models-section {
    padding: 60px 0;
  }

  .products-header h2,
  .featured-header h2 {
    font-size: 28px;
  }

  .bottom-section h2 {
    font-size: 24px;
  }

  .quick-cta {
    padding: 40px 0;
  }

  .quick-cta .container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-legal-links a {
    margin: 0 10px;
  }
}

@media (max-width: 600px) {
  .products-grid,
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .product-image,
  .featured-image {
    height: 160px;
  }

  .product-title,
  .featured-title {
    font-size: 14px;
    padding: 15px;
  }

  .products-header h2,
  .featured-header h2 {
    font-size: 24px;
  }

  .slider-dots {
    gap: 10px;
    bottom: 14px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: clamp(220px, 48vh, 460px);
  }

  .container {
    padding: 0 15px;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
  }

  .slider-arrow-left {
    left: 10px;
  }

  .slider-arrow-right {
    right: 10px;
  }

  .slider-dots {
    bottom: 10px;
  }

  .bottom-section h2 {
    font-size: 20px;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 14px;
  }

  .products-header h2,
  .featured-header h2 {
    font-size: 22px;
  }

  .products-description {
    font-size: 16px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .products-grid,
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .product-image,
  .featured-image {
    height: 200px;
  }

  .product-title,
  .featured-title {
    font-size: 16px;
    padding: 18px 12px;
  }
}

/* === Kocabey Hero (tamamen izole) =============================== */
.kb-hero {
  position: relative;
  display: grid;
  place-items: center; /* içerik merkezde */
  text-align: center;
  color: #fff;

  /* boyutlar */
  min-height: clamp(320px, 45vw, 600px);
  padding: clamp(80px, 12vw, 140px) 0;

  /* TEK görsel arka planını buraya koy */
  background: url("img/hakkimizda.png") center / cover no-repeat;
  /* odak noktasını değiştirmen gerekirse:
     background-position: center 35%; */
}

.kb-hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* okunabilirlik için koyu degrade */
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
  z-index: 0;
}

.kb-hero__inner {
  position: relative;
  z-index: 1; /* overlay üstünde */
  padding-inline: 16px; /* mobilde kenar boşluğu */
}

.kb-hero h1 {
  font-weight: 700;
  line-height: 1.1;
  font-size: clamp(28px, 5vw, 56px);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  margin: 0 0 12px;
}

.kb-hero__subtitle {
  font-size: clamp(14px, 2.2vw, 22px);
  opacity: 0.95;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  margin: 0;
}

/* Mobil odak: görselin üst kısmı önemliyse biraz yukarı kaydır */
@media (max-width: 768px) {
  .kb-hero {
    padding: 100px 0 140px;
    background-position: center 35%;
  }
}
/* Mobilde bottom section gizle */
@media (max-width: 768px) {
  .bottom-section {
    display: none !important;
  }
}

/* Mobilde gizlenecekler */
@media (max-width: 768px) {
  /* Bottom section (Ürünlerimizi Keşfedin butonu) */
  .bottom-section {
    display: none !important;
  }

  /* Slider okları */
  .slider-arrow {
    display: none !important;
  }
}
