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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #f5d742;
    text-align: center;
}

section {
    padding: 4rem 0;
}

.btn {
    display: inline-block;
    background-color: #f5d742;
    color: #1a1f2e;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
    font-size: 1rem;
    text-align: center;
}

.btn:hover {
    background-color: #e6c934;
}

.btn-full {
    width: 100%;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a1f2e;
    color: #fff;
    padding: 15px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-banner p {
    margin-right: 20px;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    align-items: center;
}

.cookie-link {
    margin-left: 15px;
    color: #f5d742;
    text-decoration: underline;
}

/* Header */
header {
    background-color: #1a1f2e;
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    color: #f5d742;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.mobile-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #f5d742;
    transition: all 0.3s ease-in-out;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    padding: 0.5rem 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #f5d742;
    transition: width 0.3s;
}

nav ul li a:hover:after {
    width: 100%;
}

/* Hero Section */
.hero {
    background-image:  url('./assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 8rem 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Über Uns Section */
.ueber-uns {
    background-color: #fff;
}

.ueber-uns-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.ueber-uns-text {
    flex: 1;
    min-width: 300px;
}

.ueber-uns-text p {
    margin-bottom: 1.5rem;
}

.ueber-uns-images {
    flex: 1;
    min-width: 300px;
    display: flex;
    gap: 1rem;
}

.ueber-uns-img {
    width: 48%;
    border-radius: 5px;
    object-fit: cover;
}

/* Experten Section */
.experten {
    background-color: #1a1f2e;
    color: #fff;
}

.experten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.experte {
    background-color: #242936;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s;
}

.experte:hover {
    transform: translateY(-10px);
}

.experte-img {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.experte img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experte h3 {
    margin-bottom: 0.5rem;
    color: #f5d742;
}

.experte h4 {
    margin-bottom: 1rem;
    font-weight: 400;
    color: #ccc;
}

/* Erfahrungen Section */
.erfahrungen {
    background-color: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background-color: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.testimonial-info h3 {
    font-size: 1.1rem;
}

.testimonial-info p {
    font-size: 0.9rem;
    color: #666;
}

.testimonial-text {
    font-style: italic;
    color: #444;
}

/* Anmeldeformular Section */
.anmeldung {
    background-image: url('./assets/form-bg.png');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.anmeldung form {
    background-color: rgba(36, 41, 54, 0.9);
    padding: 2.5rem;
    border-radius: 10px;
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.9);
}

/* Footer */
footer {
    background-color: #1a1f2e;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo h2 {
    color: #f5d742;
    text-align: left;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.footer-contact h3, .footer-links h3, .footer-social h3 {
    margin-bottom: 1.5rem;
    color: #f5d742;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a:hover {
    color: #f5d742;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #242936;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: #f5d742;
}

.social-icon img {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid #2e3446;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: #ccc;
}

.footer-legal a:hover {
    color: #f5d742;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h2 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .form-row {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .mobile-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active .bar:nth-child(3) {
        transform: translateY(-18px) rotate(-45deg);
    }
    
    nav ul {
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: #1a1f2e;
        padding: 5rem 1rem 1rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    nav ul.active {
        right: 0;
    }
    
    nav ul li {
        margin: 0;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    nav ul li a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
    }
    
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-banner p {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

html {
    scroll-behavior: smooth;
}

.main-section {
    padding: 4rem 0;
    background: #1a1f2e;
    color: #fff;
}

.main-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}