:root {
  --accent: #ffd700;
  --accent-glow: rgba(255, 215, 0, 0.3);
  --bg-dark: #111111;
  --text-light: #fdfdfd;
  font-family: 'Segoe UI', sans-serif;
}

body {
  margin: 0;
  background: url("img/audi.jpg") center/cover no-repeat fixed;
  color: var(--text-light);
  line-height: 1.6;
  padding-top: 80px;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 999;
}

.header-logo {
  height: 40px;
}

nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

nav a:hover {
  color: var(--accent);
}

/* PRICING SECTION - Glassmorphism look */
.glass-section {
  padding: 60px 10%;
}

.prices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.price-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--accent-glow);
  border-radius: 12px;
  padding: 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  color: var(--text-light);
  text-align: center;
  transition: transform 0.2s ease;
}

.price-card:hover {
  transform: scale(1.03);
}

.price-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--accent);
}

.price-card .price {
  font-size: 2rem;
  margin-bottom: 15px;
}

.price-card .price span {
  color: var(--accent);
}

.price-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.price-card ul li {
  padding: 6px 0;
}

.price-card .btn {
  margin-top: 15px;
}

/* Sterne-Styling */
.starrating {
  display: flex;
  gap: 4px;
  margin-top: 4px;
}

.starrating img {
  height: 30px;
  width: 30px;
  object-fit: contain;
}

/* EXTRAS SECTION */
.extras-section {
  background: #111111;
  padding: 60px 10%;
}

.subheading {
  text-align: center;
  font-size: 1.8rem;
  color: var(--accent);
  margin: 0 0 30px;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.extras-grid div {
  display: flex;
  justify-content: space-between;
  background: #111;
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid var(--accent-glow);
  color: var(--text-light);
}

.extras-grid strong {
  padding-right: 7px;
}

.extras-grid span {
  color: var(--accent);
}

/* Button */
.btn {
  background: var(--accent);
  color: #000;
  border: none;
  padding: 12px 28px;
  border-radius: 5px;
  font-weight: bold;
  box-shadow: 0 0 5px var(--accent-glow), 0 0 10px var(--accent-glow);
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  box-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent);
  transform: scale(1.05);
}

/* Shimmer Effekt */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  pointer-events: none;
}

.btn.shimmer.animate::before {
  animation: shimmer 1s ease forwards;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.btn-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* Footer */
footer {
  background: #111111;
  padding: 60px 10%;
  color: #fff;
  text-align: center;
}
