/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0d0d0d;
  color: #f5f5f5;
}

/* ——————————————— */
/* SAFE-AREA (Sadece iPhone) */
/* ——————————————— */
@supports(padding: env(safe-area-inset-top)) {
  body {
    padding-top: env(safe-area-inset-top);
  }
  .header {
    padding-top: env(safe-area-inset-top);
  }
}

/* ——————————————— */
/* HEADER */
/* ——————————————— */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 7%;
  background: rgba(5, 5, 6, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(205, 205, 205, 0.06);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
}

.brand-text h1 {
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.brand-text p {
  font-size: 0.8rem;
  color: #c5c5c5;
}

.nav a {
  margin-left: 16px;
  text-decoration: none;
  font-size: 0.9rem;
  color: #e2e2e2;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: 0.2s;
}

.nav a:hover {
  color: #f3c16b;
  border-bottom-color: #f3c16b;
}

/* ——————————————— */
/* HERO */
/* ——————————————— */
.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate(-50%, -50%);
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: white;
  z-index: 5;
}

.hero-title {
  font-size: 50px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(0,0,0,0.7);
}

.hero-sub {
  font-size: 22px;
  opacity: 0.95;
  margin-bottom: 20px;
}

.hero-phone-modern {
  margin-top: 15px;
  font-size: 28px;
  font-weight: 700;
}

.hero-phone-modern a {
  color: #d4b27f;
  text-decoration: none;
  transition: 0.3s;
}

.hero-phone-modern a:hover {
  color: #e6c68a;
}

/* ——————————————— */
/* SECTIONS */
/* ——————————————— */
.section {
  padding: 45px 4%;
}

.cat-title {
  font-size: 1.8rem;
  margin-bottom: 12px;
  margin-left: 4px;
  color: #f3c16b;
}

/* ——————————————— */
/* HORIZONTAL SCROLL */
/* ——————————————— */
.scroll-container {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 4px 18px;
  scroll-behavior: smooth;
}

.scroll-container::-webkit-scrollbar {
  height: 7px;
}

.scroll-container::-webkit-scrollbar-track {
  background: #111;
}

.scroll-container::-webkit-scrollbar-thumb {
  background: #f3c16b;
  border-radius: 99px;
}

/* ——————————————— */
/* ITEM CARD */
/* ——————————————— */
.item {
  flex: 0 0 auto;
  min-width: 170px;
  max-width: 190px;
  background: rgba(255, 255, 255, 0.06);
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  transition: 0.25s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.25);
}

.item:hover {
  transform: scale(1.04);
  border-color: #d4b27f;
  box-shadow: 0 0 18px rgba(212,178,127,0.5);
}

.item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 8px;
}

.item h3 {
  font-size: 15px;
  color: #fff;
  font-weight: 600;
  margin: 8px 0 5px;
}

.price {
  background: #d4b27f;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

/* ——————————————— */
/* CONTACT */
/* ——————————————— */
.contact-section {
  padding: 60px 7%;
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.contact-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #f3c16b;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.contact-card {
  background: #151515;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  transition: 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: #f3c16b;
}

.contact-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* ——————————————— */
/* RESPONSIVE */
/* ——————————————— */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 5%;
  }

  .hero {
    height: 55vh;
  }

  .nav a {
    margin-right: 12px;
    margin-left: 0;
  }
}
