@charset "utf-8";
/* CSS Document */

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

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

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  margin: 0;
  background-color: #ffffff;
}

/* HEADER / NAVIGATION */

header {
  background-image: url(../images/fuechse-header.png);
  background-size: cover;
  height: 1076px;
  width: 100%;
  padding-top: 36px;
  position: relative;
}

nav {
  background-color: #ffffff;
  border-radius: 20px;
  margin: 0% 5% 0% 5%;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Wrapper (kann <a> oder <div> sein) */
.logo{
  display:inline-block;
  line-height:0;           /* keine Baseline-Lücke */
}

/* Nur das Bild – skaliert mit der Breite */
.logo img{
  display:block;
  width:clamp(140px, 22vw, 320px);  /* min 140px, bis 320px; wächst mit 22vw */
  height:auto;                      /* Seitenverhältnis bleibt */
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #000000;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 1.25em;
  font-family: "Verdana";
  padding: 5px 10px;
}

.nav-links li a:hover {
  color: #FF9C1A;
}

.nav-links li a:active {
  font-weight: 600;
}

.nav-links li:not(:last-child) {
  border-right: 1px solid #999;
  padding-right: 30px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Verdana";
  font-weight: 400;
}

.header-text {
  position: absolute;
  top: 600px;
  left: 700px;
  transform: translate(-50%, -50%);
  color: white;
  text-align: left;
}

.header-text h1 {
  font-size: 105px;
  line-height: 1.2;
  margin: 0;
  max-width: 800px;
}

.header-text h1 strong {
  font-weight: 900;
}

p, li, ul, a {
  font-family: "Poppins";
  font-weight: normal;
}

/* INTRO */

.intro {
  padding: 80px 100px;
  background-color: white;
  color: #111;
  font-family: sans-serif;
  max-width: 1200px;
  margin: 0 auto;
}

.intro-text h2 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 30px;
}

.intro-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 800px;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #fca311;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #e08c00;
}

/* PERSPEKTIVE SECTION */

.perspektive-image-container {
  position: relative;
  display: block;
  width: 100%;
  height: 700px;
  overflow: hidden;
  border-radius: 0px 35px 35px 0px;
  margin: 0;
}

.perspektive-text-box {
  position: absolute;
  top: 50%;
  left: calc(100% - 144px - 510px);
  transform: translateY(-50%);
  width: 510px;
  height: 430px;
  background-color: rgba(255, 180, 100, 0.9);
  color: #000;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.perspektive-image-container > img {
  border-radius: 0px 35px 35px 0px;
  display: block;
}

.perspektive-text-box h2 {
  margin-top: 0;
  font-size: 48px;
  color: #fefefe;
  font-weight: bold;
  padding: 70px 0px 0px 74px;
}

.perspektive-text-box p {
  font-size: 17px;
  padding: 0px 70px 70px 74px;
}

/* ZUFRIEDENHEIT */

.zufriedenheit {
  position: relative;
  height: 952px;
  background-image: url('/images/fuechse-zufriedenheit.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 238px;
}

.zufriedenheit-text {
  position: absolute;
  top: 50%;
  left: 142px;
  transform: translateY(-50%);
  color: white;
  max-width: 600px;
  z-index: 1;
}

.zufriedenheit-text h2 {
  font-size: 106px;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.zufriedenheit-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: white;
}

/* NEUE FÜCHSE */

.neue-fuechse {
  text-align: center;
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 30px;
  font-weight: bold;
}

.fuechse-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 120px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.fuchs-img-wrapper {
  position: relative;
  height: 740px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.fuchs-card {
  width: 500px;
}

.farin {
  background-image: url('../images/farin.png');
}

.janis {
  background-image: url('../images/janis.png');
}

.fuchs-info {
  position: absolute;
  inset: 0;
  background-color: #fca311;
  color: white;
  padding: 20px;
  border-radius: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10%);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.fuchs-info h3 {
  font-size: 35px;
  margin-bottom: 10px;
}

.fuchs-info p {
  font-size: 20px;
  margin: 10px 0;
}

.fuchs-info .kontakt {
  font-size: 20px;
  margin-top: 10px;
}

.fuchs-img-wrapper:hover .fuchs-info {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fuchs-img-wrapper:hover {
  transform: scale(1.05);
}

/* NEUGIERIG SECTION */

.neugierig {
  position: relative;
  height: 1002px;
  background-image: url('../images/fuechse-neugierig.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 238px;
}

.neugierig-text {
  position: absolute;
  top: 50%;
  left: 147px;
  transform: translateY(-50%);
  color: white;
  max-width: 600px;
  z-index: 1;
}

.neugierig-text h2 {
  font-size: 106px;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.neugierig-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: white;
}

/* FOOTER */

 .footer {
  background-color: #ff9c1a;
  padding: 60px;
  border-radius: 50px;
  width: 1631px;
  height: 285px;
  margin: 60px auto;
  text-align: left;
  color: white;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column strong {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}

.footer a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  display: block;
  margin-top: 5px;
}

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