/* L-GalaBau GmbH — Website styles */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600&display=swap');

:root {
  --dark: #2b3c2c;
  --mint: #eaf4e8;
  --white: #ffffff;
  --nav-text: #3b4d3c;
  --accent: #6d274f;
  --border: #d7e3d3;
  --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--white);
  line-height: 1.5;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  margin: 0;
  color: var(--dark);
}

h1 {
  font-size: 72px;
  line-height: 1.08;
}

h2 {
  font-size: 46px;
  line-height: 1.15;
}

h3 {
  font-size: 28px;
  line-height: 1.2;
}

p {
  margin: 0 0 16px;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid var(--dark);
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(43, 60, 44, 0.18);
}

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

.btn-outline {
  background: transparent;
  color: var(--dark);
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--mint);
  border-bottom: 1px solid var(--border);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}

.logo img {
  height: 60px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav ul {
  display: flex;
  gap: 32px;
}

.main-nav a {
  font-size: 16px;
  color: var(--nav-text);
}

.main-nav a.active {
  color: var(--accent);
}

.main-nav a:hover {
  color: var(--accent);
}

.header-cta .btn {
  padding: 13px 26px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--dark);
  margin: 6px 0;
}

/* ---------- Hero ---------- */

.hero {
  background: var(--mint);
  padding: 64px 0 48px;
}

.hero h1 {
  max-width: 780px;
}

.hero-sub {
  max-width: 640px;
  font-size: 18px;
  margin-top: 20px;
}

.hero-image img {
  width: 100%;
  height: 62vh;
  min-height: 320px;
  max-height: 640px;
  object-fit: cover;
}

.hero-cta {
  margin-top: 32px;
}

/* ---------- Stats bar ---------- */

.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.stats-bar .wrap {
  display: flex;
  justify-content: center;
  gap: 96px;
  padding: 56px 32px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 56px;
  line-height: 1;
  color: var(--accent);
}

.stat-label {
  margin-top: 10px;
  font-size: 15px;
  color: var(--nav-text);
}

/* ---------- Section basics ---------- */

section {
  padding: 96px 0;
}

.section-mint {
  background: var(--mint);
}

.section-white {
  background: var(--white);
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 14px;
}

/* ---------- Services list (home) ---------- */

.services-list-section h2 {
  margin-bottom: 40px;
}

.services-list li {
  border-top: 1px solid var(--border);
  padding: 26px 0;
}

.services-list li:last-child {
  border-bottom: 1px solid var(--border);
}

.services-list h3 {
  font-size: 30px;
}

.services-list-cta {
  margin-top: 40px;
}

/* ---------- Extraklasse / quote ---------- */

.quote-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.quote-block h2 {
  max-width: 480px;
}

.quote-block blockquote {
  margin: 0;
  font-size: 19px;
  line-height: 1.65;
}

.features-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.features-grid h3 {
  font-size: 24px;
}

.feature-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  color: var(--accent);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ---------- Testimonials ---------- */

.testimonial-section {
  position: relative;
}

.testimonial-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
}

.testimonial-card {
  position: relative;
  padding: 0 56px;
}

.testimonial-card.single {
  padding: 0;
}

.testimonial-card blockquote {
  font-size: 19px;
  line-height: 1.65;
  margin: 0 0 20px;
}

.testimonial-name {
  font-weight: bold;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--dark);
}

.testimonial-arrow.prev { left: 0; }
.testimonial-arrow.next { right: 0; }

.testimonial-arrow:hover {
  color: var(--accent);
}

.testimonial-card.single .testimonial-arrow {
  display: none;
}

.testimonial-dots {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.testimonial-card.single .testimonial-dots {
  display: none;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
}

.testimonial-dot.active {
  background: var(--accent);
}

/* ---------- Big photo ---------- */

.full-photo img {
  width: 100%;
  max-height: 640px;
  object-fit: cover;
}

/* ---------- Footer ---------- */

.site-footer {
  padding: 88px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 40px;
  padding-bottom: 64px;
}

.footer-map {
  width: 100%;
  height: 220px;
  border: none;
  border-radius: 4px;
  filter: grayscale(0.3) contrast(1.05);
}

.footer-top h2 {
  font-size: 48px;
  max-width: 480px;
}

.footer-contact p {
  margin: 0 0 6px;
  font-size: 16px;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

.footer-social img {
  width: 26px;
  height: 26px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a:hover {
  text-decoration: underline;
}

.footer-copy {
  font-size: 14px;
  opacity: 0.85;
}

/* ---------- Services page ---------- */

.page-banner {
  background: var(--mint);
  padding: 72px 0 48px;
}

.page-banner-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}

.page-banner-layout p {
  font-size: 17px;
}

.banner-image img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
}

.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  border-top: 1px solid var(--border);
}

.service-card:last-of-type {
  border-bottom: 1px solid var(--border);
}

.service-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card img:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(43, 60, 44, 0.2);
}

.service-card .price {
  color: #5b6b5c;
  margin-bottom: 18px;
}

.services-page section.service-cards-section {
  padding-top: 48px;
  padding-bottom: 48px;
}

/* ---------- Contact form ---------- */

.contact-section {
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}

.contact-intro h2 {
  margin-bottom: 20px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: #5b6b5c;
}

.contact-form input,
.contact-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 15px;
  background: var(--white);
  color: var(--dark);
}

.contact-form button {
  border: none;
  cursor: pointer;
}

.form-note {
  font-size: 13px;
  color: #5b6b5c;
  margin-top: 12px;
}

.form-status {
  grid-column: 1 / -1;
  font-size: 14px;
  padding: 12px 14px;
  border-radius: 4px;
  display: none;
}

.form-status.visible {
  display: block;
}

.form-status.success {
  background: #e4f3e6;
  color: #1f5e2a;
}

.form-status.error {
  background: #fbe6e6;
  color: #8a2323;
}

/* ---------- Über uns ---------- */

.about-hero {
  background: var(--mint);
  padding: 72px 0 56px;
}

.about-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.about-hero-layout p {
  font-size: 17px;
}

.team-section {
  text-align: center;
}

.team-section .section-heading {
  max-width: 560px;
  margin: 0 auto 48px;
}

.team-card {
  max-width: 420px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 48px 32px;
}

.team-card h3 {
  margin-bottom: 6px;
}

.team-card .role {
  color: #5b6b5c;
  margin-bottom: 18px;
}

.team-card hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

.gallery-section {
  text-align: center;
}

.gallery-section .section-heading {
  margin-bottom: 48px;
}

.gallery-grid {
  columns: 3 260px;
  column-gap: 20px;
  text-align: left;
}

.gallery-grid img {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 4px;
  break-inside: avoid;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-grid img:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(43, 60, 44, 0.2);
}

/* ---------- Sticky mobile action bar ---------- */

.mobile-action-bar {
  display: none;
}

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Legal pages ---------- */

.legal-page {
  padding: 72px 0 96px;
}

.legal-page h1 {
  font-size: 48px;
  margin-bottom: 32px;
}

.legal-page h3 {
  margin: 36px 0 12px;
  font-size: 22px;
}

.legal-page p {
  max-width: 780px;
  color: #33452f;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  h1 { font-size: 48px; }
  h2 { font-size: 34px; }

  .quote-block,
  .about-hero-layout,
  .page-banner-layout,
  .contact-layout,
  .footer-top {
    grid-template-columns: 1fr;
  }

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

  .testimonial-layout {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card img {
    height: 260px;
  }

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

  .gallery-grid {
    columns: 2 200px;
  }
}

@media (max-width: 700px) {
  .logo img {
    height: 46px;
  }

  body {
    padding-bottom: 64px;
  }

  .mobile-action-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--dark);
    box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
  }

  .mobile-action-bar a {
    flex: 1;
    text-align: center;
    padding: 16px 12px;
    color: var(--white);
    font-size: 15px;
    border-right: 1px solid rgba(255,255,255,0.15);
  }

  .mobile-action-bar a:last-child {
    border-right: none;
  }

  .stats-bar .wrap {
    gap: 48px;
    padding: 40px 32px;
    flex-wrap: wrap;
  }

  .stat-number {
    font-size: 42px;
  }

  .main-nav {
    position: fixed;
    inset: 74px 0 0 0;
    background: var(--mint);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 32px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    height: calc(100vh - 74px);
    overflow-y: auto;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .main-nav a {
    font-size: 20px;
  }

  .nav-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 40px 0 32px;
  }

  section {
    padding: 56px 0;
  }

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

  .footer-top h2 {
    font-size: 36px;
  }

  .gallery-grid {
    columns: 1 220px;
  }
}
