/* =========================
   ROOT
========================= */
:root {
  --bg: #FAF8F5;
  --text: #1E1E1E;
  --accent: #C46A4A;
  --accent-soft: #f3eee8;
  --line: #D6CFC7;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --h1-size: 42px;
  --h2-size: 22px;

  --letter-spacing-large: 8px;
  --letter-spacing-small: 2px;

  --space-xs:5px;
  --space-s:10px;
  --space-m:20px;
  --space-l:40px;
  --space-xl:60px;
  --space-xxl:80px;
}

/* =========================
   GLOBAL HEADINGS
========================= */

h1 {
  font-family: var(--font-heading);
  font-size: var(--h1-size);
  letter-spacing: var(--letter-spacing-large);
  text-transform: uppercase;
  color: var(--accent);
  margin-top: var(--space-s);
  margin-bottom: 0;
}

h2 {
  font-family: var(--font-heading);
  font-size: var(--h2-size);
  letter-spacing: var(--letter-spacing-small);
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: underline;
  margin-bottom: var(--space-m);
}





/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
}

/* LINKS */
a {
  text-decoration: none;
  color: inherit;
}

/* =========================
   HEADER
========================= */
.header {
  text-align: center;
  padding: var(--space-l) 20px;
  background: var(--accent-soft);
}
.header-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 180px;
  margin-bottom: 20px;
  display: block;
  margin: 0 auto var(--space-s);
}


/* NAV */
.nav ul {
  display: flex;
  justify-content: center;
  gap: var(--space-l);
  list-style: none;
  padding: var(--space-s) 0;
  margin:0;
}

.nav a {
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
  color: var(--text);
  padding-bottom: 5px;
  text-decoration: none;
}

.nav {
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
}


.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width:0;
  height:0.7px;
  background: transparent;
  transition: 0.3s;
}

.nav a:hover::after{
  width:100%;
  background: var(--accent);
}

/* =========================
   CONTAINER
========================= */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-m);
  position: relative;
}
/* =========================
   HERO
========================= */

.hero {
  margin: 20px auto 20px;
  max-width: 700px;
  text-align: center;
  position: relative;
  padding: 20px;
}

.hero.small {
  max-width: 800px;
  margin: var(--space-m) auto var(--space-xs);
  padding-top: 0;
}


.hero.small h1 {
  display: inline-block;
  position: relative;
  padding-bottom: var(--space-xs);
  letter-spacing: 10px;
  line-height: 1.3;
  opacity: 0.9;
}

.hero.small h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.75px;
  background: var(--accent);
}

.hero p {
  line-height: 1.8;
  color: #555;
  max-width: 520px;
  margin:0 auto;
  margin-bottom: var(--space-l);
  letter-spacing: 1px;
}


/* BUTTONS */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  padding: 14px 32px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  transition: 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.btn.primary {
  background: transparent;
  color: var(--accent);
}

.btn.primary:hover {
  background: var(--accent);
  color: white;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn.secondary:hover {
  background: var(--accent);
  color: white;
}



/* =========================
   PROJECTS
========================= */

.section{
  margin-top: 100px;
}

.projects {
  max-width: 1000px;
  margin: 0 auto;
}

.project {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-l);
  background: #f8f6f4;
  padding:var(--space-l);
  border-radius: 12px;
  margin-bottom: var(--space-l);
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.project.reverse {
  flex-direction: row-reverse;
}

.image {
  display: flex;
  justify-content: center;
}

.image img {
  width: 100%;
  max-width: 350px;
  border-radius: 6px;
  transition: 0.3s;
}

.project:hover img {
  transform: scale(1.03);
}

.project > .image {
  flex:1;
}
.project > .text {
  flex:0 1 400px;
}

.project h2{
  font-size: 26px;
  margin-bottom: var(--space-m);
  color: var(--text);
}

.text {
  max-width: 320px;
  text-align: center;
  line-height: 1.8;
  padding: var(--space-m);
}

.project:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}



/* =========================
   FOOTER
========================= */
footer {
  text-align: center;
  font-size: 12px;
margin-top: var(--space-l);  
margin-bottom: var(--space-s);
}

/* =========================
   ABOUT PAGE
========================= */

.about {
  padding: var(--space-l) 20px;
}

/* Intro Layout */
.about-intro {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  justify-content: center;
  margin-bottom: var(--space-l);
}

.about-image img {
  width: 100%;
  max-width: 320px;
  border-radius: 10px;
}

.about-text {
  max-width: 350px;
}

.about-text p {
  margin-bottom: var(--space-s);
  line-height: 1.6;
}

/* Haltung */
.about-values {
  max-width: 750px;
  margin:  auto;
  padding:50px 40px;

  text-align: center;
  
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  background: rgba(255,255,255,0.6);
}


/* kleine Label-Zeile */
.values-intro {
  font-size: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #bbb;
  margin-bottom: var(--space-m);
}

/* DAS ist jetzt dein Fokus */
.values-statement {
  font-size: 28px;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: var(--space-m);
  text-decoration: none;
}

/* erklärender Text */
.values-text {
  max-width: 520px;
  margin: 0 auto var(--space-m);
  color: #666;
  line-height: 1.7;
}

/* untere Begriffe */
.values-list {
  display: flex;
  justify-content: center;
  gap: var(--space-l);
  flex-wrap: wrap;
  margin-top: var(--space-l);
}

.values-list span {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.8;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--accent-soft);
}

/* =========================
   SERVICE PAGE
========================= */

.services-intro {
  max-width: 600px;
  margin: 0 auto var(--space-l);
  text-align: center;
  color: #555;
  line-height: 1.7;
}

.services {
  max-width: 600px;
  margin: 0 auto;
}

.service {
  padding: var(--space-m) 0;
  border-bottom: 1px solid var(--line);
  transition: 0.3s ease;
}

.service:hover{
  transform: translateX(5px);
}

.service:not(:last-child){
  margin-bottom: var(--space-m);
}
.service:last-child {
  border-bottom: none;
}

.service h2 {
  margin-bottom: 8px;
  text-decoration: none;
  letter-spacing: 2px;
}

.service p {
  color: #666;
  line-height: 1.6;
}

.services-note {
  text-align: center;
  margin-top: var(--space-l);
  margin-bottom: var(--space-xl);
  color: #888;
  font-size: 15px;
  line-height: 1.5;
}

.services-cta {
  text-align: center;
    margin: var(--space-xl) auto var(--space-xl);
}

.services-cta .btn{
  padding: 16px 40px;
  letter-spacing: 2px;

}


/* =========================
   BRAND GRID
========================= */

.brand-intro{
  text-align: center;
  max-width:600px;
  margin:var(--space-m) auto var(--space-l);
  line-height: 1.8;
  color:#555;
}

.brand-grid .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* einzelnes Projekt */
.brand-item {
  margin-bottom: var(--space-xxl);
  padding: 40px 20px;

  max-width: 900px;

  background: #f8f6f4; /* ganz leicht */
  border-radius: 12px;

  border: 1px solid rgba(0,0,0,0.03); /* super subtil */
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);

  transition: 0.3s;
}

.brand-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

/* Überschrift */
.brand-title {
  margin: var(--space-m) auto;
  color: var(--text);
}

/* Logos */
.brand-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-m);
}

/* HIER wird’s wichtig */
.brand-logos img {
  max-height: 200px; 
  width: auto;
}

/* Text */
.brand-desc {
  font-size: 14px;
  color: #666;
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.6;
  letter-spacing: 1.5px;
}


/* =========================
   CONTACT PAGE
========================= */

.contact-page {
  text-align: center;
}

/* Intro */
.contact-intro {
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  line-height: 1.8;
  color: #555;
  letter-spacing: 0.5px;
}

/* Box */
.contact-box {
  margin: 30px auto;
}

.contact-label {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 10px;
}

/* Mail */
.contact-box a {
  display: inline-block;
  font-size: 20px;
  font-family: var(--font-heading);
  letter-spacing: 1px;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 5px;
  transition: 0.3s;
}

.contact-box a:hover {
  opacity: 0.7;
}

/* Antwortzeit */
.contact-response {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: #999;
}

/* Zusatztext */
.contact-note {
  max-width: 550px;
  margin: var(--space-l) auto var(--space-l);
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

/* Button spacing */
.contact-btn {
  margin-top: 10px;
}

/* Kontakt E-Mail Rahmen (minimal) */
.contact-box {
  border: 1px solid var(--accent);
  padding: 30px;
  max-width: 300px;
  margin: var(--space-xl) auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* =========================
   DIVIDER
========================= */
.divider {
  width: 120px;
  height: 0.8px;
  background:var(--line);
  margin: var(--space-xxl) auto;
  opacity: 0.6;
}

/* =========================
   BRAND PAGE FIX
========================= */

.brand-grid {
  margin-top: var(--space-xl);
}

.brand-item {
  margin-bottom: var(--space-xl);
  padding: 40px 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.brand-title {
  text-align: center;
  margin-bottom: var(--space-m);
}

.brand-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: var(--space-m);
}

.brand-logos img {
  max-height: 140px; /* vorher zu groß */
  width: auto;
}

.brand-desc {
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}
/* =========================
   GLOBAL TEXT WIDTH FIX
========================= */

.services,
.services-intro,
.services-note,
.brand-intro {
  max-width: 650px;
  margin: 0 auto;
}

.brand-desc {
  max-width: 420px;
  margin: 0 auto;
}




/* verhindert Rand-Überlauf */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
/* =========================
   REAL TEXT WIDTH FIX
========================= */

/* Hauptcontainer begrenzen */
.page,
.services,
.brand-grid,
.services-intro,
.services-note {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 12px;
}

/* einzelne Texte zusätzlich sichern */
.brand-desc,
.services-intro p,
.services-note p {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* =========================
   MOBILE VERSION
========================= */

@media (max-width: 768px) {

  /* ======================
     GLOBAL
  ====================== */
  body {
    font-size: 16px;
  }

  .container {
    padding: 15px;
  }

  h1 {
    font-size: 28px;
    letter-spacing: 4px;
  }

  h2 {
    font-size: 18px;
  }

  /* ======================
     HEADER + NAV
  ====================== */
  .header {
    padding: 20px 15px;
  }

  .nav {
    border: none;
    margin: 10px 0 30px;
  }

  .nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .nav a {
    font-size: 12px;
    letter-spacing: 2px;
    opacity: 0.6;
  }



  /* ======================
     HERO
  ====================== */
  .hero {
    padding: 10px;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  /* ======================
     PROJECTS (STARTSEITE)
  ====================== */
  .project {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .project.reverse {
    flex-direction: column;
  }

  .image img {
    max-width: 100%;
  }

  .text {
    max-width: 100%;
    padding: 10px;
  }

  .project h2 {
    font-size: 20px;
  }

  /* ======================
     ABOUT PAGE
  ====================== */
  .about-intro {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .about-text {
    max-width: 100%;
  }

  .about-image img {
    max-width: 260px;
  }

  .values-list {
    gap: 15px;
  }

  /* ======================
     SERVICES
  ====================== */
  .services {
    padding: 0 10px;
  }

  .service h2 {
    font-size: 22px;
    text-decoration: underline;
  }

  /* ======================
     BRAND PAGE
  ====================== */
  .brand-logos {
    flex-direction: column;
    gap: 20px;
  }

  .brand-logos img {
    max-height: 120px;
  }

  .brand-item {
    padding: 25px 15px;
  }

  /* ======================
     CONTACT PAGE
  ====================== */
  .contact-intro {
    font-size: 15px;
  }

  .contact-box {
    padding: 20px;
    max-width: 70%;
  }

  .contact-box a {
    font-size: 16px;
  }

  .contact-note {
    font-size: 14px;
  }

  /* ======================
     SPACING FIX
  ====================== */
  .section {
    margin-top: 60px;
  }

  footer {
    margin-top: 40px;
  }


   .brand-item {
    padding: 25px 15px;
  }

  .brand-logos {
    flex-direction: column;
    gap: 20px;
  }

  .brand-logos img {
    max-height: 90px;
  }

  .brand-title {
    font-size: 18px;
  }

  .brand-desc {
    font-size: 14px;
  }
/* ======================
     NAV (clean + minimal)
  ====================== */
  /* HEADER kompakt */
  .header {
    padding: 15px 10px 5px;
    text-align: center;
  }

  .logo img {
    width: 100px;
    margin: 0 auto 8px;
  }

  /* NAV minimal */
  .nav {
    margin: 5px 0 15px;
    padding: 8px 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 14px;
    padding: 0;
    margin: 0;
  }

  .nav li {
    line-height: 1;
  }

  .nav a {
    font-size: 10px;
    letter-spacing: 1.5px;
    opacity: 0.8;
  }


  /* ======================
     HERO SPACING
  ====================== */
  .hero {
    padding: 0 15px;
    text-align: center;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.6;
  }

  /* ======================
     BUTTON SPACING
  ====================== */
  .hero-buttons {
    margin-top: 25px;
    margin-bottom: 35px;
    flex-direction: column;
    gap: 12px;
  }

  /* ======================
     PROJECTS → TEXT FIRST
  ====================== */
  .project {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 25px 15px;
  }

  /* WICHTIG: Reihenfolge drehen */
  .project .text {
    order: 1;
  }

  .project .image {
    order: 2;
  }

  .project.reverse {
    flex-direction: column;
  }

  /* Bilder etwas kleiner & cleaner */
  .image img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: block;
  }

  /* ======================
     TEXT WIDTH (Mobile)
  ====================== */
  .text,
  .hero p,
  .brand-desc {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  /* ======================
     BRAND PAGE FIX
  ====================== */
  .brand-logos {
    flex-direction: column;
    gap: 20px;
  }

  .brand-logos img {
    max-height: 90px;
  }
/* HEADER kompakter */
  .header {
    padding: 20px 15px 10px;
    text-align: center;
  }

  /* LOGO kleiner */
  .logo img {
    width: 90px;
    height: auto;
    margin: 0 auto 10px;
    display: block;
  }

  /* NAV WRAPPER */
  .nav {
    margin: 10px auto 25px;
    border-top: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 12px 0;
  }

  /* NAV LIST */
  .nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  /* NAV LINKS */
  .nav a {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--warm-grey);
    opacity: 0.6;
    text-decoration: none;
    transition: 0.3s;
  }

  .nav a:hover {
    opacity: 1;
  }


.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: 0.3s;
}

.nav a:hover::after {
  width: 100%;
}


}