* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #0b0b0b;
  color: white;
}

.age-box {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-card {
  width: 90%;
  max-width: 420px;
  background: #151515;
  border: 1px solid #c9963e;
  border-radius: 24px;
  padding: 35px;
  text-align: center;
}

.age-card h2 {
  color: #c9963e;
  margin-bottom: 15px;
}

.age-card p {
  color: #ccc;
  margin-bottom: 25px;
}

.age-card button {
  width: 100%;
  padding: 14px;
  margin-top: 10px;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
}

#yesBtn {
  background: #c9963e;
  color: #111;
}

#noBtn {
  background: #333;
  color: white;
}

header {
  background: #050505;
  border-bottom: 1px solid #c9963e;
  padding: 20px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  color: #c9963e;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
}

nav a:hover {
  color: #c9963e;
}

.hero {
  min-height: 85vh;
  background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.85)),
    url("images/foto1.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.hero h2 {
  font-size: 56px;
  color: white;
  margin: 15px 0;
}

.hero p {
  font-size: 20px;
  color: #ddd;
}

.location {
  color: #c9963e !important;
  font-weight: bold;
}

.btn,
.whatsapp {
  display: inline-block;
  margin-top: 25px;
  background: #c9963e;
  color: #111;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

section {
  padding: 70px 8%;
}

section h2 {
  text-align: center;
  color: #c9963e;
  font-size: 34px;
  margin-bottom: 35px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cards div {
  background: #181818;
  border: 1px solid #333;
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  font-weight: bold;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.gallery img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid #333;
}

#hakkimizda p,
#iletisim p {
  text-align: center;
  max-width: 800px;
  margin: 15px auto;
  color: #ddd;
  font-size: 18px;
}

#iletisim {
  text-align: center;
  background: #121212;
}

footer {
  background: #000;
  border-top: 1px solid #c9963e;
  text-align: center;
  padding: 25px;
  color: #aaa;
}

@media (max-width: 800px) {
  header {
    flex-direction: column;
    gap: 15px;
  }

  nav a {
    margin: 0 7px;
    font-size: 14px;
  }

  .hero h2 {
    font-size: 36px;
  }

  .cards,
  .gallery {
    grid-template-columns: 1fr;
  }
}
.campaign-bar {
  background: #c9963e;
  color: #111;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  font-weight: bold;
}

.campaign-bar span {
  display: inline-block;
  padding-left: 100%;
  animation: campaignMove 18s linear infinite;
}

@keyframes campaignMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.category-card {
  cursor: pointer;
}

.product-list {
  margin-top: 35px;
  background: #181818;
  border: 1px solid #c9963e;
  border-radius: 20px;
  padding: 25px;
  display: none;
}

.product-list h3 {
  color: #c9963e;
  margin-bottom: 15px;
  text-align: center;
}

.product-list ul {
  list-style: none;
  text-align: center;
}

.product-list li {
  padding: 10px;
  border-bottom: 1px solid #333;
  color: #ddd;
}

.gallery video {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid #333;
  background: #000;
}