/* SCHRIFTEN */
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/PlayfairDisplay-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/PlayfairDisplay-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('fonts/Lato-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('fonts/Lato-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* VARIABLEN */
:root {
  --gold: #C9A844;
  --gold-dark: #A8882E;
  --cream: #F5F0E8;
  --white: #FFFFFF;
  --anthracite: #2C2C2C;
  --dark: #1A1A1A;
  --grey: #6B6B6B;
  --light-grey: #E8E4DC;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', Arial, sans-serif;
  --shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--anthracite);
  background-color: var(--white);
  line-height: 1.7;
}

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

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

ul {
  list-style: none;
}

/* WIEDERVERWENDBARE ELEMENTE */
.btn-gold {
  display: inline-block;
  background: linear-gradient(to right, var(--gold-dark) 50%, var(--gold) 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  color: var(--white);
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background-position 0.4s ease;
}

.btn-gold:hover {
  background-position: left bottom;
}

.section-padding {
  padding: 6rem 1.5rem;
}

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

.section-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title-left {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--anthracite);
  line-height: 1.15;
}

/* SCROLL-ANIMATIONEN */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* NAVIGATION */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(245, 240, 232, 0.95);
  transition: background-color var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background-color: var(--white);
  box-shadow: var(--shadow);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
}

.nav-logo-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--anthracite);
}

.nav-logo-sub {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--anthracite);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--anthracite);
  transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    box-shadow: var(--shadow);
  }

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

  .nav-link {
    font-size: 1rem;
  }
}

/* HERO – Split Layout */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
  background-color: var(--cream);
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 6%;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 5.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--anthracite);
  margin-bottom: 1.5rem;
}

.hero-gold-line {
  width: 50px;
  height: 2px;
  background-color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--grey);
  margin-bottom: 2.5rem;
}

.hero-image {
  overflow: hidden;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

/* HERO – Entrance Animations */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes goldLineGrow {
  from { width: 0; }
  to   { width: 50px; }
}

@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-eyebrow {
  animation: heroFadeUp 0.7s ease 0.15s both;
}

.hero-title {
  animation: heroFadeUp 0.8s ease 0.35s both;
}

.hero-gold-line {
  animation: goldLineGrow 0.6s ease 0.6s both;
}

.hero-sub {
  animation: heroFadeUp 0.7s ease 0.75s both;
}

.hero-text .btn-gold {
  animation: heroFadeUp 0.7s ease 0.9s both;
}

.hero-image {
  animation: heroFadeIn 1.2s ease 0s both;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-text {
    padding: 5rem 2rem 3rem;
  }

  .hero-image {
    height: 60vw;
    min-height: 300px;
  }
}

/* ÜBER UNS – Dark Editorial */
.ueber-uns {
  background-color: var(--dark);
  color: var(--white);
  padding: 7rem 2rem;
}

.ueber-uns-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.ueber-uns-bild {
  overflow: hidden;
}

.ueber-uns-bild img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.ueber-uns-bild:hover img {
  transform: scale(1.04);
}

.ueber-uns-content .section-eyebrow {
  color: var(--gold);
}

.ueber-uns-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  line-height: 1.45;
  margin-bottom: 1.8rem;
}

.ueber-uns-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: #BBBBBB;
  margin-bottom: 1rem;
}

.ueber-uns-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .ueber-uns-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .ueber-uns-bild img {
    height: 350px;
  }
}

/* LEISTUNGEN – Nummerierte Editorial-Liste */
.leistungen {
  background-color: var(--cream);
}

.leistungen-header {
  margin-bottom: 3rem;
}

.leistungen-list {
  border-top: 1px solid rgba(44, 44, 44, 0.15);
}

.leistung-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(44, 44, 44, 0.12);
  align-items: start;
  position: relative;
  transition: background-color var(--transition);
}

.leistung-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
}

.leistung-item:hover::before {
  transform: scaleY(1);
}

.leistung-item:hover {
  background-color: rgba(201, 168, 68, 0.04);
}

.leistung-num {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  padding-top: 0.15rem;
  transition: transform var(--transition);
}

.leistung-item:hover .leistung-num {
  transform: translateX(4px);
}

.leistung-body h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--anthracite);
  margin-bottom: 0.4rem;
  transition: color var(--transition);
}

.leistung-item:hover .leistung-body h3 {
  color: var(--gold);
}

.leistung-body p {
  color: var(--grey);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 550px;
}

@media (max-width: 480px) {
  .leistung-item {
    grid-template-columns: 50px 1fr;
    gap: 1rem;
  }

  .leistung-num {
    font-size: 1.1rem;
  }
}

/* IMPRESSIONEN – Masonry-Grid */
.impressionen {
  background-color: var(--white);
}

.impressionen-header {
  margin-bottom: 2.5rem;
}

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 0.6rem;
}

.galerie-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.galerie-item.galerie-tall {
  grid-row: span 2;
}

.galerie-bild {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.galerie-item::after {
  content: '+';
  position: absolute;
  inset: 0;
  background-color: rgba(26, 26, 26, 0.4);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.galerie-item:hover .galerie-bild {
  transform: scale(1.07);
}

.galerie-item:hover::after {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2.5rem;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity var(--transition);
}

.lightbox-close:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .galerie-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
}

@media (max-width: 480px) {
  .galerie-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .galerie-item.galerie-tall {
    grid-row: span 1;
  }
}

/* KONTAKT – Split Dark/Hell */
.kontakt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 650px;
}

.kontakt-dark {
  background-color: var(--dark);
  color: var(--white);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kontakt-dark .section-eyebrow {
  color: var(--gold);
}

.kontakt-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 2.5rem;
  margin-top: 0.5rem;
}

.kontakt-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.kontakt-item .kontakt-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.kontakt-item p {
  font-size: 0.95rem;
  color: #CCCCCC;
  line-height: 1.6;
}

.kontakt-item a {
  color: var(--white);
  transition: color var(--transition);
}

.kontakt-item a:hover {
  color: var(--gold);
}

.kontakt-light {
  background-color: var(--cream);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kontakt-light h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--anthracite);
  margin-bottom: 2rem;
}

.form-gruppe {
  margin-bottom: 1.1rem;
}

.form-gruppe label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: var(--anthracite);
}

.form-gruppe input,
.form-gruppe textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #D8D2C8;
  background-color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--anthracite);
  transition: border-color var(--transition);
}

.form-gruppe input:focus,
.form-gruppe textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-gruppe textarea {
  resize: vertical;
}

.form-dsgvo label {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-weight: 400;
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
  color: var(--grey);
}

.form-dsgvo input[type="checkbox"] {
  width: auto;
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--gold);
}

.form-dsgvo a {
  color: var(--gold);
  text-decoration: underline;
}

@media (max-width: 900px) {
  .kontakt {
    grid-template-columns: 1fr;
  }

  .kontakt-dark,
  .kontakt-light {
    padding: 4rem 2rem;
  }
}

/* FOOTER */
.footer {
  background-color: var(--dark);
  color: #AAAAAA;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}

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

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.footer-brand-sub {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}

.footer-spalte p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 0.4rem;
}

.footer-spalte a,
.footer-spalte ul li a {
  color: #AAAAAA;
  transition: color var(--transition);
}

.footer-spalte a:hover,
.footer-spalte ul li a:hover {
  color: var(--gold);
}

.footer-spalte h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.footer-spalte ul li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-unten {
  border-top: 1px solid #2E2E2E;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 1rem;
  color: #666666;
}

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

.footer-links a {
  color: #666666;
  transition: color var(--transition);
}

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

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-unten {
    flex-direction: column;
    text-align: center;
  }
}

/* RECHTSSEITEN (Impressum, Datenschutz) */
.rechtsseite {
  padding-top: 80px;
  background-color: var(--cream);
  min-height: 100vh;
}

.rechtstext h2 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin: 2rem 0 0.6rem;
}

.rechtstext h2:first-child {
  margin-top: 0;
}

.rechtstext p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.rechtstext a {
  color: var(--gold);
}

.rechtstext a:hover {
  text-decoration: underline;
}

/* Rechtsseiten section-title Klasse (für h1) */
.rechtsseite .section-title-left {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.rechtsseite .hero-gold-line {
  margin-bottom: 2.5rem;
}
