@import url('brand.css');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');

/* RESET & BASE */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-weight: var(--font-weight-regular);
  color: var(--metin-siyah, #1A1A1A);
  background: var(--brand-beyaz);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}


/* NAVBAR */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--brand-antrasit);
  padding: 0.75rem 0;
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--brand-beyaz, #fff);
  font-size: 0.875rem;
  font-weight: var(--font-weight-regular);
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff !important;
  opacity: 1 !important;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: var(--font-weight-bold, 700);
  font-size: 0.875rem;
  transition: background 0.3s ease;
}

.nav-cta:hover {
  background: #1ebe5d;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s ease;
}


/* HERO */

.hero {
  background: var(--brand-antrasit);
  color: #fff;
  padding: 8rem 0 5rem;
  text-align: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-isletme {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-icli {
  font-weight: var(--font-weight-light);
  color: #fff;
}

.hero-kofteci {
  font-weight: var(--font-weight-black);
  color: var(--brand-altin);
}

.hero-slogan {
  font-size: 1.125rem;
  color: var(--brand-slogan, rgba(255, 255, 255, 0.85));
  margin-bottom: 2.5rem;
  font-weight: var(--font-weight-light);
  letter-spacing: 2px;
  text-transform: lowercase;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 6px;
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
}

.btn-telefon {
  background: transparent;
  color: var(--brand-altin);
  border-color: var(--brand-altin);
}

.btn-telefon:hover {
  background: var(--brand-altin);
  color: var(--brand-siyah);
}

.btn-telefon-koyu {
  background: transparent;
  color: var(--brand-altin);
  border-color: var(--brand-altin);
}

.btn-telefon-koyu:hover {
  background: var(--brand-altin);
  color: var(--brand-siyah);
}


/* BÖLÜM ORTAK */

.bolum {
  padding: 5rem 0;
}

.bolum-baslik {
  text-align: center;
  margin-bottom: 3rem;
}

.bolum-baslik h2 {
  font-size: 2rem;
  font-weight: var(--font-weight-black);
  color: var(--brand-siyah);
  margin-bottom: 0.5rem;
}

.bolum-baslik p {
  font-size: 1.125rem;
  color: #666;
}

.bolum-koyu {
  background: var(--brand-antrasit);
  color: #fff;
}

.bolum-koyu .bolum-baslik h2 {
  color: #fff;
}

.bolum-koyu .bolum-baslik p {
  color: rgba(255, 255, 255, 0.6);
}

.bolum-krem {
  background: #F9F7F2;
}


/* HAKKIMIZDA */

.hakkimizda-icerik {
  max-width: 720px;
  margin: 0 auto;
}

.hakkimizda-metin h3 {
  font-size: 1.5rem;
  font-weight: var(--font-weight-black);
  margin-bottom: 1rem;
}

.hakkimizda-metin p {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.hakkimizda-bilgi {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.hakkimizda-bilgi-satir {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #666;
}

.hakkimizda-bilgi-satir strong {
  color: var(--brand-siyah);
  min-width: 100px;
}


/* SİPARİŞ BÖLÜMÜ */

.bolum-siparis {
  background: var(--brand-siyah);
  color: #fff;
}

.bolum-siparis .bolum-baslik h2 {
  color: #fff;
}

.bolum-siparis .bolum-baslik p {
  color: var(--brand-altin);
  font-weight: 700;
}

.siparis-cta {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(232, 213, 163, 0.15);
}

.siparis-cta > p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.siparis-butonlar {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.platform-kart {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.platform-kart:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.platform-kart img {
  width: 100%;
  max-width: 140px;
  height: 48px;
  object-fit: contain;
}

.platform-kart span {
  font-weight: 700;
  font-size: 0.875rem;
  color: #666;
  display: block;
}


/* İLETİŞİM */

.iletisim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.iletisim-bilgiler {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.iletisim-satir {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.iletisim-ikon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand-altin);
}

.iletisim-detay h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.iletisim-detay p,
.iletisim-detay a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.iletisim-detay a:hover {
  color: var(--brand-altin);
}

.harita-wrapper {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  min-height: 320px;
}

.harita-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}


/* FOOTER */

.footer {
  background: var(--brand-siyah);
  color: #fff;
  padding: 3rem 0 2rem;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo img {
  height: 32px;
  width: auto;
}

.footer-sosyal {
  display: flex;
  gap: 1.5rem;
}

.footer-sosyal a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 0.625rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.footer-sosyal a:hover {
  color: var(--brand-altin);
  border-color: var(--brand-altin);
}

.footer-sosyal svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer-bilgi {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}


/* FLOATING WHATSAPP */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}


/* RESPONSIVE - TABLET */

@media (max-width: 768px) {
  .hero-isletme {
    font-size: 2.5rem;
  }

  .bolum-baslik h2 {
    font-size: 1.75rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--brand-antrasit);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 7rem 0 3rem;
    min-height: 60vh;
  }

  .siparis-butonlar {
    flex-direction: column;
    align-items: center;
  }

  .siparis-butonlar .btn {
    width: 100%;
    justify-content: center;
  }

  .platform-grid {
    grid-template-columns: 1fr 1fr;
  }

  .iletisim-grid {
    grid-template-columns: 1fr;
  }

  .harita-wrapper {
    min-height: 250px;
  }
}


/* RESPONSIVE - MOBİL */

@media (max-width: 480px) {
  .hero-isletme {
    font-size: 2rem;
  }

  .bolum-baslik h2 {
    font-size: 1.5rem;
  }

  .container {
    padding: 0 1rem;
  }

  .hero {
    min-height: auto;
    padding: 6rem 0 2.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-sosyal {
    flex-direction: column;
    width: 100%;
  }

  .footer-sosyal a {
    justify-content: center;
  }
}
