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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: #2c2c2c;
  background: #fff;
  line-height: 1.7;
}

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

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

/* ===== Typography ===== */
h1, h2, h3 { font-family: 'Pacifico', cursive; font-weight: 400; line-height: 1.2; }

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #c94e1a;
  text-align: center;
  margin-bottom: 2rem;
}

.section-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

.btn-primary {
  background: #e86b3a;
  color: #fff;
}

/* ===== Layout ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section-light { background: #fff; }
.section-warm  { background: #fff8f0; }

/* ===== Header / Nav ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Pacifico', cursive;
  font-size: 1.5rem;
  color: #e86b3a;
}

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

.nav-menu a {
  font-weight: 700;
  font-size: 0.95rem;
  color: #2c2c2c;
  transition: color 0.15s;
}

.nav-menu a:hover { color: #e86b3a; }

.nav-cta {
  background: #e86b3a;
  color: #fff !important;
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  transition: background 0.15s !important;
}

.nav-cta:hover { background: #c94e1a !important; color: #fff !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #2c2c2c;
  transition: all 0.25s;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(1.1) saturate(1.15);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(232,107,58,0.1) 0%, rgba(0,0,0,0.35) 100%);
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 0 1.5rem;
  max-width: 700px;
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8), 0 1px 6px rgba(0,0,0,0.5);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin-bottom: 2rem;
  opacity: 0.92;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8), 0 1px 4px rgba(0,0,0,0.5);
}

/* ===== Über mich ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text p { margin-bottom: 1rem; font-size: 1.05rem; }

.about-quote {
  background: #fff8f0;
  border-left: 5px solid #e86b3a;
  border-radius: 0 12px 12px 0;
  padding: 2rem;
}

.about-quote blockquote {
  font-size: 1.15rem;
  font-style: italic;
  color: #444;
}

.about-quote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 700;
  color: #e86b3a;
}

/* ===== Angebote / Cards ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }

.card-icon { width: 48px; height: 48px; color: #e86b3a; margin-bottom: 0.75rem; display: block; }

.card h3 {
  font-size: 1.1rem;
  color: #c94e1a;
  margin-bottom: 0.5rem;
}

.card p { font-size: 0.95rem; color: #555; }

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

.section-cta p { margin-bottom: 1rem; font-size: 1.05rem; color: #555; }

/* ===== Galerie ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img { transform: scale(1.05); }

/* ===== Lightbox ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1rem; right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

/* ===== Testimonials ===== */
.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.testimonial {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}

.testimonial p {
  font-size: 1.2rem;
  font-style: italic;
  color: #333;
  margin-bottom: 1rem;
}

.testimonial cite {
  font-style: normal;
  font-weight: 700;
  color: #e86b3a;
}

/* ===== Kontakt ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label { font-weight: 700; font-size: 0.9rem; }

.form-group input,
.form-group select,
.form-group textarea {
  border: 2px solid #e0d8d0;
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  transition: border-color 0.15s;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e86b3a;
}

.form-group textarea { resize: vertical; }

.hidden { display: none; }

.contact-info h3 {
  font-family: 'Pacifico', cursive;
  font-size: 1.4rem;
  color: #c94e1a;
  margin-bottom: 1rem;
}

.contact-info p { margin-bottom: 1rem; font-size: 1rem; color: #444; }
.contact-info a { color: #e86b3a; font-weight: 700; }
.contact-info a:hover { text-decoration: underline; }

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  color: #e86b3a;
  transition: color 0.15s, transform 0.15s;
  display: flex;
}

.social-links a:hover { color: #c94e1a; transform: scale(1.15); }

/* ===== Footer ===== */
.site-footer {
  background: #2c2c2c;
  color: #ccc;
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.9rem;
}

.site-footer a { color: #f5a142; }
.site-footer a:hover { text-decoration: underline; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }

  .nav-menu.open { display: flex; }

  .nav-menu li { width: 100%; }

  .nav-menu a {
    display: block;
    padding: 0.75rem 2rem;
  }

  .nav-cta {
    margin: 0.5rem 2rem;
    text-align: center;
    border-radius: 50px;
  }

  .about-grid        { grid-template-columns: 1fr; }
  .testimonials      { grid-template-columns: 1fr; }
  .contact-grid      { grid-template-columns: 1fr; }
  .gallery-grid      { grid-template-columns: repeat(2, 1fr); }
}

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