html,
body {
  font-family: "Nunito", sans-serif;
  color: #383839;
  background-color: #ffffff;
  margin: 0;
}

.header {
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
}

.header .container {
  max-width: 1200px;
}

.header .logo img {
  height: 40px;
}

.header nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s ease;
}

.header nav a:hover {
  color: #ae0a22;
}

.header .btn-call {
  background: #ae0a22;
  color: #fff;
  border: none;
  padding: 10px 28px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.header .btn-call:hover {
  background: #8d081d;
}

.menu-toggle {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  padding: 5px 10px;
  cursor: pointer;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  transition: right 0.4s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.mobile-menu-header .logo img {
  height: 35px;
}

.mobile-menu-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  padding: 0;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.mobile-menu-logo {
  margin-bottom: 10px;
}

.mobile-menu-logo img {
  height: 50px;
}

.mobile-menu-intro {
  text-align: center;
  color: #fff;
  font-size: 11px;
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 20px;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
}

.mobile-menu-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.mobile-menu-nav a:hover {
  color: #ae0a22;
}

.mobile-menu-footer {
  text-align: center;
  color: #fff;
  font-size: 12px;
  margin-top: auto;
  padding-top: 20px;
}

.mobile-menu-contact {
  margin-bottom: 25px;
  line-height: 1.8;
}

.mobile-menu-contact p {
  margin: 5px 0;
  font-size: 11.5px;
}

.mobile-menu-contact a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-menu-contact a:hover {
  color: #ae0a22;
}

.mobile-menu-follow {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 13px;
}

.mobile-menu-social {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 10px;
}

.mobile-menu-social a {
  color: #fff;
  font-size: 20px;
  transition: color 0.3s ease;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-social a:hover {
  color: #ae0a22;
}

/* Demo content */
.demo-content {
  padding: 50px 20px;
  text-align: center;
}

/* Desktop - hide mobile menu button */
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none;
  }
}

/* Mobile - hide desktop nav and button */
@media (max-width: 767px) {
  .header nav,
  .header .btn-call {
    display: none !important;
  }
}

#banner {
  height: 80vh;
  overflow: hidden;
  position: relative;
  margin-top: 3rem;
}

#banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom: 40px solid #ae0a22;
  border-color: #ae0a22;
}

.banner-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.banner-overlay h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.banner-overlay h2 {
  font-size: 2rem;
}

.brinleigh {
  font-family: "Brinleigh Regular", cursive;
  color: #ae0a22;
}

#magazalar {
  background-color: #fff;
  color: #383839;
}

.text-danger {
  color: #ae0a22 !important;
}

h2 {
  font-weight: 700;
  color: #383839;
}

h6 {
  letter-spacing: 0.3px;
  font-weight: 900;
}
hr {
  color: #fff;
  opacity: 1;
}
.store-box {
  border-radius: 18px;
  background: #f8f8f8;
  border: 1px solid #eaeaea;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease-in-out;
}

.store-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.store-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #383839;
}

.store-box .fw-semibold {
  font-weight: 900 !important;
  color: #383839 !important;
}

.store-box .fw-bold {
  font-weight: 800;
  color: #383839;
}
.store-header i {
  display: none;
}
.store-divider {
  border: none;
  border-top: 2px solid #383839;
  width: 40px;
  margin: 5px 0 15px;
  opacity: 0.8;
}

.store-link {
  color: #383839;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease, transform 0.2s ease;
}

.store-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #ae0a22;
  transition: width 0.3s ease;
}

.store-link:hover {
  color: #ae0a22;
  transform: translateX(2px);
}

.store-link:hover::after {
  width: 100%;
}

.follow-area {
  padding-top: 25px;
}

.follow-area p {
  font-size: 15px;
  font-weight: 400;
  color: #383839;
  margin-bottom: 10px;
  line-height: 1.6;
}

.follow-area h6 {
  font-weight: 700;
  color: #ae0a22;
  margin-bottom: 0;
}

.social-icons a {
  text-decoration: none;
  color: #ae0a22;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(174, 10, 34, 0.08);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #ae0a22;
  color: #fff;
  transform: translateY(-2px);
}

/* Mobile accordion styles */
@media (max-width: 767px) {
    
#banner {
  height: auto;
}
  #magazalar {
    padding: 30px 0 !important;
  }
  .store-header i {
    display: block;
  }
  .stores-grid {
    gap: 0 !important;
    margin: 0 !important;
  }

  .stores-grid > div {
    padding: 0 !important;
  }

  .store-item {
    border-bottom: 1px solid #e0e0e0;
    background: #fff;
  }

  .store-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 18px 16px;
    background: #fff;
    cursor: pointer;
    gap: 12px;
  }

  .store-title-wrapper {
    /* flex: 1; */
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }

  .store-title {
    margin: 0 !important;
    font-size: 11.5px;
    flex: 1;
    line-height: 1.4;
    letter-spacing: 0.2px;
  }

  .store-arrow {
    color: #ae0a22;
    font-size: 12px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .store-item.active .store-arrow {
    transform: rotate(180deg);
  }

  .btn-direction {
    background: #ae0a22;
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 11.5px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: flex;
  }

  .btn-direction i {
    font-size: 11px;
  }

  .btn-direction:active {
    background: #8d081d;
  }

  .store-box {
    display: none;
    border-radius: 0;
    box-shadow: none;
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 0;
    padding: 16px !important;
    background: #fafafa;
    animation: slideDown 0.25s ease;
  }

  .store-box p {
    font-size: 13.5px;
  }

  .store-divider {
    width: 30px;
    margin: 8px 0 12px;
    border-top: 2px solid #ae0a22;
  }

  .store-item.active .store-box {
    display: block;
  }

  .store-item.active .store-header {
    border-bottom: 1px solid #e0e0e0;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      max-height: 0;
    }
    to {
      opacity: 1;
      max-height: 500px;
    }
  }

  .follow-area {
    padding: 30px 20px !important;
    text-align: center;
    background: #fff;
    margin-top: 0 !important;
  }

  .follow-area p {
    font-size: 14px;
  }

  .social-icons {
    justify-content: center;
  }

  .social-icons a {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

/* Desktop view */
@media (min-width: 768px) {
  .store-header {
    display: block;
  }

  .btn-direction {
    display: none;
  }

  .store-box {
    display: block !important;
  }

  .store-title::after {
    display: none;
  }
}
#footer {
  font-family: "Nunito", sans-serif;
  color: #eaeaea;
}

/* ÜST GRİ ALAN */
.footer-top {
  background-color: #383839;
  padding: 60px 0 40px;
}

/* LOGO VE AÇIKLAMA */
.footer-about {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.footer-left {
  text-align: left;
}

.footer-logo {
  height: 65px;
}

.footer-title {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin-bottom: 8px;
}

.footer-line {
  width: 32px;
  border: none;
  border-top: 2px solid #ae0a22;
  margin-bottom: 15px;
}

.footer-text {
  color: #fff;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 6px;
}

.footer-text a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-text a:hover {
  color: #ae0a22;
  text-decoration: underline;
}

.footer-right .row {
  --bs-gutter-x: 1.25rem;
}

.footer-col {
  flex: 0 0 auto;
  width: 30%;
  min-width: 220px;
}

.footer-links a {
  display: inline-block;
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 6px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #ae0a22;
  transform: translateX(3px);
}

/* ALT KIRMIZI BANT */
.footer-bottom {
  background-color: #ae0a22;
  color: #f8f8f8;
  font-size: 14px;
}

.follow-title {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}

.social-icons a {
  color: #f8f8f8;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* COPYRIGHT ORTADA */
.footer-copy {
  font-size: 13px;
  color: #ffffff;
  text-align: center;
}

/* ALT LİNKLER */
.footer-bottom-links a {
  color: #f8f8f8;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ======================================================
   ✅ RESPONSIVE MOBİL DÜZEN (Görseldekiyle birebir)
   ====================================================== */
@media (max-width: 991px) {
  /* Footer about yapısını dikey hizaya zorla */
  .footer-about {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
  }

  /* İçerideki d-flex elemanını da kır */
  .footer-about > div {
    flex-direction: column !important;
    align-items: center !important;
    text-align: left !important;
  }

  /* Görsel ve metin bloklarını dikey hizala */
  .footer-about img {
    margin: 0 auto 20px auto !important;
    display: block !important;
  }

  /* Yazı sola dayalı olacak */
  .footer-about h6,
  .footer-about p {
    text-align: left !important;
  }

  /* Bizi Takip Et gri alanda aktif */
  .footer-follow {
    display: block !important;
    text-align: left !important;
    padding: 30px 0 0 0;
  }

  .footer-follow h6 {
    font-weight: 700;
    color: #f8f8f8;
    margin-bottom: 12px;
  }

  .footer-follow .social-icons {
    display: flex;
    gap: 18px;
    justify-content: flex-start;
  }

  .footer-follow .social-icons a {
    color: #f8f8f8;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .footer-follow .social-icons a:hover {
    color: #ae0a22;
  }

  /* Alt kırmızı alan sadece copyright ve link */
  .footer-bottom .follow-title,
  .footer-bottom .social-icons {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .footer-bottom {
    text-align: center;
  }

  .footer-bottom .row {
    flex-direction: column;
    gap: 15px;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-bottom-links {
    justify-content: center !important;
    flex-wrap: wrap;
    gap: 10px;
  }

  .footer-copy {
    order: 2;
  }
}
/* ======================================
   YAŞAM ALANI BÖLÜMÜ
   ====================================== */
#yasam-alani {
  position: relative;
  overflow: hidden;
}

/* Arka plan - Desktop */
.yasam-bg {
  background: url("../img/yasam-alani-desktop.png") center center/cover
    no-repeat;
  position: relative;
  padding: 100px 0 80px;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

/* Mobil başlık ve görsel - gizli */
.mobile-baslik,
.mobile-image,
.mobile-metin {
  display: none;
}

/* Sol Başlık Wrapper */
.baslik-wrapper {
  max-width: 500px;
}

/* Yazılar */
.yasam-baslik {
  font-size: 2.5rem;
  color: #383839;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 10px;
}

.yasam-binlerce {
  font-size: 2.5rem;
  color: #383839;
  font-weight: 400;
  line-height: 1.1;
}

.yasam-binlerce strong {
  font-weight: 700;
  font-size: 3rem;
  position: relative;
  float: right;
  right: 27%;
  line-height: 0;
}

.brinleigh {
  font-family: "Brinleigh Regular", cursive;
  color: #ae0a22;
  font-size: 8rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0;
}

/* Sağ Metin Kutusu */
.metin-kutusu {
  max-width: 400px;
  margin-left: 10%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  float: inline-end;
  margin-top: 5rem;
}

.aciklama {
  font-weight: 700;
  color: #383839;
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.detay {
  font-size: 15px;
  color: #383839;
  line-height: 1.8;
  margin-bottom: 15px;
  font-weight: 400;
}

.evpa-imza {
  font-family: "Brinleigh Regular", cursive;
  font-size: 6rem;
  color: #ae0a22;
  margin-top: 30px;
  font-weight: 400;
  float: inline-start;
}

/* ======================================
   ALT KIRMIZI ALAN
   ====================================== */
.alt-kirmizi-alan-wrapper {
  position: relative;
  z-index: 3;
}

.alt-kirmizi-alan {
  background-color: #ae0a22;
  border-radius: 40px;
  margin-top: -5%;
  margin-bottom: 5%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1320px;
  padding: 0 15px;
  position: relative;
}

.kirmizi-wrapper {
  display: flex;
  gap: 15px;
  align-items: stretch;
}

.kutu {
  background-color: transparent;
  color: #fff;
  border-radius: 0;
  padding: 35px 25px;
  text-align: center;
  flex: 1;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.kutu h6 {
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.05rem;
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kutu p {
  font-size: 14px;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 0;
  opacity: 0.95;
  flex-grow: 1;
}

.kutu.aktif {
  background-color: #383839;
  border-radius: 40px;
}

.kutu:hover:not(.aktif) {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
}

/* Slider navigasyon - sadece mobilde */
.slider-nav {
  display: none;
}

.slider-dots {
  display: none;
}

/* ======================================
   MOBİL DÜZEN
   ====================================== */
@media (max-width: 1200px) {
  .metin-kutusu {
    max-width: 500px;
  }

  .kutu {
    padding: 30px 20px;
  }

  .kutu h6 {
    font-size: 0.95rem;
    min-height: 42px;
  }

  .kutu p {
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  /* Desktop içeriği gizle */
  .yasam-bg {
    display: none;
  }

  /* 1. MOBİL BAŞLIK - Görsel üstünde */
  .mobile-baslik {
    display: block;
    text-align: center;
    padding: 30px 20px 15px;
    background: #fff;
  }

  .mobile-baslik .baslik-wrapper {
    max-width: 100%;
  }

  .yasam-baslik {
    font-size: 1.6rem;
    margin-bottom: 5px;
  }

  .yasam-binlerce {
    font-size: 1.6rem;
  }

  .yasam-binlerce strong {
    font-size: 1.8rem;
    float: none;
    right: 0;
    display: inline;
    line-height: 1.2;
  }

  .brinleigh {
    font-size: 3.5rem;
    line-height: 0.9;
  }

  /* 2. MOBİL GÖRSEL */
  .mobile-image {
    display: block;
    width: 100%;
    height: 400px;
    background: url("../img/yasam-alani-mobile.png") center center/cover
      no-repeat;
  }

  /* 3. KIRMIZI SLIDER ALAN */
  .alt-kirmizi-alan-wrapper {
    margin: 0;
  }

  .alt-kirmizi-alan {
    margin: 0;
    border-radius: 0;
    padding: 50px 0 30px;
    max-width: 100%;
    position: relative;
  }

  .kirmizi-wrapper {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    gap: 20px;
    padding: 0 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: smooth;
  }

  .kirmizi-wrapper::-webkit-scrollbar {
    display: none;
  }

  .kutu {
    min-width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    flex: 0 0 calc(100% - 40px);
    padding: 30px 25px;
    border-radius: 20px;
    scroll-snap-align: center;
  }

  .kutu.aktif {
    background-color: #383839;
    border-radius: 20px;
  }

  .kutu h6 {
    font-size: 1.1rem;
    min-height: auto;
    margin-bottom: 15px;
  }

  .kutu p {
    font-size: 14px;
    line-height: 1.7;
  }

  /* Slider navigasyon okları */
  .slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    color: #ae0a22;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  }

  .slider-nav:hover {
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .slider-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  .slider-prev {
    left: 10px;
  }

  .slider-next {
    right: 10px;
  }

  /* Slider dots */
  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding-bottom: 10px;
  }

  .dot {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .dot.active {
    background-color: #fff;
    width: 24px;
    border-radius: 4px;
  }

  /* 4. MOBİL METİN KUTUSU - En altta */
  .mobile-metin {
    display: block;
    padding: 40px 20px;
    background: #fff;
  }

  .mobile-metin .metin-kutusu {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    align-items: center;
    float: none;
  }

  .aciklama {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .detay {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
  }

  .mobile-metin .evpa-imza {
    font-size: 3.5rem;
    margin-top: 25px;
    float: none;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .yasam-baslik {
    font-size: 1.4rem;
  }

  .yasam-binlerce {
    font-size: 1.4rem;
  }

  .yasam-binlerce strong {
    font-size: 1.6rem;
  }

  .brinleigh {
    font-size: 2.8rem;
  }

  .mobile-image {
    height: 320px;
  }

  .kutu {
    padding: 25px 20px;
  }

  .kutu h6 {
    font-size: 1rem;
  }

  .kutu p {
    font-size: 13px;
  }

  .slider-nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .detay {
    font-size: 13px;
  }

  .mobile-metin .evpa-imza {
    font-size: 2.8rem;
  }
}
