@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Turret+Road:wght@200;300;400;500;700;800&display=swap');

* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-padding-top: 4rem;
  scroll-behavior: smooth;
  list-style: none;
  text-decoration: none;
}

:root {
  --main-color: #BC9667;
  --main-color-hover: #8A6F4D;
  --second-color: #EDEAE3;
  --text-color: #1B1B1B;
  --bg-color: #FFFFFF;
  --bg-color-alt: #F1F1F1;

  --box-shadow: 2px 2px 10px 4px rgb(14 55 54 / 15%);
}

section {
  padding: 50px 100px;
}

img {
  width: 100%;
}

body {
  color: var(--text-color);
}

.heading {
  text-align: center;
}

.heading h2 {
  font-size: 1.8rem;
  text-transform: uppercase;
}

/*Header*/

header {
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 100px;
  transition: .5s linear;
}

header.shadow {
  background: var(--text-color);
  box-shadow: var(--box-shadow);
}

.logo img {
  width: 60px;
}

.navbar {
  display: flex;
}

.navbar a {
  padding: 8px 17px;
  color: var(--bg-color);
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 500;
}

.navbar a:hover {
  background: var(--main-color);
  border-radius: .2rem;
  transition: .2s all linear;
}

.header-icon {
  font-size: 22px;
  cursor: pointer;
  z-index: 10000;
  display: flex;
  column-gap: .8rem;
}

.header-icon .bx {
  color: var(--bg-color);
}

.header-icon .bx:hover {
  color: var(--main-color);
}

#menu-icon {
  color: var(--bg-color);
  font-size: 24px;
  z-index: 100001;
  cursor: pointer;
  display: none;
}

.search-box {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-color);
  width: 100%;
}

.search-box.active {
  top: 110%;
  box-shadow: var(--box-shadow);
  transition: .4s;
}

.search-box input {
  padding: 20px;
  border: none;
  outline: none;
  width: 100%;
  font-size: 1rem;
  color: var(--main-color);
}

.search-box input::placeholder {
  font-size: 1rem;
  font-weight: 500;
}

/*Home*/

.home {
  width: 100%;
  min-height: 100vh;
  background: url('bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, auto));
  align-items: center;
  gap: 1.5rem;
}

.home-text h1 {
  font-size: 3.4rem;
  color: var(--main-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.home-text p {
  font-size: .938rem;
  color: var(--bg-color);
  margin: 0.5rem 0 1.4rem;
}

.btn {
  padding: 10px 40px;
  border-radius: .3rem;
  background: var(--main-color);
  color: var(--bg-color);
  font-weight: 500;
  transition: .4s;
}

.btn:hover {
  background: var(--main-color-hover);
}

/*About*/
.about {
    background-color: #06161c;
    display: grid
;
    grid-template-columns: repeat(auto-fit, minmax(17rem, auto));
    align-items: center;
    gap: 1.5rem;
    color: #fffffe;
    font-size: 22px;
}

.about-img img {
  border-radius: .5rem;
}

.about-text h2 {
  font-size: 1.8rem;
  text-transform: uppercase;
}

.about-text p {
  font-size: .938rem;
  margin: 0.5rem 0 1.1rem;
}

/*Products*/

.products-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, auto));
  gap: 1.5rem;
  margin-top: 2rem;
}

.products-container .box {
  position: relative;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: .5rem;
  box-shadow: var(--box-shadow);
}

.products-container .box h3 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0.5rem 0 0.5rem;
}

.products-container .box .content {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.products-container .box .content span {
  padding: 0 1rem;
  color: var(--bg-color);
  background: var(--main-color);
  border-radius: 4px;
  font-weight: 500;
}

.products-container .box .content a {
  padding: 0 1rem;
  color: var(--text-color);
  border: 2px solid var(--main-color);
  border-radius: 4px;
  text-transform: uppercase;
}

.products-container .box .content a:hover {
  background: var(--main-color);
  color: var(--bg-color);
  transition: .4s all linear;
}

.products-container img {
  width: 100%;
  height: 750px;
  object-fit: contain;
  object-position: center;
  padding: 20px;
  background: var(--bg-color-alt);
  border-radius: .5rem;
}

/*Customers*/

.customers-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, auto));
  gap: 1.5rem;
  margin-top: 2rem;
}

.customers-container .box {
  padding: 20px;
  box-shadow: var(--box-shadow);
  border-radius: .5rem;
  text-align: center;
}

.customers-container .box p {
  font-size: .938rem;
}

.customers-container .box h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0.5rem 0 0.5rem;
}

.customers-container .box img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.customers-container .box:hover {
  background: var(--second-color);
  transition: .4s all linear;
}

.stars .bx {
  color: var(--main-color);
}

/*Footer*/

.footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, auto));
  gap: 1.5rem;
  background-color: #06161c !important;
  color:white !important;
}

.footer a{
  color: white !important;
}

.footer-box h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-box p {
  font-size: .938rem;
  margin-bottom: 10px;
}

.social {
  display: flex;
  align-items: center;
  column-gap: .5rem;
}

.social a .bx {
  font-size: 24px;
  color: var(--text-color);
  padding: 10px;
  background: var(--second-color);
  border-radius: .2rem;
}

.social a .bx:hover {
  background: var(--main-color);
  color: var(--bg-color);
  transition: .4s all linear;
}

.footer-box li a {
  color: var(--text-color);
}

.footer-box li a:hover {
  color: var(--main-color);
}

.contact {
  display: flex;
  flex-direction: column;
  row-gap: .5rem;
}

.contact span {
  display: flex;
  align-items: center;
}

.contact i {
  font-size: 20px;
  margin-right: 1rem;
}

.copyright {
  padding: 20px;
  text-align: center;
  background: var(--second-color);
}

.copyright a {
  font-family: 'Turret Road', sans-serif;
  color: var(--text-color);
  transition: .4s all linear;
  font-weight: 600;
}

.copyright a:hover {
  color: var(--main-color);
}

/*Media Queries*/

@media(max-width: 1058px) {
  header {
    padding: 16px 60px;
  }

  section {
    padding: 50px 60px;
  }

  .home-text h1 {
    font-size: 2.4rem;
  }
}

@media(max-width: 991px) {
  header {
    padding: 16px 4%;
  }

  section {
    padding: 50px 4%;
  }

  .home-text h1 {
    font-size: 2rem;
  }
}

@media(max-width: 768px) {
  header {
    padding: 12px 4%;
  }

  #menu-icon {
    display: initial;
  }

  .navbar {
    position: absolute;
    top: -570px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    background: var(--second-color);
    row-gap: 1.4rem;
    padding: 20px;
    transition: .4s;
    text-align: center;
  }

  .navbar a {
    color: var(--text-color);
  }

  .navbar a:hover {
    color: var(--bg-color);
  }

  .navbar.active {
    top: 100%;
  }

  .about {
    align-items: center;
  }
}

@media(max-width: 568px) {
  .footer {
    place-items: center;
    text-align: center;
  }

  .social {
    justify-content: center;
  }

  .contact {
    align-items: center;
    justify-content: center;
  }
}

@media(max-width: 360px) {
  header {
    padding: 11px 4%;
  }

  .logo img {
    width: 45px;
  }

  .home-text {
    padding-top: 15px;
  }

  .home-text h1 {
    font-size: 1.4rem;
  }

  .home-text p {
    font-size: .8rem;
    font-weight: 300;
  }

  .about-img {
    order: 2;
  }

  .about-text {
    text-align: center;
  }

  .about-text h2 {
    font-size: 1.2rem;
  }

  .heading h2 {
    font-size: 1.2rem;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Turret+Road:wght@400;700&display=swap');

* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --main-color: #BC9667;
  --main-color-hover: #8A6F4D;
  --second-color: #EDEAE3;
  --text-color: #1B1B1B;
  --bg-color: #FFFFFF;
  --bg-color-alt: #F1F1F1;

  --box-shadow: 2px 2px 10px 4px rgb(14 55 54 / 15%);
}

body {
  color: var(--text-color);
  background: var(--bg-color);
  line-height: 1.5;
}

/* ---------- Header ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 12px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--text-color);
}

.logo img {
  width: 55px;
}

.navbar {
  display: flex;
  gap: 1rem;
}

.navbar li {
  list-style: none;
}

.navbar a {
  color: var(--bg-color);
  font-weight: 500;
  padding: 8px 14px;
  text-transform: uppercase;
  transition: .3s;
}

.navbar a:hover {
  background: var(--main-color);
  border-radius: 5px;
}

#menu-icon {
  display: none;
  font-size: 28px;
  color: var(--bg-color);
  cursor: pointer;
}

.header-icon {
  display: flex;
  gap: 1rem;
  font-size: 22px;
  cursor: pointer;
  color: var(--bg-color);
}

.search-box {
  position: absolute;
  top: -120%;
  left: 0;
  width: 100%;
  background: var(--bg-color);
  padding: 10px;
  transition: .4s;
}

.search-box.active {
  top: 100%;
  box-shadow: var(--box-shadow);
}

.search-box input {
  width: 100%;
  padding: 12px;
  border: none;
  outline: none;
  font-size: 1rem;
}

/* ---------- Hero ---------- */
.home {
  min-height: 100vh;
  padding: 120px 5% 60px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: url('bg.png') no-repeat center/cover;
}

.home-text {
  flex: 1 1 400px;
}

.home-text h1 {
  font-size: 2.5rem;
  color: var(--main-color);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.home-text p {
  color: var(--bg-color);
  margin-bottom: 1rem;
}

.home-img {
  flex: 1 1 350px;
}

.home-img img {
  width: 100%;
}

.btn {
  display: inline-block;
  background: var(--main-color);
  color: var(--bg-color);
  padding: 10px 28px;
  border-radius: 5px;
  transition: .3s;
}

.btn:hover {
  background: var(--main-color-hover);
}

/* ---------- About ---------- */
.about {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 80px 5%;
  align-items: center;
}

.about-img,
.about-text {
  flex: 1 1 350px;
}

.about-text h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

/* ---------- Products ---------- */
.products {
  padding: 80px 5%;
}

.products-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.products-container .box {
  flex: 1 1 280px;
  background: var(--bg-color);
  padding: 15px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  text-align: center;
}

.products-container img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: var(--bg-color-alt);
  border-radius: 5px;
  margin-bottom: 1rem;
}

.products-container h3 {
  margin: .5rem 0;
}

.products-container .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.products-container .content span {
  background: var(--main-color);
  color: var(--bg-color);
  padding: 4px 10px;
  border-radius: 4px;
}

.products-container .content a {
  border: 2px solid var(--main-color);
  padding: 4px 12px;
  border-radius: 4px;
  color: var(--text-color);
  transition: .3s;
}

.products-container .content a:hover {
  background: var(--main-color);
  color: var(--bg-color);
}

/* ---------- Customers ---------- */
.customers {
  padding: 80px 5%;
}

.customers-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.customers-container .box {
    flex: 1 1 280px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-align: center;
    border: solid;
    padding: 50px 20px !important;
}

.customers-container .box:hover {
  background: var(--second-color);
}

.customers-container img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-top: 1rem;
  object-fit: cover;
}

.stars .bx {
  color: var(--main-color);
}

/* ---------- Footer ---------- */
.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 60px 5%;
  background: var(--bg-color-alt);
}

.footer-box {
  flex: 1 1 220px;
}

.footer-box h3 {
  margin-bottom: .8rem;
}

.footer-box li {
  list-style: none;
  margin-bottom: .5rem;
}

.footer-box a {
  color: var(--text-color);
  transition: .3s;
}

.footer-box a:hover {
  color: var(--main-color);
}

.social {
  display: flex;
  gap: .5rem;
}

.social a {
  background: var(--second-color);
  padding: 8px;
  border-radius: 5px;
  color: var(--text-color);
}

.social a:hover {
  background: var(--main-color);
  color: var(--bg-color);
}

.copyright {
  text-align: center;
  padding: 15px;
  background: var(--second-color);
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .home-text h1 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  #menu-icon {
    display: block;
  }

  .navbar {
    position: absolute;
    top: -500px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--second-color);
    text-align: center;
    padding: 20px 0;
    transition: .4s;
  }

  .navbar.active {
    top: 100%;
  }

  .navbar a {
    color: var(--text-color);
  }
}

@media (max-width: 480px) {
  .home-text h1 {
    font-size: 1.5rem;
  }

  .home-text p {
    font-size: .9rem;
  }

  .products-container .content {
    flex-direction: column;
    gap: .5rem;
  }
}


.pakete {
  padding: 4rem 2rem;
  background: #5083b6;
  text-align: center;
}

.pakete .heading h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #111;
}

/* Container mit Grid */
.pakete-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  padding: 1rem;
}

.paket {
  background: #fff;
  padding: 2rem;
  border-radius: 1.2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}

.paket:hover {
  transform: translateY(-8px);
}

.paket h3 {
  color: #007bff;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.paket .preis {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 1rem 0;
  color: #111;
}

.paket ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 1.5rem;
}

.paket ul li {
  margin: 0.5rem 0;
  padding-left: 1.8rem;
  position: relative;
  font-size: 0.95rem;
}

.paket ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

.paket .btn {
  margin-top: auto;
  display: inline-block;
  padding: 0.9rem 1.5rem;
  background: #007bff;
  color: #fff;
  border-radius: 0.8rem;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
  text-decoration: none;
}

.paket .btn:hover {
  background: #0056b3;
  transform: scale(1.05);
}

/* Mittel-Paket Fokus */
.paket.business {
  border: 3px solid #007bff;
  transform: scale(1.05);
  z-index: 2;
}

/* Label für "Beliebt" */
.paket.business::before {
  content: "★ Beliebteste Wahl";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #007bff;
  color: #fff;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: bold;
  border-radius: 0.6rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .pakete .heading h2 {
    font-size: 1.6rem;
  }

  .paket {
    padding: 1.5rem;
  }

  .paket .preis {
    font-size: 1.5rem;
  }

  .paket h3 {
    font-size: 1.2rem;
  }
}

.logo img {
    width: 243px;
}