/* === RESET & BASIS === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0e0e0e;
  --bg-alt: #1a1a1a;
  --bg-light: #f4f3ee;
  --primary: #ff5722;
  --primary-dark: #e64a19;
  --accent: #ffc107;
  --text: #f4f3ee;
  --text-dark: #1a1a1a;
  --muted: #8a8a8a;
  --border: #2a2a2a;
  --steel: #c0c0c0;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --font-head: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(14, 14, 14, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.logo {
  font-family: var(--font-head);
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--text);
}

.logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  background: var(--primary);
  color: white !important;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 87, 34, 0.4);
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  padding: 8rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  overflow: hidden;
  background: 
    radial-gradient(ellipse at top right, rgba(255, 87, 34, 0.15), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(255, 193, 7, 0.08), transparent 50%),
    var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,0.02) 35px, rgba(255,255,255,0.02) 70px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
  from { transform: translateX(-30px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 87, 34, 0.15);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 87, 34, 0.3);
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero h1 .highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.1em;
  width: 100%;
  height: 0.15em;
  background: var(--primary);
  z-index: -1;
  transform: skewX(-10deg);
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.8rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 87, 34, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}

/* === DEAL BOX === */
.deal-box {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 3rem 2.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  animation: fadeInRight 0.8s ease-out 0.3s both;
  overflow: hidden;
}

@keyframes fadeInRight {
  from { transform: translateX(30px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.deal-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  pointer-events: none;
}

.deal-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--text-dark);
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.deal-box h2 {
  font-family: var(--font-head);
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.deal-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 1.5rem 0;
  position: relative;
  z-index: 1;
}

.deal-price .currency {
  font-family: var(--font-head);
  font-size: 2rem;
}

.deal-price .amount {
  font-family: var(--font-head);
  font-size: 6rem;
  line-height: 1;
  color: white;
}

.deal-price .currency2 {
  font-size: 1rem;
  opacity: 0.9;
  margin-left: 0.3rem;
}

.deal-features {
  list-style: none;
  margin: 1.5rem 0;
  position: relative;
  z-index: 1;
}

.deal-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 500;
}

.deal-features li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.deal-note {
  background: rgba(0,0,0,0.2);
  padding: 0.8rem 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

/* === SECTIONS === */
section {
  padding: 6rem 2rem;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.02em;
}

.section-head p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* === SERVICES === */
.services {
  background: var(--bg-alt);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--primary);
  transition: height 0.4s;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.service-card:hover::before {
  height: 100%;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 87, 34, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  transition: all 0.4s;
}

.service-card:hover .service-icon {
  background: var(--primary);
  transform: rotate(-5deg) scale(1.1);
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  letter-spacing: 0.03em;
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.service-card.featured {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-color: var(--primary);
}

.service-card.featured h3,
.service-card.featured p {
  color: white;
}

.service-card.featured p {
  color: rgba(255,255,255,0.9);
}

.service-card.featured .service-icon {
  background: rgba(255,255,255,0.2);
  color: white;
}

.service-card.featured::before {
  background: var(--accent);
  height: 100%;
}

/* === ABOUT / GALLERY === */
.about {
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(255, 87, 34, 0.2) 100%);
  pointer-events: none;
}

.about-stats {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  padding: 1.2rem;
  border-radius: 6px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  z-index: 2;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
  letter-spacing: 0.05em;
}

.about-content h2 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.about-content > p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.about-list {
  list-style: none;
}

.about-list li {
  padding: 0.8rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
}

.about-list li:last-child {
  border-bottom: none;
}

.about-list .check {
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 2px;
}

.about-list strong {
  display: block;
  margin-bottom: 0.2rem;
}

.about-list span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* === CONTACT === */
.contact {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: var(--bg);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  gap: 1.2rem;
  align-items: center;
  transition: all 0.3s;
}

.contact-card:hover {
  border-color: var(--primary);
  transform: translateX(8px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 87, 34, 0.15);
  color: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-card h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

.contact-card p {
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-card a {
  color: var(--text);
  transition: color 0.3s;
}

.contact-card a:hover {
  color: var(--primary);
}

.hours-card {
  background: var(--bg);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.hours-card h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row .day {
  font-weight: 500;
}

.hours-row .time {
  color: var(--primary);
  font-weight: 600;
}

.hours-row.closed .time {
  color: var(--muted);
}

/* === MAP === */
.map {
  background: var(--bg);
  padding: 0;
}

.map-container {
  position: relative;
  height: 400px;
  background: var(--bg-alt);
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.5) invert(0.9) hue-rotate(180deg);
}

.map-overlay {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background: var(--bg);
  padding: 1.5rem 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow);
  max-width: 280px;
}

.map-overlay h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.map-overlay p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* === FOOTER === */
.footer {
  background: #0a0a0a;
  padding: 3rem 2rem 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  font-family: var(--font-head);
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-brand h3 span {
  color: var(--primary);
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 320px;
}

.footer h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  padding: 0.3rem 0;
}

.footer ul a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.3s;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--muted);
  margin: 0 0.5rem;
  transition: color 0.3s;
}

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

/* === ANIMATIONEN === */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  
  .nav-burger {
    display: block;
  }
  
  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 1.5rem 3rem;
    gap: 2.5rem;
  }
  
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  section {
    padding: 4rem 1.5rem;
  }
  
  .deal-box h2 {
    font-size: 1.8rem;
  }
  
  .deal-price .amount {
    font-size: 4.5rem;
  }
  
  .map-overlay {
    position: relative;
    top: 0;
    left: 0;
    margin: 1rem;
    max-width: none;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .deal-price .amount {
    font-size: 3.5rem;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

/* === MOBILE MENU === */
@media (max-width: 900px) {
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
  }
}
