@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@700;800&display=swap');

:root {
  --primary: #F97316;
  --bg-dark: #020617;
  --text-light: #F8FAFC;
  --text-muted: #94A3B8;
  --glass: rgba(15, 23, 42, 0.7);
  --glass-border: rgba(249, 115, 22, 0.2);
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
}

.bg-hero-mask {
  background-image: url('assets/img/alquiler-coches-madrid-es-hero-v1.webp');
  background-size: cover;
  background-position: center;
}

.text-mask-hero {
  background-image: url('assets/img/alquiler-coches-madrid-es-hero-v1.webp');
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: brightness(1.5);
}

.glass-morphism {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
}

.kinetic-underline {
  position: relative;
}

.kinetic-underline::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.kinetic-underline:hover::after {
  width: 100%;
}

.status-bar-anim {
  animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.parallax-bg {
  transform: translateZ(0);
  will-change: transform;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #1E293B;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* SEO content styles */
.long-content p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.long-content h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}
