
:root {
  --header-height: 127px;
  /* SWIPER */
  --swiper-theme-color: #ffffff;
  --swiper-pagination-bullet-width: 16px;
  --swiper-pagination-bullet-height: 16px;
  --swiper-pagination-bullet-size: 16px;
  --swiper-pagination-bottom: 0px;
}



#main-content {
  --bs-gutter-x: 0;
}
  
body {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #222;
  background-color: #000;
  scroll-behavior: smooth;
}
p,
ul,
ol,
.accordion-body {
  font-size: 1.0em;
  font-weight: 400;
  line-height: 1.7em;
  color: #ccc5b9;
}
@media only screen and (max-width: 576px) and (orientation: portrait) {
  body {
    font-size: 17px;
  }
}
h1, h2, h3, h4 {
  font-family: 'Herr Von Muellerhoff', cursive;
  color: #d4af37;
}
h2, h3, h4 {
  font-family: 'Playfair Display', serif;
}

a {
  text-decoration: none;
  color: #ccc;
}

a:hover {
  text-decoration: underline;
}

.btn-gold {
  background-color: #d4af37;
  color: #000;
  border: none;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 0.3rem;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background-color: #bfa134;
  color: #000;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
  text-decoration: none;
}

.top-bar a {
  color: #222;
}

.top-bar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  background-color: #fff;
  padding: 1rem 0;
  -webkit-box-shadow: 0px 5px 17px 0px rgba(33,33,33,0.1);
  box-shadow: 0px 5px 17px 0px rgba(33,33,33,0.1);
  height: var(--header-height);
}
body {
  padding-top: var(--header-height);
}

.top-bar::after {
  content: ' ';
  display: block;
  position: fixed;
  top:  var(--header-height);
  margin-top: -10px;
  width: 100%;
  z-index: 11;
  height: 10px;
  background: linear-gradient(to right, #d4af37 0%, #d4af37 50%, #d4af37 100%);
  opacity: 1.0;
}


.gold-divider {
  height: 10px;
  background: linear-gradient(to right, #d4af37 0%, #d4af37 50%, #d4af37 100%);
}

.top-bar .logo {
  font-weight: bold;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
}

.top-bar .logo i {
  margin-right: 0.5rem;
  color: #d4af37;
}

.phone-numbers {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.phone-numbers .phone-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar .phone-numbers .phone-item {
  font-size: 1.1rem;
}

.phone-numbers img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}
footer,
footer a  {
  color: #ccc5b9;
}
footer .phone-numbers {}

footer .phone-item img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 2px #d4af37;
}

@media only screen and (max-width: 576px) and (orientation: portrait) {
  .pipe-divider {
    display: none;
  }
  .footer-txt {
    display: block;
  }
}

.hero {
  position: relative;
  background: url('../img/zlataky-cz-S6cWf7TIk9U-unsplash-sm-min.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  height: calc(100vh - var(--header-height));
  max-height: 868px;
  align-items: center;
}

.small-hero {
  height: calc(50vh - var(--header-height));
  max-height: 434px;
}


.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-slider {
  position: relative;
  height: calc(100vh - var(--header-height));
  max-height: 868px;
}

.hero-slider .hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  text-align: center;
  color: white;
  background-position: center;
  background-size: cover;
  position: relative;
}

.hero-slider .hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-slider .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: 'Herr Von Muellerhoff', cursive;
  font-size: 8rem;
  font-weight: 300;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}
.hero h2 {
  font-size: 3.0rem;
  font-weight: 900;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

@media (min-width: 768px) {
  .hero h2 {
    width: 60%;
    margin: auto auto;
  }
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 40px auto 0 auto;
}




.aspect-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* 16:9 Seitenverhältnis */
  overflow: hidden;
  border-radius: 0.5rem; /* optional, wie Bootstrap .rounded */
  box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.15); /* optional, wie Bootstrap .shadow */
}
@media only screen and (max-width: 576px) and (orientation: portrait) {
  .aspect-wrapper {
    aspect-ratio: 16 / 13; 
  }
  #uhrenSchmuckCarousel.mt-5 {
    margin-top: 0rem !important;
  }
}

.aspect-wrapper img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  min-height: 100%;
}

/* Goldener Diamant als großes transparentes Hintergrund-Ornament hinter den Textspalten */
.section > .container > .row > div:first-child {
  position: relative;
  z-index: 1;
  padding: 2rem;
  overflow: visible;
}

.background-gem {
  position: absolute;
  top: 50%;
  left: 50%;
  background: url('../img/diamond.svg') no-repeat center center;
  background-size: contain;
  width: 500px;
  height: 500px;
  opacity: 0.1;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.background-gem.background-mirrored {
  transform: translate(-50%, -50%) scaleX(-1);
}

.section {
  padding: 4rem 0;
  border-top: 1px solid #d4af37;
}

.section:nth-of-type(odd) {
  background-color: #111;
  color: #fff;
}

.section:nth-of-type(even) {
  background-color: #000;
  color: #fff;
}


.bg-image {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.18; /* Helligkeit des Hintergrundbilds */
  z-index: -1;
  filter: blur(5px);
}

.bg-image > .container {
  position: relative;
  z-index: 2;
}

#pelze::before {
  background-image: url("../img/old/pelze-4562830.jpg");
}

#uhren-schmuck::before {
  background-image: url("../img/pexels-ferarcosn-190819.jpg");
}

#porzellan::before {
  background-image: url("../img/pexels-vedanti-66315-241886.jpg");
}

#muenzen-barren::before {
  background-image: url("../img/scottsdale-mint-snIOqeWlQGU-unsplash-sm-min.jpg");
}
#kontakt::before {
  background-image: url("../img/pawel-czerwinski--0xCCPIbl3M-unsplash-sm-min.jpg");
}

footer::before {
  background-image: url("../img/tuva-mathilde-loland-tszceVXBPos-unsplash-sm-min.jpg");
}

.stoerer {
  background-color: #d4af37;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.stoerer .background-gem {
  width: 1500px;
  height: 1500px;
}

.stoerer a {
  color: #fff;
}

.stoerer a:hover {
  color: #eee;
  text-decoration: none;
}


/* Geschwungener, animierter Divider */
.section-divider {
  height: 20px;
  margin: 0rem 0 1rem 0;
  background: none;
  position: relative;
  overflow: visible;
}
.section-divider svg {
  display: block;
  width: 100%;
  height: 20px;
  fill: none;
  stroke: #d4af37;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 180;
  stroke-dashoffset: 180;
  transition: stroke-dashoffset 1s ease-out;
}
.section-divider.visible svg {
  stroke-dashoffset: 0;
}

.section h2 {
  font-size: 3.5rem;
  margin-bottom: 0rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .section h2 {
    font-size: 2.5rem;
  }
}

.section img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.contact-form label {
  font-weight: 500;
}

footer {
  padding: 2rem 0;
  text-align: center;
  background-color: #111;
  font-size: 0.9rem;
  color: #ccc;
  border-top: 1px solid #333;
}


/* Bilder mit Schattenanimation bei Hover */
.img-card {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
/*
.img-card:hover {
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
  transform: translateY(-5px);
}
*/
.img-card img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  transition: inherit;
}

@media only screen and (max-width: 576px) and (orientation: portrait) {
  .top-bar .phone-numbers {
    display: none;
  }
  .hero {
    height: calc(100vh - var(--header-height) - env(safe-area-inset-bottom));
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 4rem;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  .top-bar .container {
    flex-direction: column;
    text-align: center;
  }

  .top-bar .phone-numbers {
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.5rem;
    display: none;
  }
}

@media only screen 
  and (max-width: 917px) 
  and (orientation: landscape) {
    .hero h1 {
      font-size: 4rem;
    }
    .hero h2 {
      font-size: 1.7rem;
    }
    .hero p {
      margin-top: 10px;
  }
}