body {
    margin: 20;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom right, #d1fae5, #bbf7d0);
	
      background-image: url(werner.jpeg);
      
      background-repeat: no-repeat;
      
 
      background-position: center;
      
    
      background-attachment: scroll;
      
     
      background-size: cover;
      
      
      background-color: rgb(250, 248, 248);
    

    color: #065f46;
    cursor: none; 
    }
    a {
        text-decoration: none;   
        color: inherit;          
      }      

    html {
        scroll-behavior: smooth;
      }      
      .card-link {
        text-decoration: none;
        color: inherit;
        display: block;
      }
      

    /* Der "Hund"-Cursor */
    .dog-cursor {
      position: fixed;
      width: 30px;
      height: 30px;
      font-size: 26px;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
    }


    header {
    text-align: center;
    padding: 4rem 1rem 2rem;
    }
    header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #064e3b;
    }
    header p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    }

    .slider-container {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px; /* Abstand zwischen Bild und Button */
      margin: 50px auto;
    }
    
    .slider {
      position: relative;
      width: 80%;
      height: 400px;
      overflow: hidden;
      border-radius: 20px;
      box-shadow: 0 0 20px rgba(0,0,0,0.2);
    }
    
    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transform: scale(0.8);
      transition: transform 1s ease, opacity 1s ease;
    }
    
    .slide.active {
      opacity: 1;
      transform: scale(1);
      z-index: 1;
    }
    
    #nextBtn {
      height: 60px;
      width: 60px;
      font-size: 24px;
      background: rgba(255,255,255,0.8);
      border: none;
      border-radius: 12px;
      cursor: pointer;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
      transition: background 0.3s;
    }
    
    #nextBtn:hover {
      background: white;
    }
    
    ul {
      font-size: 0,7rem;
      list-style-type: none;
      margin: 5%;
      padding: 1%;
      overflow: hidden;
      background-color: #333;
      position: -webkit-sticky; /* Safari */
      position: sticky;
      top: 0;
      z-index: 3;
      display: flex;
      justify-content: space-around;
    }
    
    li {
      float: left;
    }
    
    li {
      display: block;
      color: white;
      text-align: center;
      padding: 2rem 2rem;
      text-decoration: none;
    }
    
    /* Change the link color to #111 (black) on hover */
    li:hover {
      background-color: #111;
    }

    
    .btn {
    padding: 0.75rem 1.5rem;
    background-color: #047857;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    }
    .btn:hover {
    background-color: #065f46;
    }
    .grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    border-bottom: solid;
    }
    .card {
    background: white;
    border-radius: 5rem 0 5rem 0;
    padding: 2rem;
    box-shadow: 0 3rem 20rem rgba(0, 0, 0, 0.05);
    }
    .card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    }
    .card p {
    font-size: 1rem;
    color: #065f46;
    }
    .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #047857;
    }
    .al{
        scroll-margin-top: 20rem; /* Höhe deines fixen Headers/Suchers */
        text-align: center;
        margin: 3%;
        padding: 1%;
        border: solid;
        border-radius: 2rem 2rem 2rem 2rem;
        background-color: white;
        
    }
    .al h2 {
      text-decoration: underline;
    }
    .Uhrzeit:hover{
      text-decoration: underline;
    }
    .Uhrzeit {
        font-style: italic;
        font-size: larger;
    }
    .card {
        transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1),
                    box-shadow 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
        transform-origin: center center;
      }
      
      .card:hover {
        transform: scale(1.05) translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
      }
      
      
      .al {
        transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1),
                    box-shadow 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
        transform-origin: center center;
      }
      
      .al:hover {
        transform: scale(1.05) translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
      }
      
      .highlight {
        animation: glow 1.5s ease;
      }
      @keyframes glow {
        3% { background: yellow; }
        30% { background: transparent; }
      }

      .google-map { 
        padding-bottom: 50%; position: relative; 
      } 
      
      .google-map iframe { 
        height: 100%; width: 100%; left: 0; top: 0; position: absolute; 
      }

    table.training {
      border-collapse: collapse; /* Entfernt spacing zwischen Zellen */
      width: 100%;
      margin-top: 20px;
      background-color: #e0ffff;
    }
    
    table.training th,td{
      padding: 8px 12px;           /* Weniger Abstand innen */
      text-align: left;
      line-height: 1.2;            /* Kompaktere Zeilenhöhe */
      border: solid;
    }
    table.training tbody td{
      padding: 8px 12px;           /* Weniger Abstand innen */
      text-align: left;
      line-height: 1.2;            /* Kompaktere Zeilenhöhe */
      border: solid;
    }
    
    /*table.training td strong {
      display: inline; /* Verhindert Extra-Höhe durch blockiges <strong> */
    
    footer {
      background-color: #333;
     color: white;
     text-align: center
    }
    .footer {
      display: flex;
      justify-content: space-around;
    }
