﻿/* Reset und Grundlagen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #255a00;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typografie */
h1, h2, h3, p {
    color: #255a00;
}

h1, h2, h3 {
    line-height: 1.2;
}
p {
    line-height: 1.4;
}

hr, .border {
    border: 1px solid #60b31d;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: underline;
}

/* Section 1: Top Bar */
.top-bar {
    background-color: #deecd1;
    color: #255a00;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

/* Section 2: Navigation */
.navigation {
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 60px;
    width: auto;
}

.nav-icons {
    display: flex;
    gap: 0px;
    align-items: center;
}

.nav-icon {
	width: 60px;
	height: auto;
	cursor: pointer;
	padding: 0px;
	transition: background-color 0.2s ease;
}
.margin-top-20 {
	margin-top: 20px;
}
.margin-top-13 {
	margin-top: 13px;
}
.nav-icon:hover {
    background-color: #e0edd5;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border-radius: 2px;
    padding: 10px 0;
    z-index: 1000;
    margin-top: 0px;
}

.dropdown-menu a {
    color: #255a00;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
}

.dropdown-menu a:hover {
    background-color: #e0edd5;
    text-decoration: none;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Mobile Navigation */
.mobile-menu {
    display: none;
    background-color: rgba(37, 90, 0, 0.95);
    padding: 20px;
    width: 100%;
    z-index: 1000;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin: 15px 0;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 10px 0;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: #60b31d;
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
}

.close-menu {
    color: white;
    font-size: 30px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
}

.close-menu:hover {
    color: #60b31d;
}

/* Section 3: Hero Section */
.hero-start {
    background-color: #5e7c4a;
    padding: 0px 0;
}
.hero {
    background-color: #5e7c4a;
    padding: 60px 0;
}
.hero-layout {
    display: flex;
    align-items: stretch;
    gap: 0px;
    min-height: 550px;
    padding: 0;
    margin: 0;
}

.hero-overlay {
    flex: 1;
    background-color: rgba(37, 90, 0, 0.6);
    padding: 40px;
    display: flex;
    align-items: center;
}

.hero-image {
    flex: 1;
    max-width: 50%;
    object-fit: cover;
}

.hero-content {
    color: white;
}

.hero-content h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    color: white;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #255a00;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #1a4000;
}

.btn-hero {
    background-color: white;
    color: #255a00;
}

.btn-hero:hover {
    background-color: rgba(255, 255, 255, 0.8);
    opacity: 0.9;
}

/* Email Links */
.email-link {
    display: inline-block;
    padding: 12px 30px;
    background-color: #255a00;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.email-link:hover {
    background-color: #1a4000;
    text-decoration: none;
}

/* Section 4a: Therapy Buttons */
.therapy-buttons {
    background-color: #e0edd5;
    padding: 60px 0;
}

.therapy-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0px;
}

.therapy-item {
    text-align: center;
    padding: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 200px;
}

.line-left-right{
	border-width: 0px 2px 0px 2px;
		border-style: solid;
	border-color: #60b31d;
}
.line-right{
	border-width: 0px 2px 0px 0px;
		border-style: solid;
	border-color: #60b31d;
}
.therapy-item:hover {
    background-color: #c8d8c0;
}

.therapy-item img {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
    object-fit: cover;
    flex-shrink: 0;
}

.therapy-details h3 {
	font-size: 1rem;
	margin-bottom: 10px;
}

.arrow-down {
    color: #60b31d;
    font-size: 20px;
    font-weight: bold;
    margin-top: auto;
    margin-bottom: 10px;
}

/* Section 4b: Therapy Details */
.therapy-details {
    background-color: #eff6e8;
    padding: 60px 0;
    display: block;
}
.therapy-details h2{
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.therapy-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.therapy-image {
    flex: 1;
    max-width: 600px;
}

.therapy-image img {
	padding: 20px;
	width: 100%;
	height: auto;
	border: 2px solid #60b31d;
	border-radius: 3px;
}

.therapy-text {
    flex: 1;
}

.therapy-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.therapy-text p {
    line-height: 1.4;
    margin-bottom: 30px;
}

/* Section 5: Therapists */
.therapists {
    background-color: #e0edd5;
    padding: 60px 0;
}

.therapists h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.therapists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.therapist-card {
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.therapist-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
    background-color: #e0edd5;
    border: 2px solid #60b31d;
}

.therapist-image:not([src]), 
.therapist-image[src=""], 
.therapist-image[src*="muster.png"] {
    background-color: #e0edd5;
    border: 2px solid #60b31d;
    position: relative;
}

.therapist-image:not([src])::after, 
.therapist-image[src=""]::after, 
.therapist-image[src*="muster.png"]::after {
    content: "Foto";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #255a00;
    font-size: 14px;
    font-weight: bold;
}

.therapist-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.therapist-card p {
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Section 6: Footer */
.footer {
    background-color: #282827;
    color: white;
    padding: 60px 0 30px;
    line-height: 1.4;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p, .footer-section a {
    color: white;
    text-decoration: none;
    line-height: 1.4;
    margin-bottom: 10px;
    display: block;
}

.footer-section a:hover {
    text-decoration: underline;
}

/* Formular */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: white;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #60b31d;
    border-radius: 5px;
    font-family: Arial, sans-serif;
}

.form-group textarea {
    height: 80px;
    resize: vertical;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Top Bar Mobile */
    .top-bar .container {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    /* Navigation Mobile */
    .nav-icons .nav-icon:not(.hamburger) {
        display: none;
    }
    
    .dropdown {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .logo {
        height: 40px;
    }
    
    /* Hero Mobile */
    .hero-layout {
        flex-direction: column;
        gap: 0px;
        background-color: rgba(37, 90, 0, 0.0);
        padding: 20px 0px;
        border-radius: 0px;
    }
    .hero-start {
        background-color: rgba(37, 90, 0, 0.9);
    }
  
    .hero-overlay {
        width: 100%;
        background-color: transparent;
        padding: 30px 20px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-image {
        display: none;
    }
    
    /* Therapy Buttons Mobile */
    .therapy-buttons {
        display: none;
    }
    
    /* Therapy Details Mobile */
    .therapy-details {
        display: block !important;
        background-color: #eff6e8;
        padding: 40px 0;
    }
    
    .therapy-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .therapy-image {
        max-width: 100%;
    }
    
    /* Therapists Mobile */
    .therapists-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Impressum & Datenschutz Mobile */
    .impressum-section,
    .datenschutz-section {
        padding: 40px 0;
    }
    
    .impressum-section h1,
    .datenschutz-section h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .impressum-content,
    .datenschutz-content {
        padding: 25px 20px;
    }
    
    .impressum-content h2,
    .datenschutz-content h2 {
        font-size: 1.5rem;
        margin: 25px 0 12px 0;
    }
    
    .impressum-content h3,
    .datenschutz-content h3 {
        font-size: 1.2rem;
        margin: 20px 0 8px 0;
    }
}

/* Tablet-spezifische Anpassungen */
@media (max-width: 1024px) and (min-width: 769px) {
    .therapy-item {
        padding: 30px 15px;
    }
    
    .therapy-buttons {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .therapy-item {
        padding: 25px 15px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .therapists h2 {
        font-size: 2rem;
    }
        .therapy-details h2 {
        font-size: 2rem;
    }


}
/* Section 3: Impressum */
.impressum-section {
    background-color: #e0edd5;
    padding: 60px 0;
}

.impressum-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.impressum-content {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.impressum-content h2 {
    color: #255a00;
    font-size: 1.8rem;
    margin: 30px 0 15px 0;
    border-bottom: 2px solid #60b31d;
    padding-bottom: 10px;
}

.impressum-content h3 {
    color: #255a00;
    font-size: 1.3rem;
    margin: 25px 0 10px 0;
}

.impressum-content p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.impressum-content a {
    color: #60b31d;
    text-decoration: none;
}

.impressum-content a:hover {
    text-decoration: underline;
}

/* Section 4: Datenschutz */
.datenschutz-section {
    background-color: #eff6e8;
    padding: 60px 0;
}

.datenschutz-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.datenschutz-content {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.datenschutz-content h2 {
    color: #255a00;
    font-size: 1.8rem;
    margin: 30px 0 15px 0;
    border-bottom: 2px solid #60b31d;
    padding-bottom: 10px;
}

.datenschutz-content h3 {
    color: #255a00;
    font-size: 1.3rem;
    margin: 25px 0 10px 0;
}

.datenschutz-content p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.datenschutz-content a {
    color: #60b31d;
    text-decoration: none;
}

.datenschutz-content a:hover {
    text-decoration: underline;
} 