        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Quicksand;
            font-size: 20px;
            line-height: 1.8;
            color: #222;
            background-color: #ffffff;
        }

        header {
            background-color: #a094b8;
            border-bottom: 1px solid #ddd;
            height: 110px;
        }

        nav {
        	position: fixed;
        	width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 30px;
    		z-index: 100;
        }

        nav ul {
    		list-style: none;
    		display: flex;
    		justify-content: center;  /* Zentriert die Navigation */
    		gap: 50px;
        }

        nav a {
   			display: inline-block;
            text-decoration: none;
            color: #efe0d4;
            font-size: 19px;
            padding-top: 5px;
    		transition: transform 0.2s ease;
        }

        nav a:hover {
            border-top: 4px solid #804a63;
            color: #efe0d4;
    		transform: scale(1.08);
        }
        
    	.menu-toggle {
        	display: none;
   		}
                
        .hero {
   			height: auto;
   			margin-top: -10px;
    		display: flex;
    		justify-content: center;
    		align-items: center;
    		z-index: 1;
		}

		.hero-img {
    		width: 100%;
    		transition: opacity 0.2s;
		}
       

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 40px auto;
        }
        
        .text {
            width: 70%;
            margin: auto 160px;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: normal;
            margin-bottom: 0.5em;
        }

        h1 { 
        	font-size: 48px; 
            font-family: Chewy;
            color: #23523a;
            margin-left: 60px;
        }
        
        h2 { 
        	font-size: 28px; 
            font-family: Chewy;
            color: #804a63;
            margin-left: 160px;
            margin-top: 20px;
        }
        
        h3 { 
        	font-size: 48px; 
            font-family: Chewy;
            color: #d3a288;
            margin-left: 60px;
        }
        
        h4 { 
        	font-size: 28px; 
            font-family: Chewy;
            color: #cc6d8d;
            margin-left: 160px;
            margin-top: 15px;
            margin-bottom: -15px;
        }

        h5 { 
        	font-size: 48px; 
            font-family: Chewy;
            color: #d07756;
            margin-left: 60px;
        }
                
        p {
            margin-bottom: 1em;
        }

        b, strong {
            font-weight: bold;
        }

        i, em {
            font-style: italic;
        }

        a {
            color: #804a63;
        }

        a:hover {
            color: #d07757;
        }

        ul, ol {
            margin-left: 1.5em;
            margin-bottom: 1em;
        }

        li {
            margin-bottom: 0.5em;
        }
        
        hr {
        	border: 4px #d07757 dashed;   
        	margin: 40px auto; 	
        }

        img {
            max-width: 100%;
            height: auto;
        }
        
        .dog {
        	width: 30%;
 			float: right;
 			padding: 30px 0 0 30px;
  		}
  		
		.tab-content {
    		display: none;
    		padding: 20px;
    		border: none;
    		margin-top: 10px;
		}
		
		.tab-links {
        	font-size: 28px; 
            font-family: Chewy;
            color: #cc6d8d;
            margin-left: 60px;
		}

		.tab-links a {
   			display: inline-block;
            text-decoration: none;
            padding: 0 25px;
    		transition: transform 0.2s ease;
		}
		
		.tab-links a:hover {
    		transform: scale(1.5);			
		}
		

		#tab1 {
    		display: block;
		}
		
		#aktuelles {
			padding-top: 50px;
		}
  		
  		#footer {
            height: auto;
            padding: 40px 300px;
            color: #efe0d4;
            background-color: #804a63;  
            margin-top: -11px;		
  		}
  		
  		#footer a {
  			color: #d3a288;
  		}
  		
  		.foto_unten {
    		width: 100vw;
    		max-width: none;
    		margin-left: calc(-50vw + 50%);
    		margin-bottom: -40px;
   		}

  		.foto_unten img {
   			width: 100%;
    		height: auto;
    		display: block;
   		}		
  		
  		#impressum {
  			position: fixed;
  			bottom: 10px;
  			right: 10px;
  		}
  		
  		#impressum a {
  			color: #efe0d4;
  			font-size: 13px;
  			text-decoration: none;
  		}
  		
  		
/* =========================
   MOBILE (bis 768px)
   ========================= */
@media (max-width: 768px) {

    body {
        font-size: 16px;
        line-height: 1.6;
        padding: 0; /* WICHTIG */
    }

    header {
        height: auto;
    }
    
    nav {
        position: static;
        padding: 10px 0;
    }
    
    .menu-toggle {
        display: block;
        text-align: center;
        font-size: 28px;
        cursor: pointer;
        color: #efe0d4;
        margin-bottom: 10px;
    }

    nav ul {
        display: none;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    nav ul.active {
        display: flex;
    }

    nav a {
        font-size: 18px;
        margin-left: -20px;
    }

    .hero-img {
        width: 100%;
        display: block;
    }

    .container {
        margin: 20px auto;
        padding: 0 15px; /* Text bekommt Abstand, Bilder nicht */
    }
    
	.tab-links a {
		text-align: center;
	}

    .text {
        width: 100%;
        margin: 0;
    }

    /* HEADINGS RESET */
    h1, h2, h3, h4, h5 {
        margin-left: 0 !important;
    }

    h1 { font-size: 30px; }
    h2 { font-size: 22px; }
    h3 { font-size: 28px; }
    h4 { font-size: 20px; }
    h5 { font-size: 26px; }
    
    h4 {
    	margin-bottom: -5px;
    }

    /* DOG IMAGE */
    .dog {
        width: 120px;
        margin: 0 auto;
        display: block;
        padding: 10px 0;
    }

    /* GROßES BILD UNTER CONTAINER */
    img {
        margin: 0;
    }

    /* FOOTER */
    #footer {
    	margin-top: 60px;
        padding: 30px 20px;
        text-align: center;
    }
    
    .foto_unten {
    	margin-bottom: -67px;
    }

    #impressum {
        position: static;
        margin-top: 20px;
        text-align: center;
    }
    
     #impressum a {
            color: #cc6d8d;     	
     }

}