body { margin:0; font-family: Arial, sans-serif; }

.container { max-width:1100px; margin:auto; padding:0 20px; }

/* HEADER */
.header {
  background: rgba(255, 166, 0, 0.764);
  color: white;
  position: relative;
  top: 0;
  z-index: 1000;
}

/* HEADER-INHALT */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* keeps burger + icon next to each other */
.left-items {
  display: flex;
  align-items: center;
  gap: 12px;
}


/* icon styling */
.home-icon {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.home-icon svg {
  display: block;
}

/* BURGER LINKS FIXIERT */
.burger {
  /* position: absolute;
  left: 20px; */
  padding: 10px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.burger span {
  height: 2px;
  width: 25px;
  background: white;
  margin: 2px 0;
  transition: 0.3s;
}

/* ANIMATION */
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* center title independent of left side */
.logo {
  position: absolute;
  left: 40%; /* adjust based on burger width + gap */
  text-align: left; /* keep text left-aligned */
  transform: translateX(-10%);
  margin: 0;
  font-size: 16px;
}


/* NAV */
nav {
  display: none;
  flex-direction: column;
  background: rgba(255, 166, 0, 0.764);
  width: 100%;
  text-align: left;
  font-size: 16px;
}

nav.active {
  display: flex;
}

nav a {
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  border-top: 1px solid rgba(255,255,255,0.3);
}

nav a:hover {
  background: rgba(0,0,0,0.2);
}

/* MAIN */
main { padding:40px 20px; }
.logo-img { max-width:400px; display:block; margin:0 auto 20px; }
.about-img { max-width:100%; }
.btn { 
  display:inline-block;
  padding:10px 20px; 
  background:rgba(255, 166, 0, 0.764); 
  color:white; 
  border-radius:5px; 
  text-decoration:none; 
}
/* Hover */
.btn:hover {
  background-color: rgba(255, 166, 0, 1);
}
.content-wrapper {
  max-width: 800px;
  margin: 0 auto;      /* centers it */
  padding: 0 20px;     /* nice spacing on mobile */
  text-align: center;
}
.content-wrapper-left {
  max-width: 800px;
  margin: 0 auto;      /* centers it */
  padding: 0 20px;     /* nice spacing on mobile */
  text-align: left;
}
.welcome-text 
{ text-align:center;  
  font-size: clamp(28px, 6vw, 58px);
  font-weight: bold; 
  font-family: Arial, Helvetica, sans-serif; 
  margin: 20px 0; 
  color: #333; 
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
.content-text-header { 
  font-size: 24px;
  font-weight: 700; 
  font-family: verdana, sans-serif;
  margin-left: 0px;
  margin-right: 0px; 
  text-align: left;
} 
.content-text { 
  font-size: 16px; 
  font-family: verdana, sans-serif;
  margin-left: 0px;
  margin-right: 0px;
  text-align: left; 
} 


/* FOOTER */
.footer { background:black; color:white; padding:20px; }

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 800px;
}

/* LEFT LINKS */
.footer-links {
  display: flex;
  gap: 15px;
}

.footer-links a {
  text-decoration: none;
  color: white;
  font-size: 14px;
}

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

.footer a {
  color: white;
  text-decoration: none;
}

.footer-icons {
  display: flex;
  justify-content: center;  /* ✅ center icons */
  gap: 15px;
  font-size: 18px;
  flex: 1;                  /* ✅ take available space */
}

#termine-box {
    position: fixed;
    right: -300px; /* Start außerhalb */
    top: 50px;
    width: 150px;
    background: #ffffff;
    border: 1px solid #ccc;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: right 0.5s ease;
    font-size: 14px;
}

/* sichtbar */
#termine-box.show {
    right: 20px;
}

/* versteckt */
#termine-box.hidden {
    right: -300px;
}

/* MOBILE */
/*
@media(max-width:768px){
  .burger{ display:flex; }

  nav{
    position:absolute;
    top:60px;
    left:0;
    width:100%;
    background:rgba(255, 166, 0, 0.764);
    flex-direction:column;
    display:none;
    text-align:center;
  }

  nav.active{ display:flex; }

  nav a{ padding:15px; border-top:1px solid rgba(255,255,255,0.3); }
}
*/