:root {
  --fox-orange: #D9601A;
  --fox-dark: #3B2620;
  --fox-cream: #F5E9D3;
  --fox-gray: #8A8A8A;
  --fox-light: #FAF6EF;
}

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

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--fox-dark);
  background: var(--fox-light);
  line-height: 1.6;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

a { text-decoration: none; }
img { max-width: 100%; display: block; }

/* HEADER */
.site-header {
  background: white;
  border-bottom: 3px solid var(--fox-orange);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
}
.logo img { height: 60px; }

.main-nav {
  display: flex;
  gap: 25px;
}
.main-nav a {
  color: var(--fox-dark);
  font-weight: 600;
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--fox-orange);
  border-color: var(--fox-orange);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 3px;
  background: var(--fox-dark);
  border-radius: 2px;
}

/* HERO */
.hero {
  background: 
    linear-gradient(135deg, rgba(245, 233, 211, 0.85), rgba(250, 246, 239, 0.85)),
    url('../img/hero.png');
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  text-align: center;
}
.hero h1 {
  font-size: 2.4rem;
  color: var(--fox-dark);
  margin-bottom: 15px;
}
.hero h1 span { color: var(--fox-orange); }
.hero p {
  font-size: 1.2rem;
  color: var(--fox-gray);
  max-width: 650px;
  margin: 0 auto 25px auto;
}

/* BUTTONS */
.btn {
  display: inline-block;
  background: var(--fox-orange);
  color: white;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.btn:hover { background: #b34e14; }
.btn-outline {
  background: transparent;
  border: 2px solid var(--fox-orange);
  color: var(--fox-orange);
}
.btn-outline:hover { background: var(--fox-orange); color: white; }

/* SECTIONS */
section { padding: 60px 0; }
section h2 {
  font-size: 1.9rem;
  color: var(--fox-dark);
  margin-bottom: 15px;
  text-align: center;
}
section > .container > p.section-intro {
  text-align: center;
  color: var(--fox-gray);
  max-width: 650px;
  margin: 0 auto 35px auto;
}

.alt-bg { background: white; }

/* GRID / CARDS */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 30px;
}
.card {
  background: white;
  border: 1px solid #eee;
  border-top: 4px solid var(--fox-orange);
  padding: 25px;
  border-radius: 8px;
}
.card h3 { color: var(--fox-dark); margin-bottom: 10px; }
.card ul { margin-left: 18px; color: var(--fox-gray); }
.card ul li { margin-bottom: 6px; }

/* ÜBER MICH */
.about-flex {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
.about-flex img {
  border-radius: 8px;
  flex: 1 1 300px;
  max-width: 350px;
}
.about-flex .text { flex: 2 1 400px; }
.about-flex .text p { margin-bottom: 15px; color: var(--fox-dark); }

/* REFERENZEN GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 30px;
}
.gallery img {
  border-radius: 8px;
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

/* INSTAGRAM SECTION */
.instagram-section {
  text-align: center;
}
#instagram-feed {
  margin-top: 25px;
}

/* KONTAKT */
.contact-flex {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.contact-flex .info { flex: 1 1 300px; }
.contact-flex .form-wrap { flex: 1 1 400px; }

.info h3 { margin-bottom: 10px; color: var(--fox-dark); }
.info p { margin-bottom: 20px; color: var(--fox-gray); }
.info a { color: var(--fox-orange); font-weight: 600; }

form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  margin-top: 15px;
  color: var(--fox-dark);
}
form input,
form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
}
form textarea { resize: vertical; min-height: 120px; }
form button { margin-top: 20px; }

/* IMPRESSUM / DATENSCHUTZ */
.legal-content h2 { text-align: left; margin-top: 25px; }
.legal-content p, .legal-content li { color: var(--fox-dark); margin-bottom: 10px; }
.legal-content { max-width: 800px; margin: 0 auto; }

/* FOOTER */
.site-footer {
  background: var(--fox-dark);
  color: var(--fox-cream);
  text-align: center;
  padding: 25px 0;
}
.site-footer a { color: var(--fox-orange); }
.footer-links {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 0.9rem;
}
.footer-links a { color: var(--fox-cream); }
.footer-links a:hover { color: var(--fox-orange); }

/* MOBILE */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0; right: 0;
    background: white;
    padding: 20px;
    border-bottom: 3px solid var(--fox-orange);
  }
  .main-nav.open { display: flex; }
  .grid-3, .grid-2, .gallery { grid-template-columns: 1fr; }
  .about-flex, .contact-flex { flex-direction: column; }
  .hero h1 { font-size: 1.8rem; }
}