 *{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}
        
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #F6F1E8;
	color: #222222;
	line-height:1.6;
}

/*
.container{
	width: 100%;
}
*/
/* ===========================
   button
=========================== */
.mein-button {
    background-color: black;
    border-color: #D4AF37;
    color: #D4AF37;
}

.mein-button:hover {
    background-color: #b8942f;
    border-color: #b8942f;
    color: white;
}

/* ===========================
   HEADER
=========================== */

.headerFrame {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #171717;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

/* ===========================
   FOOTER
=========================== */

.fotterFrame {
    width: 100%;
    position: absolute;
    color: #c7bc6b;    
}

/* ===========================
   LOGO
=========================== */

.logo img {
    width: 150px;
    height: auto;
    display: block;
}

/* ===========================
   LINKS
=========================== */

a {
    color: #dad39d;
    text-decoration: none;
}

/* ===========================
   DESKTOP MENU
=========================== */

.menu-desktop {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-desktop a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

.menu-desktop a:hover {
    color: #E8C86A;
}

/* Aktive Seite */

.menu-desktop a.active {
    color: #E8C86A;
    text-decoration: underline;
    text-decoration-color: #E8C86A;
    text-underline-offset: 6px;
}

/* ===========================
   TRENNZEICHEN
=========================== */

.abstand {
    color: #D4AF37;
}

/* ===========================
   MOBILE BUTTON
=========================== */

.mobile-only {
    display: none;
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 30px;
    color: #dad39d;
}

/* ===========================
   MOBILE MENU
=========================== */

.mobile-menu {
    display: none;
    background-color: #171717;
    width: 100%;
}

.mobile-menu a {
    display: block;
    padding: 12px 20px;
    color: #D4AF37;
    border-top: 1px solid #333;
}

.mobile-menu a:hover {
    color: #E8C86A;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width:768px) {

    .menu-desktop {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .header-inner {
        padding: 10px 15px;
    }
}



/* ===========================
   ANKER
=========================== */

#Terminplan {
    scroll-margin-top: 190px;
}

/* ===========================
   DROPDOWN
=========================== */

.custom-dropdown {
    background-color: #171717;
    border: none;
}

.custom-dropdown .dropdown-item {
    color: #3E2F24;
}

.custom-dropdown .dropdown-item:hover {
    background-color: #c29b63;
    color: white;
}


/* ===========================
   box-card
=========================== */
.box-card {
	    box-shadow: 0 8px 10px 0 rgba(0,0,0,0.5),0 5px 13px 0 rgba(0,0,0,0.5);
	    
	    background-color: #ffffff;
	    border: 3px solid #cccccc;
	    -webkit-border-radius: 10px 10px 10px 10px;
	    border-radius: 6px 6px 6px 6px;
	    padding: 15px 15px 15px 15px;
	    margin-bottom: 20px;
	    width: 100%;
	    
	    position: relative;
	}
	
.service-card{
    background:white;
    color: black;
    border-radius:15px;
    padding:25px;
    margin-bottom:20px;
    height:260px;

    transition:all .3s ease;

    box-shadow:0 5px 20px rgba(0,0,0,.1);
}
/* ===========================
   hr
=========================== */
	hr{
		height:2px;
		border-width:0;
		color:green;
		background-color:green;
	}
	
	
	

/* ===========================
   hero
=========================== */	
	
.hero{
            background:linear-gradient(135deg, #b89047, #f6f1e8);
            color:#5c4824;
            padding:80px 20px;
            text-align:center;
            margin: 0px;
        }

        .hero h1{
            font-size:48px;
            margin-bottom:20px;
        }

        .hero p{
            max-width:700px;
            margin:auto;
            font-size:20px;
        }
	
	
/* ===========================
   card
=========================== */	
	
.card {
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
    
    display:flex;
    flex-direction:column;
    height:100%;
}

.card .btn {
    margin-top:auto;
}
	
	
 /* Kategorien */

section{
    padding:70px 0;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

	
.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}	

	
	
/* ===========================
   article
=========================== */

.article-header {
    background:linear-gradient(135deg, #b89047, #f6f1e8);
    color:white;
    padding:70px 20px;
    text-align:center;
}


.article-header h1 {
    font-size:45px;
    margin-bottom:20px;
}


.article-header p {
    max-width:800px;
    margin:auto;
    font-size:20px;
}



.article-container {

    width:90%;
    max-width:900px;
    margin:60px auto;

}


.article-container h2 {

    text-align:left;
    font-size:30px;
    margin-top:45px;
    margin-bottom:15px;
    color:#222;

}


.article-container h3 {

    font-size:24px;
    margin-top:30px;

}


.article-container p {

    font-size:18px;
    line-height:1.8;
    color:#444;

}


.article-container ul {

    margin:20px 0;
    padding-left:30px;

}


.article-container li {

    margin-bottom:10px;
    font-size:18px;

}



.info-box {

    background:linear-gradient(230deg, #b89047, #f6f1e8);
    padding:25px;
    border-radius:12px;
    margin:40px 0;

}






@media(max-width:768px){

    .article-header h1 {
        font-size:32px;
    }

}

	

/* ===========================
   button
=========================== */	
.btn-modern {
	    background: linear-gradient(135deg, #2563eb, #06b6d4);
	    color: white;
	    border: none;
	    padding: 8px 14px;
	    border-radius: 8px;
	    font-size: 16px;
	    font-weight: 600;
	    cursor: pointer;
	    transition: all .25s ease;
	    box-shadow: 0 4px 10px rgba(0,0,0,.15);
	}
	
	.btn-modern:hover {
	    background: #1d4ed8;
	    transform: translateY(-2px);
	    box-shadow: 0 8px 18px rgba(0,0,0,.2);
	}
	
	.btn-modern:active {
	    transform: translateY(0);
	}
	
	.btn-modern:disabled {
	    background: #bdbdbd;
	    cursor: not-allowed;
	    box-shadow: none;
	}
	
	

/* ===========================
   Info Icon i
=========================== */
.info-icon {
    position: absolute;
    top: 15px;
    right: 15px;

    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #adb5bd;
    border-radius: 50%;

    background: #fff;
    color: #6c757d;

    font-size: 13px;
    font-weight: bold;

    cursor: help;
    transition: all .2s ease;
}

.info-icon:hover {
    background: #0d6efd;
    border-color: #0d6efd;
    color: white;
}
	