/* static/css/base/base.css */

/* === RENK DEĞİŞKENLERİ === */
:root {
  --primary: #f97316;
  --gray-900: #111827;
}

/* === GENEL RESET ve TEMEL YAPI === */


body {
  font-family: "Inter", sans-serif;
  background-color: #fff;
  color: #111827;
  margin: 0;
  padding: 0;
}

/* === Navbar === */
.bg-orange-gradient {
  background: linear-gradient(to right, #ff7e5f, #feb47b);
}

.navbar .nav-link {
  color: white;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar .nav-link:hover {
  color: #ffd699;
}

footer .nav-link {
  color: #666 !important;
}

footer .nav-link:hover {
  color: var(--primary) !important;
}

.btn {
  border-radius: 30px;
}

/* === Footer === */
footer h6 {
  color: #333;
  font-weight: 600;
  font-size: 1rem;
}

footer ul li a {
  color: #666;
  font-size: 0.95rem;
  transition: color 0.2s ease-in-out;
}

footer ul li a:hover {
  color: var(--primary);
}

footer .nav-link {
  color: #666 !important;
  padding: 0.25rem 0;
}

footer .nav-link:hover {
  color: var(--primary) !important;
}

.bg-orange-gradient.text-white a {
  color: white;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.bg-orange-gradient.text-white a:hover {
  color: #ffd699;
}

.bg-orange-gradient.text-white {
  background: linear-gradient(to right, #ff7e5f, #feb47b);
  color: #fff;
}

/* === QR === */
.store-badge {
  max-width: 160px;
}

/* === Cookie Banner === */
.cookie-banner {
  box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  padding-top: 1.2rem !important;
  padding-bottom: 1.2rem !important;
}

.cookie-banner p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-banner .btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  border-radius: 1.5rem;
}

/* === Cursor Effect === */
.cursor {
  display: inline-block;
  color: white;
  font-weight: bold;
  animation: blink 1s infinite;
  font-size: 1em;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* === Temsilcilik Sayfası Görünürlük Fix === */
section,
.scroll-reveal,
.revealed {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}



