/* ==========================================================
   FONTS
========================================================== */
@font-face{
    font-family:"Lato";
    src:url("fonts/Lato.woff2"); format("woff2")
}
@font-face{
    font-family:"Merriweather";
    src:url("fonts/Merriweather.woff2"); format("woff2")
}

/* ==========================================================
   GLOBAL
========================================================== */
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Merriweather', serif;
  color: #5c5c5c;
  background-color: #fff;
  line-height: 1.6;
  text-align: center;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, a {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  color: #686868;
}

h2 {
  font-size: clamp(1rem, 2vw, 2rem);
}

h3 {
  font-size: clamp(1rem, 3vw, 2.2rem);
  margin: 40px 0 10px;
}

p {
  line-height: 1.6;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
}

/* ==========================================================
   HEADER
========================================================== */
header {
  width: 100%;
  height: 65px;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

#logo {
  width: 110px;
}

#logo img {
  width: 100%;
  display: block;
}

header nav {
  margin-right: 20px;
}

header nav ul {
  display: flex;
  gap: 25px;
}

header nav ul li a {
  font-size: 1rem;
}

header nav ul li:hover {
  color: #ff8900;
}

/* BURGER */
.burger {
  width: 28px;
  height: 20px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.burger span {
  height: 3px;
  width: 100%;
  background: #000;
  border-radius: 2px;
}

/* MOBILE NAV */
@media (max-width: 900px) {

  .burger {
    display: flex;
  }

  header nav {
    display: none;
    position: absolute;
    top: 65px;
    right: 0;
    width: 100%;
    background: #535252;
    padding: 20px 0;
    flex-direction: column;
    align-items: center;
  }

  header nav.open {
    display: flex;
  }

  header nav ul {
    flex-direction: column;
    gap: 18px;
    margin: 0;
  }
}

/* ==========================================================
   HERO
========================================================== */
.hero {
  padding-top: 80px;
  min-height: 100vh;
  background: url('images/q.jpg') center/cover no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 50px;
}

.hero-text {
  max-width: 900px;
  background: rgba(0,0,0,0);
  padding: 20px 0;
}

.hero-text h2 {
  color: #ececec;
  font-size: clamp(1.4rem, 4vw, 2.3rem);
  text-shadow: 0 0 20px #000;
  font-weight: 300;
  text-align: left;
}

.hero-story {
  color: #ececec;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  line-height: 1.7;
  text-align: left;
  text-shadow: 0 0 15px #000;
}

/* Tablet Hero */
@media (max-width: 768px) {
  .hero {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Mobile Hero */
@media (max-width: 480px) {
  .hero-text h2 {
    font-size: 1.3rem;
  }
  .hero-story {
    font-size: 0.9rem;
  }
}


#home::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: 0;
}

#home h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 500;
  text-shadow: 0 4px 15px rgba(255, 255, 255, 0.5);
}

#home .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  border: 1px solid #000;
  border-radius: 6px;
  font-size: 1rem;
  transition: 0.25s;
}

#home .btn:hover {
  background: #000;
  color: #fff;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-img {
    max-width: 200px;
  }
}

/* ==========================================================
   ABOUT SECTION
========================================================== */
.container {
  max-width: 1000px;
  margin: 20px auto;
  padding: 0 20px;
}

.about-grid {
  background-color: #f9f9f9;
  display: flex;
  gap: 30px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.about-left img {
  max-width: 350px;
  width: 100%;
  border-radius: 8px;
}

.divider {
  height: 200px;
  background: url("images/white-rose%20.webp") center center no-repeat;
  background-size: contain;
  margin: 40px 0;
}

.usp {
  text-align: left;
  padding-left: 20px;
}

.usp li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.order-button {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 24px;
  background-color: #ff8900;
  color: #5c5c5c;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.order-button:hover {
  background-color: #e55b00;
}

@media (max-width: 768px) {
  .about-grid {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .about-left img,
  .about-right {
    margin: 0 auto;
  }

  .usp {
    text-align: center;
    padding: 0;
  }
}

/* ==========================================================
   IMAGE CAROUSEL
========================================================== */
#image-carousel {
  max-width: 800px;
  margin: 20px auto;
  text-align: center;
  padding: 0 20px;
}

.carousel-title {
  font-size: clamp(1.4rem, 2vw, 2rem);
  margin-bottom: 10px;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  align-items: center;
  transition: transform 0.5s ease;
}

.carousel-item {
  min-width: 120px;
  margin-right: 10px;
  flex-shrink: 0;
}

.carousel-item img {
  width: 100%;
  max-width: 200px;
  display: block;
  border-radius: 10px;
  transition: transform 0.8s ease;
}

.carousel-item:hover img {
  transform: scale(1.07);
}

@media (max-width: 768px) {
  .carousel-item {
    min-width: 70%;
    margin: 0 auto;
  }
}

/* ==========================================================
   FLOATING BUTTON
========================================================== */
.cta-rose {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.cta-rose img {
  width: 60px;
  cursor: pointer;
  transition: transform 0.3s;
}

.cta-rose img:hover {
  transform: scale(1.1);
}

/* ==========================================================
   FOOTER
========================================================== */
footer {
  width: 100vw;
  min-height: 550px;
  background: url("images/footer.webp") no-repeat bottom center;
  background-size: 100% auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.footer-content p {
  color: darkgray;
  margin: 0;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
}

@media (max-width: 768px) {
  footer {
    min-height: 150px;
    background-size: 100% auto;
  }
}

/* ==========================================================
   IMPRESSUM
========================================================== */
.impressum {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #222;
  text-align: left;
}

.impressum h2,
.impressum h3,
.impressum h4 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: small;
  color: #111;
  margin-top: 30px;
  margin-bottom: 10px;
  font-weight: bold;
  text-align: left;
}

.impressum p {
  margin-bottom: 16px;
  text-align: left;
}

.impressum a {
  color: #0056b3;
  text-decoration: none;
}

.impressum a:hover {
  text-decoration: underline;
}

.impressum strong {
  font-weight: 600;
}

.impressum br {
  line-height: 1.4;
}

.impressum ul {
  list-style: disc;
  margin-left: 20px;
}

.impressum li {
  margin-bottom: 6px;
}
