/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 01 2026 | 11:01:26 */
/* Background Oriental */
.background-oriental-1 {
  background-color: #151515; /* Hintergrund dunkel, damit weiße Linien sichtbar sind */
  background-size: 30px 30px;
  background-repeat: repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpolygon points='40,0 50,30 80,40 50,50 40,80 30,50 0,40 30,30' fill='none' stroke='%23ffffff' stroke-width='2' stroke-opacity='0.1'/%3E%3C/svg%3E");
}

/* Scroll to Top*/ 

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: -70px;
  width: 50px;
  height: 50px;
  border: 0 !important;
  border-radius: 50%;
  background: #fff !important;
  cursor: pointer;
  opacity: 0.8;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: right 0.3s ease-in-out, background 0.3s ease-in-out;
}

.scroll-top.visible {
  right: 30px;
}

@media (hover: hover) {
  .scroll-top:hover {
    background: #000 !important;
  }

  .scroll-top:hover .arrow {
    border-color: #ffffff !important;
  }
}

/* Pfeil absolut zentriert */
.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%) rotate(-135deg);
  border: solid #382718;
  border-width: 0 3px 3px 0;
  transition: border-color 0.3s ease-in-out;
  z-index: 2;
  margin-top: 3px;
}

.progress-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  z-index: 1;
  pointer-events: none;
}

/* Home Animation */

.cta-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 35px;
  position: relative;
  z-index: 30;
}

@media screen and (min-width: 1921px) {
  .cta-row {
  margin-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  .cta-row {
    gap: 14px;
  }
}

.cta-link {
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.05rem !important;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

/* Start-Zustand */
.cta-white {
  background-color: #720e0e;
  color: #fff;
  border-color: #720e0e;
}

.cta-black {
  background-color: #000;
  color: #fff;
  border-color: #000;
}

/* Hover im Start-Zustand */
body:not(.scrolled) .cta-white:hover {
  background-color: #fff !important;
  color: #720e0e !important;
  border-color: #720e0e !important;
}

body:not(.scrolled) .cta-black:hover {
  background-color: #fff !important;
  color: #000 !important;
  border-color: #000 !important;
}

/* Hover im Scroll-Zustand */
body.scrolled .cta-link:hover {
  background-color: #000 !important;
  color: #fff !important;
  border-color: #000 !important;
}

/* Mobile / Tablet <1025px – immer gleiche Farbe + Hover */
@media screen and (max-width: 1024px) {
  .cta-white,
  .cta-black {
    background-color: #720e0e !important;
    color: #fff !important;
    border-color: #720e0e !important;
  }

  .cta-white:hover,
  .cta-black:hover {
    background-color: #fff !important;
    color: #720e0e !important;
    border-color: #720e0e !important;
  }
}


