body {
    margin: 0;
	
    padding: 0;
    font-family: "Segoe UI Light", sans-serif;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align content at the top */
    background-color: black;
}

@media (max-width: 768px) {
body {
  margin: 0;
  padding: 50px 0;
  font-family: "Segoe UI Light", sans-serif;
  color: white;
  text-align: center;
  background-color: black;
}

}
@media (max-width: 1200px) {
  body {
    padding: 40px 10px;
  }
}

.content {
  
  color: white;
  padding: 40px;
  border-radius: 15px;
  max-width: 1000px;
  width: 95%;
  text-align: center;
  overflow-y: auto;
  word-wrap: break-word;
  hyphens: auto;
  margin: 0 auto; /* <-- this ensures horizontal centering */
  /*margin-top: 400px;*/
  margin-top: 20%;	
}

@media (max-width: 768px) {
  .content {
    padding: 40px 40px 40px 40px; /* Equal padding left & right */
	margin-top: 0;
  }
}

/* ============================ */
/* HAMBURGER BUTTON */
/* ============================ */

.hamburger {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 35px;
  height: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 2000;
}

.hamburger span {
  height: 4px;
  background: #DDB86E;
  border-radius: 4px;
  transition: 0.3s;
}

/* ANIMATION WENN AKTIV */
.hamburger.active span:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-12px) rotate(-45deg);
}


/* ============================ */
/* SIDEBAR */
/* ============================ */

.sidebar {
  position: fixed;
  top: 0;
  left: -250px; /* hidden */
  width: 250px;
  height: 100%;
  background: #1a1a1a;
  padding-top: 80px;
  transition: 0.4s ease;
  z-index: 1500;
  box-shadow: 2px 0 10px rgba(0,0,0,0.6);
}

.sidebar.open {
  left: 0;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  margin: 25px 0;
}

.sidebar ul li a {
  text-decoration: none;
  color: #DDB86E;
  font-size: 1.2rem;
  transition: 0.3s;
}

.sidebar ul li a:hover {
  color: white;
}


/* ========================= */
/*    bakcground Styles  	 */
/* ========================= */

#background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#background-container .top{
    position: fixed;
    top: 0 ;
    width: 100%;
    height: auto;
    z-index: +1; /* Keep it in the foreground */
    left: 50%;
    transform: translateX(-50%); /* Center horizontally */
}
#background-container .bottom {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: auto;
    z-index: +1; /* Keep it in the foreground */
    left: 50%;
    transform: translateX(-50%); /* Center horizontally */
}

#background-container .middle {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    z-index: -2; /* Keep it behind other content */
    left: 50%;
    transform: translateX(-50%); /* Center horizontally */
    background-size: cover; /* Ensure the middle part fills properly */
    background-position: center; /* Center the middle background */
}

/* ========================= */
/* 		    pic Styles  	 */
/* ========================= */

.wappen {
    width: 100px; /* Set desired width */
    height: auto; /* Maintain aspect ratio */
    position: relative; /* Optional: Adjust position if necessary */
    margin: 80px auto; /* Center the image horizontally */
}
.shhh {
    width: 60px; /* Set desired width */
    height: auto; /* Maintain aspect ratio */
    position: relative; /* Optional: Adjust position if necessary */
    margin: 40px auto; /* Center the image horizontally */

}

.dresscode-img {
    width: 100%; /* Passt das Bild an die Breite des Containers an */
    max-width: 600px; /* Begrenzung der maximalen Größe */
    height: auto; /* Beibehaltung des Seitenverhältnisses */
    display: block;
    margin: 20px auto; /* Zentrierung mit Abstand */
    border-radius: 10px; /* Leichte Abrundung für einen eleganten Look */
}

/* ========================= */
/* 		   section Styles  	 */
/* ========================= */

section {
    text-align: center;
    margin:  0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05); /* Subtiler Kontrast */
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(221, 184, 110, 0.2);
    width: 95%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
  section {
    padding: 20px 0; /* Equal padding left & right */
  }
}
@media (max-width: 1200px) {
  section {
    padding: 50px 0;
  }
}

/* ========================= */
/* 	 separation line Styles  */
/* ========================= */

.section-divider {
    width: 80%;
    height: 4px;
    background: linear-gradient(to right, transparent, #DDB86E, transparent);
    margin: 40px auto;
    border-radius: 2px;
}

/* ========================= */
/* 	       Text Styles       */
/* ========================= */

h1 {
    text-transform: uppercase;
    font-family: 'CustomFont';
    color: #DDB86E;
    font-size: 32px;
    letter-spacing: 1px;
    animation: glow 2s ease-in-out infinite alternate;
	margin-bottom: 0;
	margin-top: 0;
}

h2 {
    font-size: 22px;
    margin-top: 20px;
    color: #DDB86E;
    text-transform: uppercase;
}

.text{
	margin-bottom: 40px;
}

p {
    font-size: 1rem;
    line-height: 1.6;
}

a {
  color: #DDB86E;
  text-decoration: none; /* Optional: removes underline */
  transition: color 0.3s ease;
}

a:hover {
  color: white; /* Or a lighter gold, if you'd prefer */
  text-decoration: underline; /* Optional: underline on hover */
}


/* ========================= */
/* 		   List Styles  	 */
/* ========================= */

ul {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block;
}

ul li {
    padding: 10px 0;
    font-size: 18px;
    position: relative;
    padding-left: 30px;
}

ul li::before {
    content: '\2022';
    color: #DDB86E;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: 5px;
}

/* ========================= */
/*    Countdown Styles  	 */
/* ========================= */

.highlight-date {
    font-family: 'CustomFont'; /* Replace with your chosen font */
    color: #DDB86E; /* Use your desired color */
    font-weight: bold; /* Optional: Add emphasis */
    letter-spacing: 1px;
}

.countdown {
	font-size: 44px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(221, 184, 110, 0.8);
    }

@media (max-width: 768px) {
  .countdown {
	font-size: 36px;
    }
	.countdownTimer {
	font-size: 28px;
    }
}
/* Animation für einen sanften Leuchteffekt */
@keyframes glow {
    0% {
        text-shadow: 0 0 5px rgba(221, 184, 110, 0.6);
    }
    100% {
        text-shadow: 0 0 20px rgba(221, 184, 110, 1);
    }
}



/* ========================= */
/* 	      Map Styles         */
/* ========================= */

.event-details-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.event-details {
  text-align: left;
  max-width: 600px;
}

.event-details p {
  margin: 10px 0;
  font-size: 1.1rem;
}

.gold-icon {
  color: #DDB86E;
  margin-right: 20px;
  
}

.map-responsive {
  position: relative;
  width: 100%;
  max-width: 800px; /* Optional max width for large screens */
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(221, 184, 110, 0.3);
  overflow: hidden;
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 768px) {
	.event-details p {
		font-size: 0.95rem;
	}
}

/* Only on small screens, make it responsive */
@media (max-width: 768px) {
  .map-responsive {
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
  }

  .map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }
}


/* ========================= */
/* 	   Acordeon Styles       */
/* ========================= */

#accommodationInfoTitle{
	color: #DDB86E;
}
#accommodationImportant{
	color: #DDB86E;
}
.accordion-toggle {
  background-color: transparent;
  color: #DDB86E;
  border: 2px solid #DDB86E;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 0;
  transition: background-color 0.3s ease;
}

.accordion-toggle:hover {
  background-color: #DDB86E;
  color: black;
}

.dresscode-carousel {
    position: relative;
    max-width: 600px;
    margin: 20px auto;
    overflow: hidden;
}

.carousel-images {
    position: relative;
    display: flex;
    justify-content: center;
}

.dresscode-slide {
    display: none;
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
}

.dresscode-slide.active {
    display: block;
}

.dresscode-carousel button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: #DDB86E;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 5px;
    z-index: -1;
}

.dresscode-carousel .prev {
    left: 10px;
}

.dresscode-carousel .next {
    right: 10px;
}

.room-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}

.room-box {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    flex: 1 1 300px; /* Responsive width */
    max-width: 450px;
    box-shadow: 0 0 10px rgba(221, 184, 110, 0.2);
    text-align: center;
}

.room-box h3 {
    color: #DDB86E;
    font-size: 20px;
    text-align: center;
    margin-bottom: 15px;
}

.room-box ul {
    list-style: none;
    padding-left: 0;
}

.room-box li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    font-size: 16px;
}

.room-box li::before {
    content: '•';
    color: #DDB86E;
    position: absolute;
    left: 0;
}
.roomStrong {
color: #DDB86E;
}
.arrival-box {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(221, 184, 110, 0.2);
  padding: 20px;
  margin: 30px auto;
  max-width: 600px;
}

.arrival-box h4 {
  color: #DDB86E;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.arrival-times p {
  margin: 5px 0;
  font-size: 1rem;
  color: white;
}

#accommodationNote {
  margin-top: 15px;
  font-size: 0.95rem;
}



/* ========================= */
/* 	   Dresscode Styles      */
/* ========================= */

.dresscode-carousel {
    position: relative;
    max-width: 600px;
    margin: 20px auto;
    overflow: hidden;
	z-index: 0;
}

.carousel-images {
    position: relative;
    display: flex;
    justify-content: center;
}

.dresscode-slide {
    display: none;
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
}

.dresscode-slide.active {
    display: block;
}

.dresscode-carousel button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: #DDB86E;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 5px;
    z-index: 2;
	transition: transform 0.3s ease;
}

/* Hover Effect */
.dresscode-carousel button:hover {
    transform: translateY(-50%) scale(1.3); /* grows from center without shifting */
    box-shadow: 0 0 12px rgba(221, 184, 110, 0.8);
    color: white;
}

.dresscode-carousel .prev {
    left: 10px;
}

.dresscode-carousel .next {
    right: 10px;
}


/* ========================= */
/* 	   Timeline Styles       */
/* ========================= */
/*
.comingSoon{
	position: relative;
    max-width: 600px;
    margin: 20px auto;
    overflow: hidden;
	z-index: 0;
	position: relative;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
  .comingSoon {
	max-width: 200px;
    position: relative;
    display: flex;
    justify-content: center;
  }
*/
.timeline-item-ss {
  display: none; /* hidden by default */
}

.timeline {
  position: relative;
  margin: 50px auto;   /* centers horizontally */
  padding: 20px 0;
  width: 100%;
  max-width: 600px;
  z-index: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  /*left:  34.3%;*/
  /*left: 50%;*/
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: #DDB86E;
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 30px 0;
  position: relative;
}

.timeline-time {
  width: 45%;
  text-align: right;
  padding-right: 20px;
  color: #DDB86E;
  font-weight: bold;
}

.timeline-content {
  width: 45%;
  text-align: left;
  padding-left: 20px;
  color: white;
}

.timeline-item-ooo {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 30px 0;
  position: relative;
}

.timeline-time-ooo {
  width: 45%;
  text-align: left;
  padding-left: 20px;
  color: #DDB86E;
  font-weight: bold;
}

.timeline-content-ooo {
  width: 45%;
  text-align: right;
  padding-right: 20px;
  color: white;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 32%;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: #DDB86E;
  border-radius: 50%;
  z-index: 1;
}
.timeline-item-ooo::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 32%;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: #DDB86E;
  border-radius: 50%;
  z-index: 1;
}

.timeline-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #DDB86E;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -10; /* Weiter nach hinten als der Hintergrund */
}


@media (max-width: 768px) {
	
  .timeline-item-ss {
    display: flex;  /* or block, depending on layout */
  	justify-content: space-between;
  	align-items: flex-start;
  	margin: 30px 0;
  	position: relative;
  }
  
  .timeline-item-ooo {
    display: none; /* or flex, depending on your layout */
  }
	
  .timeline {
    padding: 0 20px;
    position: relative;
	left: -30px;
  }

  .timeline::before {
    left: 39px; /* line is nicely aligned with content */
    transform: none;
    width: 3px;
  }

  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding-left: 40px; /* gives space for the line and dot */
  }
	
   .timeline-item-ss {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding-left: 40px; /* gives space for the line and dot */
  }

  .timeline-item::before,.timeline-item-ss::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 20px; /* matches the line */
    width: 14px;
    height: 14px;
    background: #DDB86E;
    border-radius: 50%;
    z-index: 2;
  }
	
 .timeline-item-ss::before {
	 left:13px;
	}

  .timeline-time {
    width: 100%;
    text-align: left;
    font-weight: bold;
    color: #DDB86E;
    margin-bottom: 4px;
  }

  .timeline-content {
    width: 100%;
    text-align: left;
    font-size: 0.95rem;
  }
	
  .fas.fa-birthday-cake {
	color: #DDB86E;
  margin-left: 10px;
  min-width: 20px;
}
}

}

/* ========================= */
/* 	     Menü Styles         */
/* ========================= */

#menu {
  width: 100%;
}

.menu-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 30px 0;
  padding: 20px 0;
  align-items: stretch; /* ✅ Makes all children same height */
}

.menu-box {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 45%;
  max-width: 400px;
  box-shadow: 0 0 10px rgba(221, 184, 110, 0.2);
  text-align: left;
  margin-bottom: 20px;

  display: flex;
  flex-direction: column;
  justify-content: space-between; /* ✅ Distribute top content and image gallery */
}

.menu-box ul {
  flex-grow: 1; /* ✅ Let the list take available space */
  list-style: none;
  padding-left: 0;
}

@media (max-width: 1200px) {
  .menu-box {
    flex: 1 1 45%;
    max-width: 45%;
  }
}

@media (max-width: 768px) {
  .menu-box {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.menu-box h3 {
    color: #DDB86E;
    font-size: 20px;
    text-align: center;
    margin-bottom: 15px;
}

.menu-box li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    font-size: 16px;
}

.menu-box li::before {
    content: '•';
    color: #DDB86E;
    position: absolute;
    left: 0;
}
.menuStrong {
color: #DDB86E;
}
.timeline-content .icon {
  color: #DDB86E;
  margin-right: 10px;
  min-width: 20px;
}

.timeline-content-ooo .icon {
  color: #DDB86E;
  margin-left: 10px;
  min-width: 20px;
}
.fas.fa-birthday-cake {
	color: #DDB86E;
  margin-left: 10px;
  min-width: 20px;
}

/*Menü bilder*/
.menu-image-gallery {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.menu-image-gallery img {
    width: flex;
    max-width: 120px;
    border-radius: 10px;
    aspect-ratio: 1 / 1; /* Forces square */
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.menu-image-gallery img:hover {
    transform: scale(1.05);
}

#accommodation .menu-wrapper {
  margin-bottom: 20px;
}


/* ========================= */
/* 	  registration Styles    */
/* ========================= */
.registerForm{
	display: none;
}

.registration {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the form elements */
    justify-content: center; /* Vertically center the content */
}

.registration input {
    display: block;
    margin: 10px 0;
    color: #DDB86E;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
    max-width: 400px; /* Limiting width to 400px */
    border: none;
    font-size: 1rem;
    text-align: center;
}

/* Shared styling for all selects */
select {
  background-color: white;
  color: #999999; /* Default text color (placeholder) */
  padding: 10px;
  border: none;
  width: 100%;
  max-width: 400px;
  font-size: 1rem;


  /* Hide native arrow */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  /* Add custom arrow (SVG inline) */
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23DDB86E' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px 16px;

  padding-right: 35px; /* Make room for arrow */
  cursor: pointer;
}

/* When a value is selected (not placeholder), make text gold */
#roomChoice:valid,
#menuChoice:valid,
#allergyChoice:valid {
  color: #DDB86E;
}

/* Placeholder option stays grey */
#roomChoice option[value=""],
#menuChoice option[value=""],
#allergyChoice option[value=""] {
  color: #999999;
}

.registration select {
    display: block;
    margin: 10px 0;
    color: #999999;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
    max-width: 400px; /* Limiting width to 400px */
    border: none;
    font-size: 1rem;
    text-align: center;
}

.registration button {
    padding: 10px 10px 10px 10px;
    background-color: #121312;
    color: #DDB86E;
    border-color: #DDB86E;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    max-width: 400px; /* Align button width with input */
}

.registration button:hover {
    background-color: #2980b9;
}

/*---Flexbox styling---*/
.name-row {
	display: flex;
	gap: 10px;
	justify-content: center;
	width: 100%;
	max-width: 400px;
	margin: 0 auto 10px auto;
	flex-wrap: wrap;
}

.name-row input {
	flex: 1;
}

.registration input[type="email"] {
	width: 100%;
	max-width: 400px;
	padding: 10px 0 10px 0;
}

/*---Plus Button---*/
#addAttendeeBtn {
    font-size: 36px;
    color: #DDB86E;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.2s ease;
}

#addAttendeeBtn:hover {
    color: #fff;
    transform: scale(1.1);
}

/*---Minus Button---*/
#removeAttendeeBtn {
    font-size: 36px;
    color: #DDB86E;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.2s ease;
}

#removeAttendeeBtn:hover {
    color: #fff;
    transform: scale(1.1);
}

.add-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

/*---Textarea---*/
.allergy-box {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.allergy-box label {
  font-size: 1rem;
  color: #DDB86E;
  margin-bottom: 10px;
}

.allergy-box textarea {
  width: 100%;
  max-width: 400px;
  min-height: 100px;
  padding: 10px;
  font-size: 1rem;
  font-family: inherit;
  color: #DDB86E;
  background-color: white;
  border: none;
  resize: vertical;
  box-sizing: border-box;
  text-align: left;
}

/*---atendee---*/
.attendee-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
}

.attendee-wrapper .name-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.attendee-wrapper .name-row input {
    flex: 1;
    padding: 10px;
    text-align: center;
    border: none;
    color: #DDB86E;
    background-color: white;
    font-size: 1rem;
}

.attendee-wrapper select.menu-choice {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    text-align: center;
    background-color: white;
    color: #999999;
    border: none;
    appearance: none;
}

.attendee-wrapper select.menu-choice:valid {
    color: #DDB86E;
}

.attendee-wrapper select.menu-choice option[value=""] {
    color: #999999;
}

.menu-select {
  width: 100%;
  max-width: 400px;
  margin: 10px auto;
  padding: 10px;
  background-color: white;
  color: #999999;
  font-size: 1rem;
  border: none;
  text-align: center;
  appearance: none;
  display: block;
}

.menu-select:valid {
  color: #DDB86E;
}

.menu-select option[value=""] {
  color: #999999;
}

.allergy-text {
  width: 100%;
  max-width: 400px;
  min-height: 80px;
  margin: 10px auto;
  padding: 10px;
  font-size: 1rem;
  font-family: inherit;
  background-color: white;
  color: #DDB86E;
  border: none;
  resize: vertical;
  box-sizing: border-box;
  display: block;
}

.form-links {
  display: flex;
  justify-content: space-between;
  max-width: 400px;
  width: 100%;
  margin: 10px auto;
}

.form-links a {
  font-size: 0.9rem;
  color: #DDB86E;
  text-decoration: none;
  transition: color 0.3s ease;
}

.form-links a:hover {
  color: white;
  text-decoration: underline;
}

/* ========================= */
/*        FAQ Styles    	 */
/* ========================= */

/* Section Title 
.section-title {
  color: #DDB86E;
  font-family: 'CustomFont', serif;
  text-align: center;
  margin-bottom: 30px;
}

/* FAQ Container */
.faq-container {
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(221, 184, 110, 0.2);
  max-width: 800px;
  margin: 0 auto;
}

/* FAQ Items */
.faq-item {
  margin-bottom: 25px;
}
#faqLocationImportant{
color: #DDB86E
}
.faq-question {
  justify-content: flex-start;
  font-size: 18px;
  font-weight: bold;
  color: #DDB86E;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: default;
}

.faq-answer {
  margin-left: 28px; 
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  margin-top: 10px;
}

/* Contact Details */
.contact-details {
  margin-top: 40px;
  text-align: center;
}

.contact-details a {
  color: #DDB86E;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ========================= */
/*     Geschenkidee Styles   */
/* ========================= */

#gift {
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(221, 184, 110, 0.2);
  max-width: 800px;
  margin: 0 auto;
}

#giftTitle {
  color: #DDB86E;
  text-align: center;
  margin-bottom: 25px;
}

#giftIntro,
#giftThanks {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
}

#giftHowTo {
  font-size: 18px;
  font-weight: bold;
  color: #DDB86E;
  margin: 25px 0 15px 0;
  text-align: center;
}

.gift-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gift-list li {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  padding-left: 28px;
  position: relative;
}

.gift-list li::before {
  content: "🎁";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  color: #DDB86E;
}

#gift a {
  color: #DDB86E;
  text-decoration: none;
  transition: color 0.3s ease;
}

#gift a:hover {
  color: #fff;
  text-decoration: underline;
}



/*  ========================= */
/* 	 language switcher Styles */
/*  ========================= */

.language-switcher {
    z-index: +2;
    position: fixed;
    top: 30px;
    right: 40px;
    color: white;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.language-switcher select {
    background-color: #121312;
    color: #DDB86E;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
}

.language-switcher select option {
    color: #DDB86E;
}

/* ========================= */
/* 	    carousel Styles      */
/* ========================= */

.carousel {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    width: auto; /* Adjust based on the number of slides */
    animation: scroll-carousel 60s linear infinite; /* Adjust duration for speed */
}

.carousel img {
    flex-shrink: 0;
    height: 200px; /* Set a consistent height */
    max-height: 200px; /* Prevent the image from exceeding this height */
    object-fit: contain; /* Ensures the entire image fits within the container */
    margin: 0; /* Removes any extra space around images */
}

/* Animation keyframes for constant scrolling */
@keyframes scroll-carousel {
    0% {
        transform: translateX(0);
    }
    100% {
       /* transform: translateX(-351.26%); /* Scroll halfway (1 duplicate set)32 pic in total */
		transform: translateX(-325%); /* Scroll halfway (1 duplicate set)22 pic in total */
    }

}


/* Style the horizontal line */
.divider {
    border: none;
    height: 6px;
    background-color: #DDB86E;
    margin: 20px 0;  /* Adds space above and below the line */
}

@font-face {
    font-family: 'CustomFont'; /* Name your font */
    src: url('assets/fonts/RitzFLF.ttf') format('truetype'); /* Path to your .ttf file */
    font-weight: normal; /* Optional: define the weight */
    font-style: normal; /* Optional: define the style */
}

/* @media query for big screens */
/* Large screens: Limit the image width to 1080px */
@media (min-width: 700px) {
    #background-container img {
        /*max-width: 1080px;*/
    }

    #background-container .bottom {
        display: none;
    }

}
/* @media query for small screens */
@media (max-width: 768px) {
    /* For small screens, set middle background to a fixed height */
    #background-container .middle {
        height: 1800px;
    }
	.wappen {
    width: 80px;
	}
	.carousel-track {
    animation: scroll-carousel 90s linear infinite; /* Adjust duration for speed */
}
    @keyframes scroll-carousel {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-1333%); /* Scroll halfway (1 duplicate set) */
        }

    }
  .countdown {
	font-size: 32px;
    }
	.countdownTimer {
	font-size: 24px;
    }
}