/* UZMAN OTO LASTİK & YOL YARDIM - KURUMSAL UI KIT
    Clean, Professional, Action-Oriented
*/

:root {
  --corporate-red: #DC2626;
  --corporate-dark-red: #991B1B;
  --corporate-slate: #1E293B;
  --pure-white: #FFFFFF;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #FFFFFF;
  color: var(--corporate-slate);
}

::selection {
  background: var(--corporate-red);
  color: white;
}

/* CUSTOM SCROLLBAR */
.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: var(--corporate-red);
}

/* ANIMATIONS */

/* Pulse Effect for Emergency Buttons */
@keyframes softPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(220, 38, 38, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
  }
}

.animate-pulse-slow {
  animation: softPulse 2s infinite;
}

/* Slide In Up */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-in-up {
  animation: slideInUp 0.8s ease-out;
}

/* Bounce Slow */
@keyframes bounceSlow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-bounce-slow {
  animation: bounceSlow 3s ease-in-out infinite;
}

/* TYPOGRAPHY OVERRIDES */
h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.025em;
}

/* PROSE CUSTOMIZATION FOR ARTICLES */
.prose-red a {
  color: var(--corporate-red);
  text-decoration: none;
  font-weight: 600;
}

.prose-red a:hover {
  text-decoration: underline;
}

.prose-red strong {
  color: var(--corporate-slate);
  font-weight: 700;
}

/* FORM ELEMENTS */
details > summary {
  list-style: none;
}
details > summary::-webkit-details-marker {
  display: none;
}
.header-gradient {
  background: linear-gradient(135deg, #1E293B 0%, #DC2626 100%);
  position: relative;
  overflow: hidden;
}
.header-gradient::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(220, 38, 38, 0.1) 50%, transparent 70%);
  transform: skewX(-20deg);
}
.header-gradient::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #DC2626 0%, #991B1B 50%, #DC2626 100%);
}