/* primefahrzeug - Premium Car Care & Detailing Style */

:root {
  --bg-dark: #0a0a0b;
  --bg-card: #141416;
  --primary: #9d4edd; /* Electric Purple */
  --primary-glow: rgba(157, 78, 221, 0.4);
  --text-main: #ffffff;
  --text-muted: #a0a0a5;
  --white: #ffffff;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.heading-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.flex-row { display: flex; }
.flex-between { justify-content: space-between; }
.align-center { align-items: center; }
.text-center { text-align: center; }
.text-purple { color: var(--primary); }

/* Navigation */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 0;
  background: rgba(10, 10, 11, 0.8);
  backdrop-filter: blur(15px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-logo {
  font-size: 24px;
  text-decoration: none;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.brand-logo span {
  color: var(--primary);
  font-weight: 800;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav-link-item {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  transition: var(--transition);
}

.nav-link-item:hover, .nav-link-item.active {
  color: var(--primary);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary);
  color: #fff;
  padding: 16px 35px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  transition: var(--transition);
  display: inline-block;
  border: none;
  box-shadow: 0 10px 20px var(--primary-glow);
}

.btn-primary:hover {
  background-color: #b388ff;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px var(--primary-glow);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(157, 78, 221, 0.05);
}

/* Hero Section */
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background-image: linear-gradient(to right, var(--bg-dark) 40%, transparent 90%), url('../img/hero.png');
  background-size: cover;
  background-position: right center; /* Shift car to the right */
}

.hero-section .container {
  max-width: 100%;
  margin: 0;
  padding-left: 8%; /* Start text closer to the left edge */
}

.hero-content {
  max-width: 700px;
}

.hero-kicker {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  font-weight: 700;
  display: block;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 72px;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* Services */
.section-padding { padding: 120px 0; }

.section-title {
  font-size: 42px;
  margin-bottom: 20px;
}

.section-desc {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-card);
  padding: 50px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-10px);
  background: linear-gradient(145deg, var(--bg-card), #1a1a1c);
}

.service-icon {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 30px;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 15px;
}

/* Feature Row */
.feature-row {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 100px;
}

.feature-img-box {
  flex: 1;
}

.feature-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.feature-text-box {
  flex: 1;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.price-card {
  background: var(--bg-card);
  padding: 60px 40px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  border-color: var(--primary);
  box-shadow: 0 20px 40px var(--primary-glow);
  transform: scale(1.05);
  z-index: 2;
}

.price-card.featured::before {
  content: 'BELIEBTEST';
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--primary);
  padding: 5px 40px;
  font-size: 10px;
  font-weight: 800;
  transform: rotate(45deg);
}

.price-header h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.price-val {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 40px;
}

.price-val span {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 400;
}

.price-features {
  list-style: none;
  margin-bottom: 40px;
  text-align: left;
}

.price-features li {
  margin-bottom: 15px;
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
}

.price-features li::before {
  content: '✓';
  color: var(--primary);
  margin-right: 15px;
  font-weight: 900;
}

/* Footer */
.site-footer {
  background: #050505;
  padding: 100px 0 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-col-title {
  font-size: 16px;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-link-list { list-style: none; }
.footer-link-item { margin-bottom: 15px; }
.footer-link {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-contact-info {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 2;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-line {
  width: 150px;
  height: 2px;
  background: rgba(157, 78, 221, 0.1);
  position: relative;
  overflow: hidden;
}

.loader-line::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--primary);
  animation: load 1.5s infinite;
}

@keyframes load {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Mobile */
@media (max-width: 768px) {
  .header-nav .nav-links { display: none; }
  .hero-title { font-size: 48px; }
  .feature-row { flex-direction: column; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 20px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 30px;
  right: 30px;
  max-width: 400px;
  background: var(--bg-card);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  z-index: 9999;
  transform: translateY(150%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-title {
  font-size: 18px;
  margin-bottom: 15px;
  display: block;
}

.cookie-text {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 25px;
  line-height: 1.5;
}

.cookie-btns {
  display: flex;
  gap: 15px;
}

.cookie-btn-accept {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  font-size: 13px;
  flex: 1;
  transition: var(--transition);
}

.cookie-btn-accept:hover {
  background: #b388ff;
}

.cookie-btn-settings {
  background: transparent;
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 25px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  transition: var(--transition);
}

.cookie-btn-settings:hover {
  border-color: var(--primary);
  color: var(--primary);
}

@media (max-width: 500px) {
  .cookie-banner {
    left: 20px;
    right: 20px;
    bottom: 20px;
    max-width: none;
  }
}
