/* Roboto Mono */


@font-face {
    font-family: "Roboto Mono";
    src: url("fonts/Roboto_Mono/static/RobotoMono-Regular.ttf") format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: "Roboto Mono";
    src: url("fonts/Roboto_Mono/static/RobotoMono-Medium.ttf") format("truetype");
    font-weight: 500;
}

@font-face {
    font-family: "Roboto Mono";
    src: url("fonts/Roboto_Mono/static/RobotoMono-Bold.ttf") format("truetype");
    font-weight: 700;
}

/* Cormorant Garamond */

@font-face {
    font-family: "Cormorant Garamond";
    src: url("fonts/Cormorant_Garamond/static/CormorantGaramond-Regular.ttf") format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: "Cormorant Garamond";
    src: url("fonts/Cormorant_Garamond/static/CormorantGaramond-SemiBold.ttf") format("truetype");
    font-weight: 600;
}



/* =========================================================
   VANTA — Farbsystem
========================================================= */
:root{
  --rich-black:#0B0B0C;
  --charcoal:#17181A;
  --graphite:#232427;
  --slate-gray:#4B4D52;
  --cool-gray:#A8ADB4;
  --white:#FFFFFF;
  --soft-white:#F5F5F3;
  --silver:#C9CCD1;
  --metallic-gray:#8E949C;
  --gold:#C8A86B;

  --ease:cubic-bezier(.16,.84,.44,1);
  --radius-card:26px;
}



#Bewertungen {
    width: 100%;
    top: 0;
    margin-top: 300px;
    left: 0;
    justify-content: center;
    align-items: center;
    text-align: center;
}
/* =========================================================
   Reset & Basis
========================================================= */
*{ margin:0; padding:0; box-sizing:border-box; }

html{
  scroll-behavior:smooth;
  -webkit-text-size-adjust:100%;
  text-size-adjust:100%;
}

body{
  margin:0;
  background:var(--rich-black);
  color:var(--soft-white);
  line-height:1.65;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  position:relative;
}

h1, h2{
  letter-spacing:-0.02em;
  color:var(--white);
  cursor: pointer;
}

h1,h2 {
    font-family:"Roboto Mono",serif;
    font-weight: 600;
    cursor: pointer;
}

#websitesUndDesign {
    font-size: 25px;
    font-weight: normal;
    font-family:"Cormorant Garamond",serif;
    color:var(--white);
    z-index: 100;
}

#H1Kontakt, #H1Kontakt2 {
    font-size: 25px;
    font-weight: lighter;
    font-family:"Roboto Mono",serif;
}

p{ color:var(--cool-gray); font-weight:300; cursor: pointer; font-family:"Cormorant Garamond",serif; }

a{ color:inherit; text-decoration:none; cursor: pointer; font-family:"Cormorant Garamond",serif; display: block; pointer-events: all;}

.b { opacity: 0; text-decoration:none; color:inherit; cursor: pointer;  font-family:"Cormorant Garamond",serif; pointer-events: none; display: none;}

#panelBtn { opacity: 0; width: 20px; text-decoration:none; color:inherit; cursor: pointer; position: absolute; z-index: 1001; display: none; pointer-events: none; }

#panelDiv { opacity: 0; right: -50%; width: 50%; cursor: pointer; }

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

#modelsDiv {
  font-family:"Cormorant Garamond",serif;
  height: 35px;
  font-weight:600;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  z-index: 20;
  align-items: center;
  text-align: center;
  justify-content: center;
  overflow-y: auto;

  /* Firefox */
    scrollbar-width: none;

    /* Internet Explorer */
    -ms-overflow-style: none;
}

#modelsDiv::-webkit-scrollbar {
    display: none;
}

#pModels {
  z-index: 30;
  position: relative;
  width: 100%;
  text-align: center;
  cursor: pointer;
}

#pModels::after{
  font-family:"Cormorant Garamond",serif;
  content:'';
  position:absolute;
  left: 47.5%;
  bottom:0;
  width:0;
  height:1px;
  background:var(--gold);
  transition: width 0.35s var(--ease);
}

#pModels:hover{ color:var(--white); }
#pModels:hover::after{ width: 5%; }

::selection{ background:var(--gold); color:var(--rich-black); }


input, button, textarea, select {
  font-family:"Cormorant Garamond",serif;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  font-family: inherit;
}

h2#betrachteJetzt {
  color: var(--gold);
  font-size: 18px;
  font-weight: normal;
}

/* =========================================================
  alle Animations
========================================================= */

#buildDreamsIntoFuture {
  animation: fadeUp1 2s ease;
}

#websitesUndDesign {
  animation: fadeUp1 3s ease;
}

#header {
  animation: fadeDown1 2s ease;
}

.a {
  animation: fadeDown1 3.5s ease;
}

#pTextUberVanta {
  animation: fadeDown1 2s ease;
  animation-timeline: view();
}

#panelBtn {
  animation: fadeSide1 2.5s ease;
}

@keyframes fadeUp1 {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeDown1 {
  from {
    transform: translateY(-40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeSide1 {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}


@keyframes fadeSide2 {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* =========================================================
   Pro und Base Model DIVs
========================================================= */

#BaseDiv.unactive {
  opacity: 0;
  height: 0px;
  display: none;
  pointer-events: none;
  transition: all 0.5s ease;
}

#ProDiv.unactive {
  opacity: 0;
  height: 0px;
  display: none;
  pointer-events: none;
  transition: all 0.5s ease;
}

#BaseDiv {
  font-family:"Cormorant Garamond",serif;
  opacity: 1;
  background-color: var(--graphite);
  border-radius: 20px;
  width: 200px;
  height: 300px;
  box-shadow: 0 0 5px var(--rich-black);
  align-items: center;
  text-align: center;
  justify-content: center;
  display: block;
  pointer-events: all;
  transition: all 0.5s ease;
}

#BaseDiv:hover {
  box-shadow: 0 0 20px var(--silver);
  transition: all 0.25s ease;
}

#ProDiv:hover {
  box-shadow: 0 0 25px var(--gold);
  transition: all 0.5s ease;
}

#pModelName {
  font-family:"Roboto Mono",serif;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.5s ease;
}

#MiniDiv {
  font-family:"Cormorant Garamond",serif;
  background-color: var(--charcoal);
  width: 200px;
  height: 100px;
  border-radius: 25px;
  transition: all 0.5s ease;
}

li {
  font-family:"Cormorant Garamond",serif;
  font-size: 10px;
  font-weight: normal;
  transition: all 0.5s ease;
}

#ProDiv {
  font-family:"Cormorant Garamond",serif;
  opacity: 1;
  background-color: var(--graphite);
  border-radius: 20px;
  width: 200px;
  height: 300px;
  box-shadow: 0 0 5px var(--rich-black);
  align-items: center;
  text-align: center;
  justify-content: center;
  display: block;
  pointer-events: all;
  transition: all 0.5s ease;
}


/* =========================================================
   Hintergrund-Logo (schwaches Wasserzeichen hinter allen Sections)
========================================================= */
img#imgBG{
  position:fixed;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:900px;
  max-width:75vw;
  opacity:0.05;
  filter:grayscale(1);
  z-index:0;
  pointer-events:none;
  user-select:none;
}

/* =========================================================
   Header
========================================================= */
header#header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:1000;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px 56px;
  background:rgba(23,24,26,0.55);
  backdrop-filter:blur(18px) saturate(150%);
  -webkit-backdrop-filter:blur(18px) saturate(150%);
  border-bottom:1px solid rgba(168,173,180,0.12);
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  font-family:"Cormorant Garamond",serif;
}

header#header > a:first-child{
  display:flex;
  align-items:center;
  gap:11px;
}

img#logoImg{
  width:26px;
  height:26px;
  border-radius:6px;
  object-fit:contain;
  background:var(--rich-black);
}

p#vantaHeader{
  font-family:'Space Grotesk', sans-serif;
  font-size:15px;
  letter-spacing:0.3em;
  color:var(--white);
  font-weight:500;
  font-family:"Cormorant Garamond",serif;
}

header#header a.a{
  margin-left:42px;
  font-size:13.5px;
  color:var(--cool-gray);
  position:relative;
  padding-bottom:4px;
  transition:color .3s var(--ease);
  font-family:"Cormorant Garamond",serif;
}
header#header a.a::after{
  content:'';
  position:absolute;
  left:0; bottom:0;
  width:0; height:1px;
  background:var(--gold);
  transition:width .35s var(--ease);
}
header#header a.a:hover{ color:var(--white); }
header#header a.a:hover::after{ width:100%; }


#divLeistungenPeak {
    font-family:"Cormorant",serif;
    font-weight:600;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.25s ease;
}

.divLeistungen {
    width: 250px;
    height: 150px;
    background-color: var(--graphite);
    box-shadow: 0 0 5px var(--rich-black);
    padding-top: 15px;
    border-radius: 20px;
    box-sizing: border-box;
    transition: all 0.25s ease;
}

#h1Leistungen {
  font-family:"Roboto Mono",serif;
  font-weight: bold;
}


.divLeistungen:hover {
    box-shadow: 0 0 5px var(--rich-black);
    box-shadow: 0 2px 0 var(--cool-gray);
    transition: all 0.25s ease;
}


#nameInput.fertig {
  color: var(--metallic-gray);
  pointer-events: none;
}
#emailInput.fertig {
  color: var(--metallic-gray);
  pointer-events: none;
}
#nachrichtInput.fertig {
  color: var(--metallic-gray);
  pointer-events: none;
}



@media (max-width:760px){
  header#header{ padding:16px 24px; }
  header#header a#a{ margin-left:20px; font-size:12px; }
}

/* =========================================================
   Hero / #start
========================================================= */
section#start{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:var(--rich-black);
  z-index:1;
}

img#hero-laptop{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:65% 50%;
  z-index:0;
}

/* Verdeckt den im Foto enthaltenen Text vollständig und schafft Kontrast
   für die echten HTML-Überschriften darüber */
div#blackDiv{
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(
    90deg,
    rgba(11,11,12,0.98) 0%,
    rgba(11,11,12,0.98) 44%,
    rgba(11,11,12,0.8) 56%,
    rgba(11,11,12,0.25) 70%,
    rgba(11,11,12,0) 82%
  );
}

h1#buildDreamsIntoFuture{
  position:relative;
  z-index:2;
  max-width:640px;
  margin:0 0 0 56px;
  font-size:clamp(40px, 6vw, 78px);
  line-height:1.06;
  color:var(--white);
}

h2#h2{
  position:relative;
  z-index:2;
  max-width:480px;
  margin:22px 0 0 56px;
  font-size:19px;
  font-weight:300;
  color:var(--silver);
  font-family:"Roboto Mono",serif;
}

@media (max-width:760px){
  h1#buildDreamsIntoFuture{ margin-left:24px; font-size:clamp(32px,9vw,48px); }
  h2#h2{ margin-left:24px; font-size:16px; }
  img#hero-laptop{ object-position:78% 50%; }
  div#blackDiv{
    background:linear-gradient(
      180deg,
      rgba(11,11,12,0.98) 0%,
      rgba(11,11,12,0.98) 55%,
      rgba(11,11,12,0.55) 74%,
      rgba(11,11,12,0.15) 88%,
      rgba(11,11,12,0) 100%
    );
  }
}

/* =========================================================
   Sections als große Karten
========================================================= */
section#uberVanta,
section#Leistungen,
section#steps,
section#rezession,
section#Kontakt{
  position:relative;
  z-index:1;
  max-width:1080px;
  margin:64px auto;
  padding:80px 64px;
  background:var(--charcoal);
  border:1px solid rgba(168,173,180,0.1);
  border-radius:var(--radius-card);
  box-shadow:0 40px 80px rgba(0,0,0,0.45);
}

@media (max-width:760px){
  section#uberVanta,
  section#Leistungen,
  section#steps,
  section#Kontakt{
    margin:32px 16px;
    padding:52px 28px;
    border-radius:20px;
  }
}

/* ---- Über VANTA ---- */
section#uberVanta{
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
}

img#logo-reines{
  width:44px;
  height:44px;
  object-fit:contain;
  border-radius:10px;
  background:var(--rich-black);
  margin-bottom:26px;
}

h1#vantaH1{
  font-size:clamp(28px,3.4vw,38px);
  letter-spacing:0.02em;
}

h2#h2two, h2#brrbrr{
  margin-top:14px;
  font-size:16px;
  font-weight:300;
  color:var(--gold);
  letter-spacing:0.01em;
}

p#pTextUberVanta{
  margin-top:28px;
  max-width:560px;
  font-size:15.5px;
  line-height:1.85;
  color:var(--cool-gray);
}

/* ---- Leistungen ---- */
h1#LeistungenH1{
  font-size:clamp(28px,3.4vw,38px);
}

h2#wasbietenwiran{
  margin-top:10px;
  font-size:15px;
  font-weight:300;
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:0.2em;
}

div#divLeistungen{
  margin-top:44px;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(230px, 1fr));
  gap:22px;
}

/* Da alle Leistungen-Karten dasselbe ID tragen, wirkt die Regel oben auf den
   ersten Container; die folgende Regel stylt jede einzelne Karte gleichermaßen. */
section#Leistungen > div#divLeistungen{
  margin-top:0;
  display:block;
  background:var(--graphite);
  border:1px solid rgba(168,173,180,0.1);
  border-radius:16px;
  padding:30px 26px;
  transition:transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}

section#Leistungen{
  display:grid;
  grid-template-columns:1fr;
  row-gap:0;
}

section#Leistungen h1#LeistungenH1,
section#Leistungen h2#wasbietenwiran{
  grid-column:1 / -1;
}

section#Leistungen{
  display:block;
}

section#Leistungen > div#divLeistungen{
  display:inline-block;
  width:calc(33.333% - 15px);
  vertical-align:top;
  margin:0 22px 22px 0;
}
section#Leistungen > div#divLeistungen:nth-child(4n){ margin-right:0; }

section#Leistungen > div#divLeistungen:hover{
  transform:translateY(-6px);
  border-color:rgba(200,168,107,0.4);
  background:#26272b;
}

h1#h1Leistungen{
  font-size:17px;
  font-weight:500;
  letter-spacing:0;
  color:var(--white);
  line-height:1.3;
}

p#pText{
  margin-top:12px;
  font-size:13.5px;
  line-height:1.6;
  color:var(--cool-gray);
}

@media (max-width:900px){
  section#Leistungen > div#divLeistungen{ width:calc(50% - 11px); }
  section#Leistungen > div#divLeistungen:nth-child(4n){ margin-right:22px; }
  section#Leistungen > div#divLeistungen:nth-child(2n){ margin-right:0; }
}
@media (max-width:600px){
  section#Leistungen > div#divLeistungen{ width:100%; margin-right:0 !important; }
}

/* ---- Steps ---- */
h1#stepsH1{
  font-size:clamp(26px,3.2vw,34px);
  margin-bottom:44px;
}

div#Step{
  position:relative;
  padding:26px 0 26px 26px;
  border-top:1px solid rgba(168,173,180,0.12);
  border-left:2px solid var(--gold);
}
div#Step:last-of-type{ border-bottom:1px solid rgba(168,173,180,0.12); }

h1#stepH1Steps{
  font-size:18px;
  font-weight:500;
  color:var(--white);
}

p#pTextSteps{
  margin-top:8px;
  font-size:14px;
  line-height:1.65;
  color:var(--cool-gray);
  max-width:640px;
}

/* ---- Kontakt ---- */
section#Kontakt{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:center;
}

div#kontaktDivLinks h1{
  font-size:clamp(22px,2.6vw,28px);
  line-height:1.3;
  margin-bottom:10px;
}

a#Telefon{
  display:inline-block;
  margin-top:26px;
  padding:15px 30px;
  background:var(--gold);
  color:var(--rich-black);
  border-radius:100px;
  font-family:'Space Grotesk', sans-serif;
  font-size:14px;
  font-weight:500;
  letter-spacing:0.02em;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease);
}
a#Telefon:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 32px rgba(200,168,107,0.3);
}

div#kontaktDivRechts{
  display:flex;
  flex-direction:column;
  gap:8px;
}

div#kontaktDivRechts p{
  margin-top:16px;
  font-family:'Space Grotesk', sans-serif;
  font-size:11px;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--gold);
}

div#kontaktDivRechts input{
  background:transparent;
  border:none;
  border-bottom:1px solid var(--slate-gray);
  padding:10px 2px;
  color:var(--white);
  font-family:'Inter', sans-serif;
  font-size:15px;
  font-weight:300;
  outline:none;
  transition:border-color .3s var(--ease);
}
div#kontaktDivRechts input:focus{ border-color:var(--gold); }

button#jetztAnfragen{
  margin-top:26px;
  align-self:flex-start;
  background:var(--gold);
  color:var(--rich-black);
  border:none;
  padding:15px 32px;
  border-radius:100px;
  font-family:'Space Grotesk', sans-serif;
  font-size:14px;
  font-weight:500;
  letter-spacing:0.02em;
  cursor:pointer;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease);
}
button#jetztAnfragen:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 32px rgba(200,168,107,0.3);
}


button#jetztAnfragen.fertig {
  margin-top:26px;
  align-self:flex-start;
  background:var(--gold);
  color:var(--rich-black);
  border:none;
  padding:15px 32px;
  border-radius:100px;
  font-family:'Space Grotesk', sans-serif;
  font-size:14px;
  font-weight:500;
  letter-spacing:0.02em;
  cursor:pointer;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease);
  pointer-events: none;
}
button#jetztAnfragen.fertig:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 32px rgba(200,168,107,0.3);
}


@media (max-width:760px){
  section#Kontakt{ grid-template-columns:1fr; gap:40px; }
}

/* =========================================================
   Footer
========================================================= */
footer#footer{
  position:relative;
  z-index:1;
  margin-top:20px;
  padding:44px 56px 40px;
  background:var(--charcoal);
  border-top:1px solid rgba(168,173,180,0.12);
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  flex-wrap:wrap;
  gap:24px;
}

div#footerDivLinks p{
  font-size:13px;
  color:var(--cool-gray);
  margin-bottom:6px;
}
div#footerDivLinks p:first-child{
  font-family:'Space Grotesk', sans-serif;
  color:var(--white);
  letter-spacing:0.08em;
  margin-bottom:10px;
}

div#footerDivRechts{
  display:flex;
  gap:26px;
}
div#footerDivRechts a{
  font-size:13px;
  color:var(--cool-gray);
  transition:color .3s var(--ease);
}
div#footerDivRechts a:hover{ color:var(--gold); }

@media (max-width:760px){
  footer#footer{ padding:36px 24px; }
}


@media (max-width: 445px) {
  .a {
    opacity: 0;
    pointer-events: none;
    display: none;
    pointer-events: none;
    animation: none;
  }
  a.b {
    opacity: 1;
    display: block;
    pointer-events: all;
    position: relative;
  }

  a.b::after{
  content:'';
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:1px;
  background:var(--gold);
  transition: width 0.35s var(--ease);
}

  a.b:hover{ color:var(--white); }
  a.b:hover::after{ width:70%; }

  #panelDiv.active {
    top: 0;
    top: 50px;
    opacity: 1;
    right: 0;
    position: fixed;
    width: 50%;
    height: 1000px;
    box-shadow: -1px -0.5px var(--metallic-gray);
    border-radius: 20px;
    z-index: 1002;
    color: var(--cool-gray);
    background: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter:blur(10px) saturate(150%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-wrap: wrap;
    padding: 50px;
    transition: all 0.5s ease;
  }
  #panelBtn {
    opacity: 1;
    width: 50px;
    right: 0;
    cursor: pointer;
    display: block;
    pointer-events: all;
  }
}