  
	  @import url("https://use.typekit.net/lhh1bhu.css");

	  
	  
    body {
      margin: 0;
     font-family: "barlow", sans-serif;
font-weight: 400;
font-style: normal;
      color: #000;
    }
	  
	  a {
		  color:#000;
		  text-decoration: underline;
	  }
	  
	  .typo {
		  font-family:"dream-big-regular";
	  }

    .container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 20px;
      box-sizing: border-box;
    }

    /* --- SECTION 1 --- */
    .section1 {
      display: flex;
      position: relative;
      height: 700px;
      overflow: hidden;
    }

    .section1 .left,
    .section1 .right {
      flex: 0 0 50%;
      box-sizing: border-box;
		text-align: center;
    }

    .section1 .left {
      background: #880E3D; /* Weinrot */
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 60px;
		 background: linear-gradient(90deg, #b8860b, #ffeb70, #b8860b);
		color:#000 !important;
    }
.section1 .left a {
	color:#000 !important;
}

    .section1 .left .headline_big {
      font-size: 50px;
      line-height: 1;
		font-weight: 600;
    }
.section1 .left .headline_small {
      font-size: 30px;
      line-height: 1;
		font-weight: 300;
    }
    .section1 .left h1 span {
      display: block;
      font-size: 28px;
      margin-top: 10px;
      letter-spacing: 2px;
    }

    .section1 .left p {
      font-size: 20px;
      line-height: 1.6;
      max-width: 400px;
    }

    .section1 .left .divider {
      width: 70%;
      height: 3px;
      background: #000;
      margin: 0 auto;
		margin-top:20px;
    }

    .section1 .right {
      background: url('winterlandschaft.jpg') no-repeat center center/cover;
      position: relative;
    }

    .section1 .flasche {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      z-index: 10;
      text-align: center;
    }

    .section1 .flasche img {
      max-height: 450px;
    }
	  
	  .section1 svg path {
		  fill:#000;
	  }
	  .section1 svg  {
		  width: 100%;
	  }

    /* --- SECTION 2 --- */
    .section2 {
      text-align: center;
		display: flex;
		justify-content: center;
    align-items: center;
		padding:150px 0;
		 max-width: 1000px;
		margin: 0 auto;
    }
    .section2 h2 {
       font-size: 6vw;
		font-weight: 400;
      margin-bottom: 20px;
    }
    .section2 p {
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
		font-size: 25px;
    }

    /* --- SECTION 3 --- */
    .section3 {
      background: url('winterlandschaft.jpg') no-repeat center center/cover;
      color: #fff;
      text-align: center;
      position: relative;
		height: auto;
		display: flex;
		justify-content: center;
    align-items: center;
		padding:200px 0;
    }
.section3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8); /* 80% Schwarz */
  z-index: 1;
}

.section3 .container {
  position: relative;
  z-index: 2; /* damit der Text über dem Overlay sichtbar bleibt */
}
    .section3 h3 {
      font-size: 5vw;
		font-weight: 200;
      margin: 0;
    }
	  .section3 .container {
		  width: 95%;
		  max-width: 95%;
	  }

    /* --- SECTION 4 --- */
    .section4 {
      padding: 100px 20px;
    }
    .section4 .container {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0px;
    }
    .section4 img {
      max-height: 700px;
		text-align: center;
    }
    .section4 .infos {
      font-size: 22px;
      line-height: 1.8;
		display: flex;
		flex-direction: column;
		text-align: right;
    }
	  
	 .section4 .left,
    .section4 .right {
      flex: 0 0 50%;
      box-sizing: border-box;
    } 
	  
	  .section4 .left {
		  text-align: center;
	  }
	  
    .section4 .infos > div {
      position: relative;
      padding: 20px 0;
    }
    .section4 .infos > div:not(:last-child) {
      border-bottom: 1px solid #000;
    }
    .section4 .infos span {
      display: block;
      font-size: 6vw;

		line-height: 1em;
		font-family:"dream-big-regular";
    }

	  .logo {
		  display: flex;
		  flex-direction: column;
		  align-items: center;
	  }
	  .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

	  .section5 {
		  padding-bottom: 50px;
	  }
	  
	  .section1 a {
		  color:#FFF;
	  }


/* --- MOBILE OPTIMIERUNG --- */
@media (max-width: 1024px) {
  .section1 {
    height: auto;
    flex-direction: column;
  }
  .section1 .left,
  .section1 .right {
    flex: 1 1 100%;
    padding: 40px 20px;
    text-align: center;
  }
  .section1 .flasche img {
    max-height: 390px;
  }
  .section1 .left .headline_big {
    font-size: 36px;
  }
  .section1 .left .headline_small {
    font-size: 22px;
  }
  .section1 .left p {
    font-size: 18px;
    max-width: 100%;
    margin: 20px auto 0;
  }
}

@media (max-width: 768px) {
  .section2 {
    padding: 80px 20px;
  }
  .section2 h2 {
    font-size: 8vw;
  }
  .section2 p {
    font-size: 18px;
  }

  .section3 {
    padding: 120px 20px;
  }
  .section3 h3 {
    font-size: 8vw;
  }

  .section4 {
    padding: 60px 20px;
  }
  .section4 .container {
    flex-direction: column;
    gap: 40px;
  }
  .section4 img {
    max-height: 400px;
    width: 100%;
    height: auto;
  }
  .section4 .infos {
    text-align: center;
    font-size: 18px;
  }
  .section4 .infos span {
    font-size: 12vw;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }
  .section1 .left {
    padding: 30px 15px;
  }
  .section1 .left .headline_big {
    font-size: 28px;
  }
  .section1 .left .headline_small {
    font-size: 18px;
  }
  .section1 .flasche img {
    max-height: 380px;
  }

  .section2 p {
    font-size: 16px;
  }
  .section4 .infos {
    font-size: 16px;
  }
  .section4 .infos span {
    font-size: 14vw;
  }
}


@media (max-width: 780px) {
.section1 .right {
  flex: 0 0 500px; /* immer 500px breit */
  max-width: 500px;
}

.section1 .flasche {
    top: 73%;
}
	.section2 p {
		font-size: 20px;
	}
	.section4 .infos {
        font-size: 25px;
	}
}



.limited-badge {
  position: absolute;
  top: 85%;
  right: -20px;
  background: linear-gradient(90deg, #b8860b, #ffeb70, #b8860b);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transform: rotate(10deg);
  z-index: 20;
  font-family: "barlow", sans-serif;
  letter-spacing: 1px;
	color:#000;
}

.section6 {
	background: #000;
	margin-bottom: 50px;
}
