/* Anpassungen, die die ganze Seite betreffen */
body div#page h1, h2, h3, h4, h5, h6, .btn {
	/* font-family: 'Inter' !important; */
	font-family: 'Times New Roman' !important;
	letter-spacing: 3px;
}

body div#page h2, h3, h4, h5, h6 {
	color: #009a93 !important;
}

body div#page h2 a, 
body div#page h3 a, 
body div#page h4 a, 
body div#page h5 a, 
body div#page h6 a {
	color: #009a93 !important;
}

body div#page h2 a:hover, 
body div#page h3 a:hover, 
body div#page h4 a:hover, 
body div#page h5 a:hover, 
body div#page h6 a:hover {
	text-decoration: none;
	color: #303030 !important; 
}

body div#page p,
body div#page p a,
body div#page ul li,
body div#page ol li {
	font-size: 1rem !important;
}

@media screen and (max-width: 767px) {
    .section-title-area {
		margin-bottom: 30px !important;
		padding: 0 15px !important;
	}
}

/* BUTTONS */
section#hero .container .btn.btn-theme-primary.btn-lg,
section#karriere .contact-button,
section#news .all-news .btn.btn-theme-primary-outline,
section#kontakt .wpcf7-submit {
	color: #fff;
    border-radius: 5px;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    overflow: hidden;
    background-color: #009a93;
    line-height: 2;
    text-transform: uppercase;
    font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
    display: inline-block;
    padding: 8px 30px;
    position: relative;
	border: none;
}

section#karriere .contact-button,
section#news .all-news .btn.btn-theme-primary-outline,
section#kontakt .wpcf7-submit {
	transition: background-color 0.5s ease !important;
}

/* Hover-Effekte nur für Desktop (≥ 768px) */
@media screen and (min-width: 768px) {
    section#hero .container .btn.btn-theme-primary.btn-lg:hover,
    section#karriere .contact-button:hover,
    section#news .all-news .btn.btn-theme-primary-outline:hover,
    section#kontakt .wpcf7-submit:hover {
        background-color: #007a73;
    }
}

/* Mobile Geräte (< 768px) - Hover-Effekte deaktiviert */
@media screen and (max-width: 767px) {
    section#hero .container .btn.btn-theme-primary.btn-lg:hover,
    section#karriere .contact-button:hover,
    section#news .all-news .btn.btn-theme-primary-outline:hover,
    section#kontakt .wpcf7-submit:hover {
        background-color: #009a93 !important; /* Ursprüngliche Farbe beibehalten */
    }
    
    /* Touch-Event Unterstützung für bessere mobile Erfahrung */
    section#hero .container .btn.btn-theme-primary.btn-lg:active,
    section#karriere .contact-button:active,
    section#news .all-news .btn.btn-theme-primary-outline:active,
    section#kontakt .wpcf7-submit:active {
        background-color: #007a73; /* Nur bei aktuellem Touch */
        transform: scale(0.98); /* Leichter Druck-Effekt */
    }
}