/* ========================================
   WANDELBAR — Stylesheet
   ======================================== */

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

:root {
  --black: #0a0a0a;
  --black-light: #1a1a1a;
  --white: #ffffff;
  --white-off: #f5f5f3;
  --orange: #e07020;
  --orange-light: #f08838;
  --orange-dark: #c45e18;
  --gray: #888888;
  --gray-light: #cccccc;
  --gray-dark: #333333;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, sans-serif;
  --transition: 0.3s ease;
  --max-width: 1200px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  padding: 0.75rem 0;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
}


.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 120px;
  width: auto;
}

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

.nav-cta-desktop {
  justify-self: end;
}

.nav-cta-mobile {
  display: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
}

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

.nav-cta {
  padding: 0.5rem 1.25rem !important;
  border: 1px solid var(--orange) !important;
  color: var(--orange) !important;
  border-radius: 2px;
}

.nav-cta:hover {
  background: var(--orange) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  position: absolute;
  left: 0;
  transition: var(--transition);
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { top: 18px; }

.nav-toggle.active span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--black);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(212, 118, 44, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at top right, rgba(212, 118, 44, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.hero-logo {
  margin-bottom: 2.5rem;
}

.hero-logo img {
  max-width: 500px;
  width: 90%;
  margin: 0 auto;
  will-change: transform;
  transition: transform 0.05s linear;
}

.hero-claim {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--orange);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.hero-subclaim {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto 3rem;
  letter-spacing: 0.03em;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.875rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 2px;
}

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

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* --- Sections --- */
.section {
  padding: 7rem 0;
}

.section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
}

.section-intro {
  font-size: 1rem;
  color: var(--gray);
  max-width: 600px;
  margin-bottom: 3.5rem;
  line-height: 1.8;
}

.leistungen {
  text-align: center;
  background: var(--white-off);
}

.leistungen .section-intro {
  margin-left: auto;
  margin-right: auto;
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  border-bottom: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border-bottom-color: var(--orange);
}

.service-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 1.5rem;
  color: var(--orange);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* --- Über uns --- */
.ueber {
  background: var(--white);
}

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

.ueber-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--black-light);
  position: relative;
  overflow: hidden;
}

.ueber-image-placeholder::after {
  content: 'Bild einfügen';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ueber-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ueber-text .section-title {
  color: var(--black);
}

.ueber-text p {
  font-size: 0.95rem;
  color: var(--gray-dark);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.ueber-features {
  list-style: none;
  margin: 2rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ueber-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--gray-dark);
}

.feature-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- Preise --- */
.preise {
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.preise .section-intro {
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.5);
}

.preise-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 500px;
  margin: 0 auto 3rem;
}

.preis-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--orange);
}

.preis-card:hover {
  border-color: var(--orange);
  transition: border-color var(--transition);
}

.preis-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--white);
}

.preis-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}


.preise-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Impressionen / Galerie --- */
.impressionen {
  background: var(--white-off);
  text-align: center;
}

.impressionen .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  overflow: hidden;
}

.gallery-item-large {
  grid-column: span 2;
}

.gallery-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--black-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition);
}

.gallery-item:hover .gallery-placeholder {
  transform: scale(1.02);
}

.gallery-placeholder span {
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

/* --- Kontakt --- */
.kontakt {
  background: var(--white);
}

.kontakt .section-label,
.kontakt .section-title,
.kontakt .section-intro {
  text-align: center;
}

.kontakt .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group-full {
  text-align: left;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.875rem 1rem;
  border: 1px solid #e0e0e0;
  background: var(--white-off);
  color: var(--black);
  transition: border-color var(--transition);
  border-radius: 2px;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-light);
}

.form-group textarea {
  resize: vertical;
}

.btn-submit {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 0.5rem;
}

.kontakt-info-block h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.kontakt-info-block p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

.kontakt-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  display: block;
  margin-bottom: 0.25rem;
}

.kontakt-info-block a {
  font-size: 0.95rem;
  color: var(--black);
  transition: color var(--transition);
}

.kontakt-info-block a:hover {
  color: var(--orange);
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  font-size: 0.85rem;
  color: var(--gray-dark);
}

.social-links a:hover {
  color: var(--orange);
}

/* --- Footer --- */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.4);
  padding: 4rem 0 2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.8rem;
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--orange);
}

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
  font-size: 0.75rem;
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem 2rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-content p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.cookie-content p a {
  color: var(--orange);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-buttons .btn {
  padding: 0.625rem 1.5rem;
  font-size: 0.75rem;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .preise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ueber-grid {
    gap: 3rem;
  }

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

  .gallery-item-large {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 5rem 0;
  }

  .nav-inner {
    display: flex;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .nav-cta-desktop {
    display: none;
  }

  .nav-cta-mobile {
    display: list-item;
    margin-top: 1rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: right var(--transition);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
  }

  .nav-logo img {
    height: 80px;
  }

  .hero-logo-text {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .hero-logo img {
    max-width: 280px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .ueber-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .ueber-image {
    order: -1;
  }

  .ueber-image-placeholder {
    aspect-ratio: 16/10;
  }

  .preise-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .btn-submit {
    width: 100%;
    text-align: center;
  }

  .footer-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}
