/*
Theme Name: KompaktCRM
Theme URI: https://hanseat.me
Author: Dein Name
Author URI: https://hanseat.me
Description: Ein elegantes OnePage-Theme für das kompaktCRM-System.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kompaktcrm
Tags: onepage, crm, business, responsive
*/

/* Allgemeine Stile */
body, html {
    margin: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    scroll-behavior: smooth;
    background-color: #f4f4f4;
    color: #333;
}

/* Navigation */
.navbar {
    background-color: #186E7B;
    padding: 10px 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar .navbar-brand {
    color: white;
    font-weight: bold;
    text-decoration: none;
}

.navbar-nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar-nav ul li {
    margin-left: 20px;
}

.navbar-nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 15px;
    display: block;
}

.btn-dashboard {
    background-color: #E72366;
    color: white;
    border-radius: 5px;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    margin-left: 20px;
}

/* Header */
.header {
height: 100vh;
    background: url('bg.webp') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    color: white;
}

.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Abdunkelung um 40% */
    z-index: 0;
}

.header .logo img {
    width: 150px;
    margin-bottom: 20px;
}

.header h1 {
    font-size: 64px;
    margin-bottom: 20px;
    font-weight: bold;
    color: white;
}

.header .subtitle {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 20px;
    color: white;
}

.header .badge-word {
    display: inline-block;
    padding: 10px;
    font-size: 48px;
    color: white;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.2); /* Leichte Transparenz */
    animation: fade-in-out 3s ease-in-out infinite;
}

.header .cta-button {
    margin-top: 30px;
    padding: 15px 30px;
    background-color: #E72366;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-size: 20px;
    transition: background-color 0.3s ease;
}

.header .cta-button:hover {
    background-color: #d71c5b;
}

@keyframes fade-in-out {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    10% {
        opacity: 1;
        transform: translateY(0);
    }
    90% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(50px);
    }
}

/* Sektionen */
section {
    padding: 100px 20px;
    text-align: center;
    background-color: white;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
}

/* Typografie und Farben */
.features h2, .pricing h2, .blog h2, .contact h2 {
    color: #186E7B;
    margin-bottom: 40px;
}

.features p, .pricing p, .blog p, .contact p {
    font-size: 18px;
    line-height: 1.8;
}

.features .btn-learn-more, .pricing .btn-signup, .blog .btn-read-more, .contact .btn-submit {
    margin-top: 20px;
    padding: 10px 30px;
    background-color: #E72366;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.features .btn-learn-more:hover, .pricing .btn-signup:hover, .blog .btn-read-more:hover, .contact .btn-submit:hover {
    background-color: #d71c5b;
}

/* Preispläne */
.pricing .card {
    margin: 20px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    padding: 20px;
    border: none;
    background-color: #f8f9fa;
}

.pricing .card h3 {
    color: #E72366;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

.footer .footer-nav {
    margin-bottom: 10px;
}

.footer .footer-menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer .footer-menu li {
    display: inline;
}

.footer .footer-menu li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

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

.text-container {
    z-index: 1;
}

/* Responsivität */
@media (max-width: 768px) {
    .header h1 {
        font-size: 48px;
    }
    .header .subtitle {
        font-size: 28px;
    }
    .header .badge-word {
        font-size: 36px;
    }
    .features, .pricing, #blog, .contact {
        padding: 50px 20px;
    }
	.header{
		min-height: 100vh;
	}
}


/* Single */
.container-single {
    margin: auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
    margin-top: 30px;
}



h2, h3 {
    color: #186E7B;
}

.intro {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
}

.blog-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #E72366;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-size: 20px;
    margin-top: 30px;
    transition: background-color 0.3s ease;
}

.header-single {
    padding: 60px 20px 60px 20px;
    background-color: #186E7B;
    color: white;
    text-align: center;
}

.header-single h1 {
    margin: 0;
    font-size: 36px;
    font-weight: bold;
}