*{
  margin:0;
  padding:0;
  box-sizing: border-box;
}
html,body{
  overflow: hidden;
  background-color: #161616;
  text-align: center;
  height: 100%;
  font-family: 'general', fallback, 'japanese';
  scroll-behavior: smooth;
  overflow-x: hidden; /* Prevents horizontal scrolling */
  color:white;
}
@font-face {
  font-family: 'general';
  src: url(./fonts/inter/Inter.ttf);
}
@font-face {
  font-family: 'german';
  src: url(./fonts/Raleway/Raleway-VariableFont_wght.ttf);
}
@font-face {
  font-family: 'japanese';
  src: url(./fonts/Noto_Sans_JP/NotoSansJP-VariableFont_wght.ttf);
}
body p{
  /* font-family: Georgia, 'Times New Roman', Times, serif; */
  font-family: 'general', fallback, 'japanese';
}

main{
  position: fixed;
  top:0;
  left: 0;
  width:100%;
  height: 100%;
  overflow: scroll;
}

.header{
  position: fixed;
  width:100%;
  height: 100px;
  display: flex;
  align-items: center;
  padding :0 2vw ;
  z-index: 10;
  background-color: #161616;
  opacity: 1;
}
.container{
  position: relative;
  width: 100%;
  display: flex;
  gap: 10px;
  padding: 2vw 2vw;
  /*min-height: 100vh;*/
}
.column{
  flex:1;
  display: flex;
  flex-direction: column;
  gap:10px;
  /*min-height: 100%;*/
}
.bold{
  font-weight: bold;
}
.tab {
  display: inline-block;
  margin-left: 3em;
}
@media screen and (max-width: 768px){
  .tab{
    margin-left: 1em;
  }
}


img{
  width: 98%;
  border-radius: 5px;
  height: auto;
}
.post{
  position: relative;
  overflow: hidden;
  width:100%;
}
.post img{
  width: 98%;
  border-radius: 5px;
  height: auto;
}

.overlay{
  position: absolute;
  top:0;
  left: 0;
  width:100%;
  height:100%;
  background:#161616;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.5s;
  border-radius: 5px;
}

.post:hover .overlay{
  opacity: 1;
  cursor: pointer;
  background: transparent;
}

.post:hover img{
  opacity: 0.5;
  transition: 0.5s;
}

.scroll-container img:hover{
  opacity: 0.5;
  transition: 0.5s;
  cursor: pointer;
}



.post:hover .overlay h3 {
  opacity: 1;
  z-index: 1;
}

.homepage-title{
  align-items: center;
  margin: 0;
  text-align: justify;
  font-size: 24px;
  padding: 20px;
}

.homepage-container{
  display: flex;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  
}
@media screen and (max-width: 768px){
  .homepage-container{
    max-width: 768px;
  }
  .homepage-title{
    max-width: 786px;
  }
  .homepage-container .description1 .description2 p{
    font-size: 16px;
  }
}
.homepage-container .image1{
  flex: 1;
  padding-right: 20px;
}
.homepage-container .image2{
  flex: 1;
  padding-left: 20px;
}
.homepage-container .image1 .image2 img{
  max-width: 100%;
  height: auto;
  display: block;
}
.homepage-container .description1{
  flex: 2;
  text-align: justify;
}
.homepage-container .description2{
  flex: 2;
  text-align: justify;
}

.homepage-container .description1 .description2 p{
  font-size: 24px;
  line-height: 2;
}

/* Fullscreen */

.fullscreen-overlay{
  position:fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  display: none;
  transition: opacity 0.5s ease;
  opacity: 0;
  text-align: center;
}

#fullscreen-image{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(50%, 50%);
  max-width: 99%;
  max-height: 99%;
  display: block;
  margin: 0 auto;
  transition: transform 0.5s ease;
}
#fullscreen-description{
  opacity: 1;
  background-color: rgba(255, 255, 255, 1);
}


/* Navigator */

ul.topnav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}

ul.topnav li {
float: left;

}

ul.topnav li a {
display: block;
color: white;
text-align: center;
align-items: center;
padding: 14px 16px;
text-decoration: none;
cursor: pointer;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.nav-image{
  width: auto; /* Make the image fill the width of the nav item */
  height: 50px; /* Maintain the aspect ratio */
  border-radius: 5px;
}

.nav-title {
  font-size: 12px;
  margin-top: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

ul.topnav li a:hover:not(.active) {
  background-color: #161616;
}

ul.topnav li a.active {
  background: linear-gradient(135deg,#056f1c,#044469) border-box;
  
}
/* #3e8e41 */

ul.topnav li.right {
  float: right;
}

ul.topnav li a, .dropbtn {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

ul.topnav li a:hover, .dropdown:hover .dropbtn {
  background-color: #161616;
}

ul.topnav li.dropdown {
  display: inline-block;
}
/*Dropdown topnav*/

ul.topnav .dropdown-content {
  display: none;
  position: absolute;
  background-color: #aa9e9e;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  font-size: 16px;
}

/* Links inside the dropdown */
ul.topnav .dropdown-content a {
  color: rgb(255, 255, 255);
  padding: 8px 10px;
  text-decoration: none;
  display: block;
  text-align: left;
}

ul.topnav .dropdown-content a:hover {
  background: linear-gradient(135deg,#056f1c,#044469) border-box;
}

ul.topnav .dropdown:hover .dropdown-content {
  display: block !important; /* Ensure hover works on desktop */
}

/* Mobile-specific: disable hover on touch devices */
@media (hover: none) and (pointer: coarse) {
  ul.topnav .dropdown:hover .dropdown-content {
    display: none;
  }
}


/* Style The Dropdown Button */
.fxd_dropbtn {
  background: linear-gradient(135deg,#056f1c,#044469) border-box;
  color: white;
  padding-left: 6px;
  padding-right: 6px;
  padding-bottom: 4px;
  padding-top: 4px;
  font-size: 4.0vw;
  /* padding-left: 0.25vw;
  padding-right: 0.25vw;
  padding-bottom: 0.2vw;
  padding-top: 0.2vw;
  font-size: 0.625vw; */
  border: none;
  cursor: pointer;
  width: auto;
}

/* The container <div> - needed to position the dropdown content */
.fxd_dropdown {
  /* display: inline-block; */
  position: fixed;
  top: 0;
  left: 0; 
  z-index: 1000; /* Ensure it appears above other content */
  display: none;
}

/* Dropdown Content (Hidden by Default) */
.fxd_dropdown-content {
  display: none;
  position: fixed;
  background-color: #aa9e9e;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  font-size: 16px;
}

/* Links inside the dropdown */
.fxd_dropdown-content a {
  color: rgb(255, 255, 255);
  padding: 8px 10px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Change color of dropdown links on hover */
.fxd_dropdown-content a:hover {
  background: linear-gradient(135deg,#056f1c,#044469) border-box;}

/* Show the dropdown menu on hover */
.fxd_dropdown:hover .fxd_dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.fxd_dropdown:hover .fxd_dropbtn {
  background: linear-gradient(135deg,#056f1c,#044469) border-box;
}


/* Submenu container */
.dropdown-submenu {
  position: relative;
}

.submenu-content {
  display: none;
  position: absolute;
  left: 100%; /* Positioniert das Untermenü rechts vom Hauptmenü */
  top: 0;
  background-color: #aa9e9e;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links im Untermenü */
.submenu-content a {
  color: white;
  padding: 8px 10px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.submenu-content a:hover {
  background: linear-gradient(135deg,#056f1c,#044469) border-box;
}

/* Anzeigen des Untermenüs bei Hover */
.dropdown-submenu:hover .submenu-content {
  display: block;
}


/* Subsubmenu container */
.dropdown-subsubmenu {
  position: relative;
}

.subsubmenu-content {
  display: none;
  position: absolute;
  left: 100%; /* Positioniert das Untermenü rechts vom Hauptmenü */
  top: 0;
  background-color: #aa9e9e;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links im Untermenü */
.subsubmenu-content a {
  color: white;
  padding: 8px 10px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.susubmenu-content a:hover {
  background: linear-gradient(135deg,#056f1c,#044469) border-box;
}

/* Anzeigen des Untermenüs bei Hover */
.dropdown-subsubmenu:hover .subsubmenu-content {
  display: block;
}

@media screen and (max-width: 768px) {


/* ul.topnav li.right, 
ul.topnav li {float: none;} */
ul.topnav li li.right{
  float: none;
  text-align: left; 
  padding: 10px 0; 
}
.nav-item {
  padding: 5px;
}

.nav-image{
  width: auto; /* Make the image fill the width of the nav item */
  height: 20px; /* Maintain the aspect ratio */
  border-radius: 5px;
}

.nav-title {
  font-size: 8px;
  margin-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

ul.topnav .li .dot {
    height: 25px;
    width: 25px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
}
/* .span-logo {
display: inline-flex; 
margin-right: 10px; 
width: 20px;
height: auto;
}
.span-logo-landscape {
display: inline-flex;
margin-right: 15px; 
width: 40px;
height: auto;
} */

}


/* Sections */

section {
  display: none;
}


section.active {
  display: block;
}




#video-container{
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  /* display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: #f5f5f5;
  border: ipx solid #ddd;
  border-radius: 5px;
  margin: 20px auto;
  display: none; */
}

#video-container h2 {
  font-size: 18px;
  margin-bottom: 10px;
}



#video-container .video-container iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  border: 0;
}


#video-container .otherReference{
  text-align: center;
  align-items: center;
  font-size: 20px;
}

@media (max-width: 768px) {
  #video-container .video-container iframe {
    width: 100%; 
    aspect-ratio: auto;
  }
}

#announcement{
  text-align: center;
}

#advertisement{
  display: flex;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  gap: 20px; /* Add space between the two sections */
  padding: 0 20px; /* Add some padding to the sides */
  /* margin-left: 10%;
  margin-right: 10%;
  margin-top: 5%;
  margin-bottom: 5%; */
}
#announcement #advertisement #favourites{
  flex: 1; /* Equal width distribution */
  min-width: 0; /* Prevent flex items from overflowing */
  max-width: 50%; /* Ensure each takes exactly half */
}
#announcement #advertisement #checkOutPlaylists{
  flex: 1; /* Equal width distribution */
  min-width: 0; /* Prevent flex items from overflowing */
  max-width: 50%; /* Ensure each takes exactly half */
} 

#announcement #advertisement #favourites #favourites_content,
#announcement #advertisement #checkOutPlaylists #checkOutPlaylists_content {
  /* display: flex;               Flexbox aktivieren */
  justify-content: center;      /* Horizontal zentrieren */
  align-items: center;          /* Vertikal zentrieren */
  width: 100%;                   /* Festlegen der Breite */
  /* aspect-ratio: 21 / 9;         Seitenverhältnis beibehalten */
  max-width: 100%;              /* Maximale Breite auf 100% begrenzen */
  max-height: 100%;             /* Maximale Höhe auf 100% begrenzen */
  padding: 1em;                 /* Innenabstand */
  margin: 0 auto;               /* Automatisch zentrieren */
}

#announcement #advertisement #favourites #favourites_content .content-container{
  justify-content: center;
  border: none;
  display: none;
  animation: fadeInOut 10s linear infinite;
  align-content: center;
}
#announcement #advertisement #checkOutPlaylists #checkOutPlaylists_content .content-container{
  justify-content: center;
  display: none;
  border: none;
  animation: fadeInOut 10s linear infinite;
  align-content: center;
}

.content-container iframe{
  width: 100% !important; /* Ensure all iframes have same width */
  height: 152px; /* Fixed height for Spotify players */
  max-width: 100%;
  align-content: center;
} 

#announcement #advertisement #favourites #favourites_content .content-container.active ,#announcement #advertisement #checkOutPlaylists #checkOutPlaylists_content .content-container.active {
  display:inline;
  animation: none;
}

.add-arrow-button {
  font-size: 24px;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 5px;
  color: #ffffff;
}

.add-arrow-button:hover {
  color: #3e8e41;
  
}



@keyframes fadeInOut {
  0%, 100% {
    opacity: 0;
  }
  20%, 80%{
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  #advertisement {
    flex-direction: column;
    gap: 10px; /* Smaller gap on mobile */
    }
  

  #advertisement #favourites,
  #advertisement #checkOutPlaylists {
    flex: none; /* Remove flex on mobile */
    max-width: 100%; /* Full width for smaller displays */
    width: 100%; /* Full width for mobile */
  }
}

/* arrow container layout */
.arrow-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px;
  overflow: hidden; /* Prevents overflow */
  max-width: 100%; /* Ensure it doesn't exceed the viewport width */
  box-sizing: border-box; /* Ensures padding and borders are included in width */
  flex-wrap: wrap;
}


/* Responsive image */
.arrow-container img {
  display: inline-block;
  width: 30vw; /* Make image responsive relative to viewport width */
  height: auto;
  border-radius: 5px;
  margin: 10px;
}

/* Left and right texts */
.arrow-text-l, .arrow-text-r {
  font-size: 2vw; /* Responsive text size */
  display: block;
  writing-mode: vertical-lr;
  position: relative;
  margin: 10px;
}

.arrow-text-r {
  transform: rotate(180deg);
}

/* Responsive arrow */
.arrow {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.arrow span {
  display: block;
  width: 2vw; /* Make arrows responsive relative to viewport */
  height: 2vw;
  border-bottom: 3px solid white;
  border-right: 3px solid white;
  transform: rotate(45deg);
  margin: 10px; /* Adjust spacing */
  animation: animate 2.5s infinite;
}

/* Adjust text for image */
.img-text-l, .img-text-r {
  font-size: 2vw; /* Responsive text size */
  margin: 10px;
  writing-mode: vertical-lr;
}

.img-text-l {
  transform: rotate(180deg);
}


.arrow span:nth-child(2) {
  animation-delay: -0.5s;
}

.arrow span:nth-child(3) {
  animation-delay: -1s;
}

.arrow span:nth-child(4) {
animation-delay: -1.5s;
}

.arrow span:nth-child(5) {
animation-delay: -2s;
}

/* Keyframes for arrow animation */
@keyframes animate {
  0% {
      opacity: 0;
      transform: rotate(45deg) translate(-10px, -10px);
  }
  50% {
      opacity: 1;
  }
  100% {
      opacity: 0;
      transform: rotate(45deg) translate(10px, 10px);
  }
}

#NikoMusic a{
  color: #7c9e41;
}

/* Responsive Video-Section */
/* General video styles */
#video_section iframe {
  width: 80vw; /* 80% of the viewport width */
  height: calc(80vw * 9 / 16); /* Maintain 16:9 aspect ratio */
  max-width: 100%; /* Ensure videos don't exceed container */
  margin: 1vw auto 2vw; /* Optional: Add margin if needed */
  display: block;
}

/* Specific adjustments for .spo, .sc, .yt if necessary */
#video_section .spo {
  width: 64vw; /* 80vw * 0.8 */
  height: 24vw;
}

#video_section .sc {
  width: 48vw; /* 80vw * 0.6 */
  height: calc(48vw * 9 / 16); /* Keep 16:9 ratio */
}

#video_section .yt {
  width: 64vw; /* 80vw * 0.8 */
  height: calc(64vw * 9 / 16); /* Keep 16:9 ratio */
}

#video_section .viemo {
  width: 64vw;
  height: calc(64vw * 9 / 16);
}


/* Responsive for smaller screens */
@media screen and (max-width: 768px) {
  .arrow span {
      width: 3vw; /* Slightly smaller on smaller screens */
      height: 3vw;
  }

  .arrow-text-l, .arrow-text-r, .img-text-l, .img-text-r {
      font-size: 3vw; /* Adjust text size for smaller screens */
  }

  .arrow-container img {
      width: 40vw; /* Adjust image size for smaller screens */
  }
}



/*Styling for re's blog*/

.text-container {
  display: flex;
  justify-content: center; /* Center the content horizontally */
  align-items: center; /* Center the content vertically */
  flex-direction: column;
}

.text-container-n {
  display: flex;
  justify-content: center; /* Center the content horizontally */
  align-items: center; /* Center the content vertically */
  flex-direction: column;
}




.text-column {
  width: 60%; 
  max-width: 800px; 
  text-align: justify;
  padding: 20px;
  border: none;
  background-color: #c5ab90; /*Main colour #c5ab90 .. Niko Bericht #393734
  color: #aaaaaa*/

  /* background: linear-gradient(-90deg,#bea892, #c5ab90) border-box; */
  margin: 10px;
  font-size: 22px;
 
  /* font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
  /* font-family: Arial, Helvetica, sans-serif; */
  color: rgb(255, 255, 255);
  line-height: 1.5;
  hyphens: auto;
}
.text-column p {
  font-family: 'german', fallback, 'japanese';
  margin-bottom: 6pt;
}

.text-container-n .text-column p{
  font-family: 'german', fallback, 'japanese';
  margin-bottom: 2vw;
}

.bsp-p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 2vw 0;
}

.bsp-left, .bsp-right {
  flex: 1;
  text-align: center;
}

.bsp-arrow {
  flex: 0;
  padding: 0 10px;
}
.bsp-highlight {
  color:  #ca770b;
  display: inline;
}
.bsp-highlight-2 {
  color:  #b3250c;
  display: inline;
}


.text-column table th{
  font-family: 'german', fallback, 'japanese';
}

.text-column .separator{
  width: 100%;
  height: 1px;
  background-color: white;
}

.niko-container .separator, .re-container .separator{
  width: 100%;
  height: 1px;
  background-color: white;
}

.text-column .sec_title{
  text-align: right;
  font-size: 20px;
  font-family: 'german', fallback, 'japanese';
  margin-bottom: 10pt;

}

.text-column h2 {
  font-size: 26px;
  line-height: normal;
  font-family: 'german', fallback, 'japanese';
  text-align: left;
}

.text-container-n .text-column h2{
  font-size: 28px;
  line-height: normal;
  font-family: 'german', fallback, 'japanese';
  text-align: left;
}

.text-container-n .text-column h3{
  font-size: 26px;
  line-height: normal;
  font-family: 'german', fallback, 'japanese';
  text-align: left;
  margin-top: 1vw;
  margin-bottom: 1vw;
}

.text-container-n .text-column h4{
  font-size: 24px;
  line-height: normal;
  font-family: 'german', fallback, 'japanese';
  text-align: left;
  margin-top: 1vw;
  margin-bottom: 1vw;
}

.text-container-n .text-column h5{
  font-size: 22px;
  line-height: normal;
  font-family: 'german', fallback, 'japanese';
  text-align: left;
  margin-top: 1vw;
  margin-bottom: 1vw;
}

.niko-container h2, .re-container h2{
  font-size: 26px;
  line-height: normal;
  font-family: 'german', fallback, 'japanese';
  text-align: left;
  margin-left: 2vw;
}


.text-column h3 {
  font-size: 22px;
  line-height: normal;
  font-family: 'german', fallback, 'japanese';
  text-align: left;
  margin-bottom: 6pt;

}

.niko-container h3, .re-container h3{
  font-size: 22px;
  line-height: normal;
  font-family: 'german', fallback, 'japanese';
  text-align: left;
  margin-left: 2vw;
}

.overlay h3{
  font-size: 20px;
  line-height: normal;
  font-family: 'german', fallback, 'japanese';
  text-align: left;
  margin: 1vw;
}

.tooltip-n {
  position: relative;
  cursor: pointer;
}

.tooltip-n::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%; /* Tooltip über dem Text anzeigen */
  left: 50%;
  transform: translateX(-50%);
  background-color: #686868;
  color: #fff;
  padding: 5px;
  border-radius: 5px;
  font-size: 16px;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0.4;
  transition: opacity 0.2s ease-in-out;
  pointer-events: none;
}

.tooltip-n:hover::after {
  visibility: visible;
  opacity: 1;
}


/* Smaller screens */
@media (max-width: 768px) {
  .text-column {
    width: 95%; 
    font-size: 16px;
    line-height: normal;
  }
  .text-column h2{
    font-size: 22px;
  }
  .text-column h3{
    font-size: 18px;
  }
  .tab .smaller{
    font-size: 12px;
  }
  .text-column .sec_title{
    font-size: 16px;
    text-align: left;
  }
}
.smaller{
  font-size: 20px;
}
.text-column img{
  width: 100%;
}
.text-column img:hover{
  opacity: 0.7;
  transition: 0.5s;
  cursor: pointer;
}

.text-column ul {
  list-style-type: disc;
  margin-left: 2vw; 
}

.text-container button , .text-container-n button{
  background-color: #056f1c; 
  border: none;
  color: rgb(255, 255, 255);
  padding: 15px 30px;
  text-align: center;
  text-decoration: none;
  display: block;
  font-size: 18px;
  border-radius: 30px;
  margin: 20px auto;
  width: fit-content;
  max-width: 90%;
  white-space: nowrap;
}
.text-container button:hover, .text-container-n button:hover{
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
  cursor: pointer;
}
.text-container button:active, .text-container-n button:hover {
  background-color: #273131;
  transform: translateY(4px);
}


/* Styles for loading spinner */
.loading-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
} 

.loading-spinner {
  width: 240px;
  height: 240px;
  animation: spin 3s linear infinite;
}
 /* .loading-spinner {
  border: 4px solid rgba(0, 0, 0, 0.3);
  border-top: 4px solid #3e8e41;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
} */

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Styles for website content */

.content {
  opacity: 0.6;
}


.pagination {
  text-align: center;
  margin-top: 20px;
}

.pagination button {
  padding: 5px 10px;
  margin: 0 5px;
  cursor: pointer;
  outline: 1px solid #494a4f;
  border-radius: 1px;
  border: none;
  background-color: #161616;
  color: #aaaaaa;
}

.hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.pagination button.active {
  background: linear-gradient(135deg,#056f1c,#044469) border-box;
  color: black;
}

/*DropdownMusic*/

.dropDown-pagTop-Container{
  width: 100%;
  display: flex;
  
}
.dropDown-pagTop-Container .pagination{
  flex: 95%;
  margin-right: 10px;
}

.dropDown-pagTop-Container .dropDownMusic{
     /* Adjust the margin as needed */
    align-self: flex-end;
    margin-right: 20px;
    flex: 5%;
}


.dropbtnMusic {
  background: linear-gradient(135deg,#056f1c,#044469) border-box;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropbtnMusic:hover, .dropbtnMusic:focus {
  background-color: #3e8e41;
}

#musicInput {
  box-sizing: border-box;
  background-image: url('./media/searchIcon.png');
  background-position: 14px 12px;
  background-repeat: no-repeat;
  font-size: 14px;
  padding: 14px 20px 12px 45px;
  border: none;
  border-bottom: 1px solid #ddd;
  position: sticky; /* Keep the input field sticky at the top */
  top: 0; /* Stick to the top */
  left: 0;
  background-color: #f6f6f6; /* Match the dropdown background color */
  z-index: 2; /* Place the input field above the scrolling content */
  color: #000000;
}

#musicInput:focus {outline: 3px solid #ddd;}

.dropDownMusic {
  position: relative;
  display: inline-block;
}

.dropdown-content-music {
  display: none;
  position: absolute;
  background-color: #f6f6f6;
  min-width: 230px;
  overflow-y: auto; /* Enable vertical scrolling */
  max-height: 250px; /* Set a maximum height */
  border: 1px solid #ddd;
  z-index: 1;
  box-sizing: border-box;
  left: auto;
  right: 0;
}

.dropdown-content-music button {
  background: linear-gradient(135deg,#056f1c,#044469) border-box;
  color: rgb(0, 0, 0);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.dropdown-content-music button:not(:last-child) {
  border-bottom: 1px solid #ddd;
}

.dropDownMusic a:hover {
  color: #ddd;
}

.showMusic {
  display: block;
}

/* .showItem{
  display: block;
}

.item{
  display: none;
} */



.fancy_date {
  background-color: #987;
  float: right;
  position: relative;
  padding: 45px 5px 0px;
  margin-left: 10px;
  }
  
  .fancy_date .year{
  display: block;
  position: absolute;
  right: 0px;
  top: 14px;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  font-weight:bold;
  font-size: 18px;
  }
  
  .fancy_date .month {
  text-transform: uppercase;
  font-size: 20px;
  }
  
  .fancy_date .day {
  font-size: 45px;
  line-height: 45px;
  position: absolute;
  left: 5px;
  top: 0px;
  }


  .alertNoMatches {
    margin-top: 20px;
    margin-left: 10%;
    margin-right: 10%;
    padding: 20px;
    background-color: #3e8e41;
    color: white;
    display: none;
    border-radius: 5px;
  }
  
  .closebtnNoMatches {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .closebtnNoMatches:hover {
    color: black;
  }

  .speechbubble,
  .speechbubbletext,
  .speechbubbletext br,
  .speechbubble span {
    vertical-align: top;
  }
  .speechbubble {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

/* Style for the tooltip text */
.speechbubble .speechbubbletext {
    visibility: hidden;
    width: max-content;
    background-color: #555;
    color: #fff;
    font-size: 14px;
    text-align: center;
    border-radius: 6px;
    padding: 7px;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -110%);
    opacity: 0;
    transition: opacity 0.3s;
    overflow: hidden;
}

/* Show the tooltip text when hovering over the tooltip container */
.speechbubble:hover .speechbubbletext {
    visibility: visible;
    opacity: 1;
}

.thought-container {
  position: relative;
  display: flex;
}


.thought-content {
  position: relative;
}

.thought-content .thought-image-container {
  position: relative;
}


.thought-bubble {
  position: absolute;
  background-color: #555;
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  color: white;
  overflow: hidden;
  z-index: 1;
  font-size: small;
}



.thought-bubble p {
  margin: 0;
}


.comment_box {
  --r: 25px;
  --t: 30px;
  text-align: left;
  width: 100%;
  max-width: 100%;
  padding: 5%;
  padding-left: 3%;
  padding-right: 3%;
  padding-top: 3%;
  -webkit-mask: 
    radial-gradient(var(--t) at var(--_d) 0,#0000 98%,#000 102%) 
      var(--_d) 100%/calc(100% - var(--r)) var(--t) no-repeat,
    conic-gradient(at var(--r) var(--r),#000 75%,#0000 0) 
      calc(var(--r)/-2) calc(var(--r)/-2) padding-box, 
    radial-gradient(50% 50%,#000 98%,#0000 101%) 
      0 0/var(--r) var(--r) space padding-box;
  background: linear-gradient(135deg,#056f1c,#044469) border-box;
  color: #fff;
}
.com_left {
  --_d: 0%;
  border-left: var(--t) solid #0000;
  margin-right: var(--t);
  place-self: start;
  box-sizing: content-box;
}
.com_right {
  --_d: 100%;
  border-right: var(--t) solid #0000;
  margin-left: var(--t);
  place-self: end;
}

.comment-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.comment-name{
  --r: 25px;
  padding-left: calc(2*var(--r)/3);
  place-self: start;
  
}

.text-container .comment-button{
  background-color: #044469;
  border: none;
  color: rgb(255, 255, 255);
  padding: 8px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  border-radius: 30px;
  margin: 0 auto;
}

.comment-button:hover {
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
  cursor: pointer;
}
.comment-button:active {
  background-color: #273131;
  transform: translateY(4px);
}

.comment_div{
    width: 60%; 
    max-width: 800px; 
    padding: 20px;
    border: none;
    background-color: #c5ab90;
    margin: 10px;
    font-size: 20px;
}
.commenter_name{
  font-size: 16px;
}

.comment_text{
  white-space: pre-line;
}

@media (max-width: 768px) {
  .comment_box{
    width: 90%;
    max-width: 90%;
    padding: 5%;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 5%;
  }
  .comment_div {
    width: 95%; 
    font-size: 14px;
    line-height: normal;
  }
  .text-container .comment-button{
    font-size: 14px;
  }

  .text-container .button{
    font-size: 18px;
  }
  .commenter_name{
    font-size: 11px;
  }
}

.announcerBlog{
  text-align: center;
  color: white;
  background: linear-gradient(135deg,#056f1c,#044469) border-box;
  padding: 1%;
  border-radius: 5px;

}

ruby {
  font-size: 22px; /* Adjust as needed */
}
rt {
  font-size: 12px; /* Adjust as needed */
}
/* Style for the pinboard */
@media (max-width: 768px) {
  ruby {
    font-size: 16px; /* Adjust as needed */
  }
  rt {
    font-size: 9px; /* Adjust as needed */
  }
}


.pretext{
  text-align: center;
}
.pretext h2{
  margin-top: 10px;
  margin-bottom: 10px;
}
.pretext #einleitung{
  margin-left: 5%;
  margin-right: 5%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.pretext #moment{
  text-align: left;
  margin-left: 5%;
}
.column-pin{
flex:1;
display: flex;
flex-direction: column;
width: calc(33.33% - 20px);
/*min-height: 100%;*/
padding: 10px;
gap: 10px;
}
.corkboard{
  position: relative;
  width: 90%;
  display: flex;
  overflow-x: auto; /* Enable horizontal scrolling if needed */
  margin: 0 auto; /* Align to center */
}
.pin {
  background-color: grey;
  border-radius: 2px;
  text-align: left;
  color: white;
  box-shadow: 2px 2px 5px rgba(0.3, 0, 0, 0.5);
  border: 1px solid white;
  box-shadow: 2px 2px 5px rgba(0.3, 0, 0, 0.5);
  background-image: radial-gradient(circle, rgba(0.2,0.2,0.5,0.1) 1%, rgba(0.5,0.2,0.3,0.5) 100%);
  align-self: start;
  -webkit-filter: blur(0); /* Reset blur */
  filter: blur(0); /* Reset blur */
  width: 99%;
}
/* .pin::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url('./Background.jpg');
  background-size: cover;
  } */

.pin-metadata {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: lightgray;
  border-bottom: 1px solid lightgray; /* Add line separator */
  padding: 5px;
  -webkit-filter: blur(0); /* Reset blur */
  filter: blur(0); /* Reset blur */
}
.pin-content{
  margin: 10px;
  /* font-weight: bold; */
  -webkit-filter: blur(0); /* Reset blur */
  filter: blur(0); /* Reset blur */
}
.pin-img{
  display: block;
  width: 80%;
  height: auto;
  margin: 0 auto;
  z-index: 1;
  position: relative;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 10px;
}

@media screen and (max-width: 756px) {
  .double-image {
      width: 100%;
      float: none;
  }}

footer {
    position: relative;
    bottom: 0;
    width: 100%;
    background-color: #161616;
    padding: 20px;
    text-align: center;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: center; /* Zentriert den mittleren Text block */
    gap: 20px; /* Abstand zwischen Logos und Textblock */
}

.footer-content {
    text-align: center; /* Textblock bleibt zentriert */
}

footer a {
    color: #007BFF;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.logo {
    height: 200px; /* Größe der Logos */
    width: auto;
}

@media (max-width: 756px) {
  .footer-container {
      flex-direction: column; /* Stapelt Inhalte auf kleinen Bildschirmen */
  }
  .logo {
      margin: 10px 0;
      height: 110px;
      width: auto;
  }
}


