/*npx tailwindcss -i ./html/src/input.css -o ./html/src/output.css --watch*/



/*@import "tailwindcss";*/

h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
}

.filter {
    background: rgba(29, 53, 97, 0.7);
}

.filter-light {
    background-color: rgba(29, 53, 97, 0.5);
}

.filter-dark {
    background-color: rgba(29, 53, 97, 0.8);
}

.scrolled {
    background-color: rgba(29, 53, 97, 0.8);
}

/*--------Button yellow*/

.btn-hell  {
    background-color: #FEC620;
    border: #FEC620 solid 1px;
    position: relative;
    color: #1D3561;
    z-index: 2;
    overflow: hidden;
    transition: color 0.4s ease;
}

.btn-hell:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
    z-index: -1;
}

.btn-hell:hover {
    background-color: transparent;
}

.btn-hell:hover:after {
    transform: scaleY(1);
}

/*--------Button dark*/

.btn-dark  {
    background-color: #1D3561;
    border: #1D3561 solid 1px;
    border-bottom: 2px solid #009BDD;
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: color 0.3s ease;
}

.btn-dark:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #009BDD;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
    z-index: -1;
}

.btn-dark:hover {
    border-color: #009BDD;
}

.btn-dark:hover:after {
    transform: scaleY(1);
}

/*----Button middle*/

.btn-middle {
    background-color: #009BDD;
    border: #009BDD solid 1px;
    border-bottom: 2px solid #1D3561;
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: color 0.3s ease;
}

.btn-middle:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1D3561;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
    z-index: -1;
}

.btn-middle:hover {
    border-color: #1D3561;
}

.btn-middle:hover:after {
    transform: scaleY(1);
}

    /*------Button transparent*/

.btn-transparent {
    border: 1px solid white;
    border-bottom: 2px solid #FEC620;
    background-color: transparent;
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: color 0.3s ease;
}

.btn-transparent:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FEC620;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
    z-index: -1;
}

.btn-transparent:hover {
    color: #1D3561;
    border-color: #FEC620;
}

.btn-transparent:hover:after {
    transform: scaleY(1);
}
/*----------Video btn-----*/

.lyt-playbtn {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px!important;
    height: 80px!important;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
	background-image:none!important;
    border-radius: 50%;
    border: 2px solid white!important;
}

.lyt-playbtn:after {
	content: "";
  	border-style: solid;
  	border-width: 15px 0 15px 25px;
  	border-color: transparent transparent transparent #fff;
  	margin-left: 30px;
	display:block;
}


/*----------video-----*/

.video-js video {
    object-fit: cover;
}

.programm_video video {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.archive_close-x:before,
.archive_close-x:after {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: #1D3561;
    bottom: 50%;
    right: -50%;
    transform-origin: center;
}
.archive_close-x:before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.archive_close-x:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}


.menu_burger-change .burger-part-two {
    display: none;
}

.menu_burger-change .burger-part-one {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu_burger-change .burger-part-two {
    opacity: 0;
}

.menu_burger-change .burger-part-three {
    transform: rotate(-45deg) translate(5px, -5px);
}

.active {
    border-bottom: solid 1px #FEC620;
    color: #FEC620;
}


.dates_item-active {
    background-color: white;
}


.dates_item-active span{
    background-color: #FEC620;
}

.dates_close-x:before,
.dates_close-x:after {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: white;
    bottom: 18px;
    left: 18px;
    transform-origin: center;
}
.dates_close-x:before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.dates_close-x:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}


.address_copied {
    color: green;
}

.dates_content {
    background-color: rgba(0, 155, 221, 0.6);
}

.face_title {
	align-items: end;
}



/*----------Clock programm ----------*/

.program_slider .program_item:first-child,
.program_slider .program_item:nth-child(2),
.program_slider .program_item:nth-child(3) {
    display: block;
}

.program_item_active .program_box {
    background-color: #FEC620;
    box-shadow: 0 0 10px #FEC620;
}

.program_item_active span {
    color: #1D3561;
}


.timer_termin {
    content: url("/img/dont-v1.png");
}
.timer_termin:hover {
    content: url("/img/dont-v4.png");
}

.photos {
    overflow: hidden;
    user-select: none;
    flex-shrink: 0;
    display: flex;
    gap: 24px;
}

.photos_go_one {
    width: max-content;
    animation: slide 80s linear infinite;
    display: flex;
}

.photos_go_two {
    width: max-content;
    animation: slide 80s linear infinite reverse;
    display: flex;
}

#datesContent div:first-child {
    background-color: white;
}

#datesContent div:first-child span {
    background-color: #FEC620;
}


.archiver_content .archiver_item:nth-of-type(4n+1) {
    border-color: #1D3561;
}

.archiver_content .archiver_item:nth-of-type(4n+1) .archive_popup ,
.archiver_content .archiver_item:nth-of-type(4n+1) .archiver_download{
	background-color: #1D3561;
}

.pl-logo {
	padding-left: 2px;
}

.place_logo {
  opacity: 0;
  transform: translateY(-20px) scale(0.9);
  animation: logoAppear 1s ease forwards 0.5s;
}

@keyframes logoAppear {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.members:last-child {
    margin-right: auto;
}

.place_test {
	max-width: 800px;
  margin: 50px auto 0;
}

.place_link {
	width: 220px;
	margin: 50px auto 0;
}

.hero-content,
.hero-content-author{
	opacity: 0; transform: translateY(50px);
 	animation: fadeInUp 1s ease-out 0.5s forwards;
 }

 @keyframes fadeInUp {
 	to { opacity: 1; transform: translateY(0); }
 }

.face_big {
	min-height: 91vh;
}

/* Moderne Hover-Effekte für deine bestehenden Klassen */
    .road_item {
        background: white;
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        border-top: 4px solid transparent;
    }

    .road_item:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        border-top-color: #007bff;
    }

    .road_item:has(.road_popup:hover) {
        border-top-color: #007bff;
    }

    /* Popup Positionierung verbessern */
    .train_road {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .road_content { grid-template-columns: 1fr; gap: 2rem; }
        .road_item { padding: 2rem 1rem; }	

    }

.train_road {
	top: 7vh;
	width: 100%;
}


/* ICL */




.gallery-thumbs {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
	-ms-overflow-style: none;
}

 .gallery-thumbs::-webkit-scrollbar {
    display: none;
}
.thumb-item {
 	flex: 1;
    height: 550px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    filter: brightness(0.7);
    border: 1px solid transparent;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-item.active,
.thumb-item:hover {
    opacity: 1;
    filter: brightness(1);
    z-index: 10;
	flex: 3;
}

.map {
	background-color: #f8fafc;
	padding: 6rem 0;
}

.hotels {
	padding: 6rem 0;
}

#map {
	max-width: 1000px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.icl-item-action {
        background-color: #f8fafc;
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
        box-shadow: inset 0 10px 40px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        border-top: 4px solid transparent;
    }

@keyframes float {
  0% { transform: translateY(0px);}
  50% { transform: translateY(-50px);}
  100% { transform: translateY(0px);}
}

.icl-item-action img {
	cursor:pointer;
}

.icl-item-action img:hover {
  animation: float 2s ease-in-out infinite;
}

.notes {
 background-color: #f8fafc;
}

.notes_item {
	background-color: white;
   box-shadow: 0 10px 40px rgba(0,0,0,0.08);
   transition: all 0.3s ease;
   border-top: 4px solid #007bff;
}

.notes_popup {
   box-shadow: 0 5px 5px -2px rgba(0,0,0,0.08);
   transition: all 0.3s ease;
}

.notes_title_text.hide {
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s;
	display:none;
}

/* Responsive */
    @media (min-width: 768px) {
		.notes_item:hover {
		   transform: translateY(-8px);
		   box-shadow: 0 20px 60px rgba(0,0,0,0.15);
		}
    }

.scroll-arrow {
  border-radius: 100%;
  border: 3px solid #FEC620;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  display:block;
  position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%);
  animation: bounce 2s infinite;
}

@keyframes bounce {
   0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
   40% { transform: translateX(-50%) translateY(-10px); }
   60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-arrow::before, .scroll-arrow::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #FEC620;
  bottom: 40%;
  transform-origin: center;
}
.scroll-arrow::before {
  transform: translate(-50%, -50%) rotate(30deg);
  left: 31%;
}
.scroll-arrow::after {
  transform: translate(-50%, -50%) rotate(-30deg);
  left: 70%;
}


.cookie-card {
  width: min(90%, 420px);
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  border-top: 5px solid #1677ff;
  font-family: Arial, sans-serif;
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1111;
}

.cookie-card h2 {
  margin: 0 0 12px;
  color: #1f2f8f;
}

.cookie-card p {
  margin: 0 0 20px;
  color: #444;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  border: none;
  padding: 12px 18px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn-accept {
  background: #1677ff;
  color: #fff;
}

.btn-reject {
  background: #e9eef8;
  color: #1f2f8f;
}

.btn:hover {
  transform: translateY(-2px);
}