/* CSS Variablen (Light Mode) */
:root {
    --primary-color: #d33622;
    --bg-color: #ffffff;
    --text-color: #1a1a1a;
    --header-bg: #ffffff;
    --footer-bg: #f8f9fa;
    --hero-bg: #ffffff;
    --card-bg: #ffffff;
    --border-color: rgba(0,0,0,0.1);
    --shadow-color: rgba(0,0,0,0.08);
}

/* Global Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--header-bg);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.logo-link {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-color);
}
.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav-list li a {
    color: var(--text-color);
}

/* Hero (Vollständig) */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('uploads/images/kurzscheibeneggen.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
}
.hero-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}
.hero-subline {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    color: #ffffff;
}
.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
.section {
    padding: 4rem 0;
}
.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
}
.section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Grids */
.features-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Cards */
.feature-card,
.service-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow-color);
    display: flex;
    flex-direction: column;
}
.feature-card h3,
.service-card h3 {
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}
.btn-primary {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}
.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--footer-bg);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--border-color);
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}
.footer-col h4 {
    margin-bottom: 0.5rem;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li a {
    color: var(--text-color);
}

/* Page Hero (Unterseiten) */
.page-hero {
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, color-mix(in srgb, var(--primary-color) 70%, #000) 100%);
    color: #fff;
}
.page-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin: 0;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--header-bg);
    transition: right 0.3s ease;
    z-index: 999;
    padding: 4rem 1.5rem;
}
.mobile-nav.active {
    right: 0;
}
.mobile-nav .nav-list {
    flex-direction: column;
}
.mobile-nav .nav-list li {
    margin-bottom: 1.5rem;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text-color);
}

/* Contact Form - ENTFERNT (nur CTA mit Adresse) */

/* Responsive */
@media (max-width: 768px) {
    .main-nav { display: none; }
    .hamburger { display: flex; }
    .hero-headline { font-size: 2rem; }
}
@media (min-width: 769px) {
    .mobile-nav { display: none; }
}

/* Logo Styles */
.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-image {
  max-height: 60px;
  width: auto;
  display: block;
}
.logo-presented {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.3;
  padding-left: 0.75rem;
  border-left: 1px solid var(--border-color);
}
.presented-by {
  font-size: 0.65rem;
  text-transform: lowercase;
  color: var(--text-color);
  opacity: 0.7;
  letter-spacing: 0.5px;
  margin-bottom: 0.15rem;
}
.presented-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.2;
}
@media (max-width: 768px) {
  .logo {
    gap: 0.75rem;
  }
  .logo-image {
    max-height: 45px;
  }
  .logo-presented {
    padding-left: 0.5rem;
  }
  .presented-by {
    font-size: 0.55rem;
    margin-bottom: 0.1rem;
  }
  .presented-name {
    font-size: 0.65rem;
  }
}
@media (max-width: 480px) {
  .logo-presented {
    display: none;
  }
}

/* Produktbilder */
.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  margin-bottom: 1rem;
}

.feature-card {
  overflow: hidden;
}

@media (max-width: 768px) {
  .product-image {
    height: 150px;
  }
}

/* --- Custom Updates --- */
#vorteile {
    background-color: #ef3e42;
}
#vorteile .section-title {
    color: #ffffff;
}

/* --- Hero Text Styles --- */
.hero-headline {
    color: #ffffff;
}

/* --- Button Hover Styles --- */
.btn-primary:hover {
    background: #b52d1d;
    border-color: #b52d1d;
    color: #ffffff;
    outline: none;
}

/* --- Produkt-Card Link Styles --- */
.feature-card a {
    color: var(--text-color);
    text-decoration: none;
}
.feature-card a h3 {
    color: var(--primary-color);
}
