/* ===========================
   GLOBAL DARK THEME
=========================== */

:root {
  --bg-dark: #111;
  --bg-box: #1a1a1a;
  --text-light: #eee;
  --accent: #c49b3f;
  --accent-hover: #b08734;
  --border: #333;
  --error: #d9534f;
  --success: #4cae4c;
  --font: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font);
  display: flex;
  justify-content: center;
  position: relative; /* IMPORTANT for modal stacking */
  z-index: 0;
}

.page-wrapper {
  width: 70vw;
  background: var(--bg-box);
  min-height: 100vh;
  padding-bottom: 3rem;
}

@media (max-width: 1024px) {
  .page-wrapper {
    width: 90vw;
  }
}

@media (max-width: 768px) {
  .page-wrapper {
    width: 100vw;
  }
}

/* ===========================
   HEADER & NAVIGATION
=========================== */

header {
  background: #000;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 20;
}

.logo {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

nav {
  position: relative;
  display: flex;
  align-items: center;
}

/* Desktop Navigation */

.nav-list {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-list a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
}

.nav-list a:hover {
  color: var(--accent);
}

/* ===========================
   LANGUAGE SWITCHER (DESKTOP)
=========================== */

.language-switcher {
  display: flex;
  gap: 0.6rem;
  list-style: none;
  margin-left: 1.2rem;
  align-items: center;
}

.language-switcher li {
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.language-switcher li:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.language-switcher img {
  width: 22px;
  height: 22px;
  border-radius: 3px;
  display: block;
}

/* ===========================
   FULL WIDTH MOBILE MENU
=========================== */

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 0;
  overflow: hidden;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: height 0.35s ease;
}

.mobile-menu.open {
  height: 100vh;
}

.mobile-nav-list {
  list-style: none;
  margin-top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  text-align: center;
}

.mobile-nav-list a {
  color: var(--text-light);
  font-size: 1.4rem;
  text-decoration: none;
  font-weight: 500;
}

.mobile-nav-list a:hover {
  color: var(--accent);
}

.mobile-lang-list {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}

.mobile-lang-list img {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-lang-list img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Hide desktop nav on mobile */

@media (max-width: 768px) {
  .nav-list,
  .desktop-lang {
    display: none;
  }
}

/* ===========================
   HAMBURGER MENU
=========================== */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 32px;
  height: 26px;
  cursor: pointer;
  z-index: 2000;
  background: transparent;
  border: none;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}

/* ===========================
   SECTIONS
=========================== */

main {
  padding: 2rem;
}

section {
  margin-bottom: 3rem;
}

h1, h2 {
  margin-bottom: 1rem;
  color: var(--accent);
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}
.trust-section {
  display: grid;
  gap: 2rem;
  margin: 4rem auto;
  max-width: 1300px;
  padding: 0 1rem;
}

/* Mobile / Tablet: automatisch 1–2 Spalten */
.trust-section {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Desktop: exakt 5 Spalten */
@media (min-width: 1100px) {
  .trust-section {
    grid-template-columns: repeat(5, 1fr);
  }
}

.trust-item {
  text-align: center;
  color: #ddd;
}

.trust-item i {
  font-size: 2rem;
  color: #c9a86a;
  margin-bottom: 0.6rem;
}

.trust-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: #fff;
}

.trust-item p {
  font-size: 0.9rem;
  color: #bbb;
}



/* ===========================
   SLIDER
=========================== */

.slider {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-top: 1rem;
}

.slider-inner {
  position: relative;
  width: 100%;
  padding-top: 75%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0.7rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  z-index: 3;
}

.slider-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
  border-radius: 50%;
  z-index: 4;
}

.slider-button.prev {
  left: 10px;
}

.slider-button.next {
  right: 10px;
}

/* ===========================
   SLIDER OVERLAY LOGO + GLOW
=========================== */

.slider-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 30%;
  pointer-events: none;
  opacity: 0.95;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.55));
}

@media (max-width: 768px) {
  .slider-overlay {
    width: 45%;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.45));
  }
}

/* ===========================
   GALLERY
=========================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}

.gallery-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
/* ===========================
   FAQ Section 
   ===========================*/
#faq {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.faq-item {
  border-bottom: 1px solid #444;
  padding: 0.8rem 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #eee;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.6rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(45deg);
}

.faq-answer { 
  overflow: hidden; 
  height: 0; 
  opacity: 0; 
  transition: height 0.22s ease-out, opacity 0.22s ease-out; 
  } 
.faq-answer.open { 
  opacity: 1; 
  }

.faq-answer p {
  margin: 0.5rem 0 1rem;
  color: #ccc;
  line-height: 1.5;
}

/* ===========================
   CONTACT FORM
=========================== */

#contactForm {
  max-width: 600px;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;

  /* Fade-Out Animation */
  transition: opacity 0.6s ease;
}

#contactForm.fadeOut {
  opacity: 0;
}

/* Labels */
#contactForm label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

/* Inputs */
#contactForm input,
#contactForm textarea {
  width: 100%;
  background: #222;
  border: 1px solid #444;
  color: #eee;
  padding: 0.8rem;
  border-radius: 6px;
  font-size: 1rem;
}

/* Button */
#contactForm button {
  background: var(--accent);
  color: #111;
  padding: 0.9rem 1.4rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
}

#contactForm button:hover {
  background: var(--accent-hover);
}

/* ===========================
   SUCCESS / ERROR MESSAGE
=========================== */

#formMessage {
    margin-top: 25px;      /* Abstand nach oben */
    margin-bottom: 25px;   /* Abstand nach unten */
    padding: 14px 20px;
    border-radius: 6px;
    font-weight: 600;

    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;

    min-height: 40px;
    display: block;
}

#formMessage.show {
    opacity: 1;
    transform: translateY(0);
}

#formMessage.success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

#formMessage.error {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* ===========================
   ANIMIERTES HÄKCHEN
=========================== */

.success-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #28a745;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    animation: popIn 0.4s ease forwards;
}

.success-icon svg {
    width: 16px;
    height: 16px;
    fill: white;
}

@keyframes popIn {
    0% { transform: scale(0); opacity: 0; }
    80% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); }
}





/* WhatsApp Button 
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transform: translateY(0);
}

.whatsapp-btn .wa-icon svg {
  width: 33px;
  height: 33px;
  fill: #fff;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  transform: translateY(-3px);
}

.whatsapp-btn:active {
  transform: scale(0.96);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}


#contact .whatsapp-btn {
  margin: 1rem 0;
}
*/
/* WhatsApp Button – Grey Gradient Version */
.whatsapp-btn.grey {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;

  /* Grey gradient like Webwise */
  background: linear-gradient(145deg, #6e6e6e, #4a4a4a);
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);

  transition: all 0.25s ease;
}

/* WhatsApp Icon */
.whatsapp-btn.grey .wa-icon svg {
  width: 40px;
  height: 40px;
  fill: #fff;
}

/* Hover effect */
.whatsapp-btn.grey:hover {
  background: linear-gradient(145deg, #7a7a7a, #555);
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
  transform: translateY(-3px);
}

/* Click effect */
.whatsapp-btn.grey:active {
  transform: scale(0.96);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}


.honeypot {
  display: none;
}

/* ===========================
   MODAL (Fullscreen Image Viewer)
=========================== */

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.modal.open {
  display: flex;
}

.modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.modal-close,
.modal-prev,
.modal-next {
  position: absolute;
  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  border-radius: 4px;
  z-index: 2;
}

.modal-close {
  top: -40px;
  right: 0;
}

.modal-prev,
.modal-next {
  top: 50%;
  transform: translateY(-50%);
  padding: 0.5rem 0.8rem;
}

.modal-prev {
  left: -50px;
}

.modal-next {
  right: -50px;
}

@media (max-width: 768px) {
  .modal-prev {
    left: -30px;
  }
  .modal-next {
    right: -30px;
  }
}

/* ===========================
   FOOTER
=========================== */

footer {
  background: #000;
  padding: 2.5rem 2rem;
  margin-top: 3rem;
  border-top: 1px solid #222;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footerlogo img{
  max-width:200px;
  height: auto;
}  
	
.footer-section {
  flex: 1;
  min-width: 220px;
}

.footer-section h3 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section p,
.footer-section a {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.4rem;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-section ul li a:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
  }
}
/* MAP SIZE */
#map {
  height: 700px; /* doppelte Höhe */
  border-radius: 8px;
  margin-top: 1rem;
}

/* Mobile optimiert */
@media (max-width: 768px) {
  #map {
    height: 400px;
  }
}
