/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2c3e50 0%, #2c3e50 100%);
    color: #ffffff;
    padding: 120px 0 80px;
    margin-top: 0;
    text-align: center;
}

body .page-header {
    background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.85)), url('../img/bild8.jpg') center 72px/contain no-repeat !important;
    color: #ffffff;
    padding: 120px 0 80px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Exotc 350 Bd BT', Arial, sans-serif !important;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Contact Info Section */
.contact-info {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-content: center;
    padding-left: 100px;
    padding-right: 100px;
}

.contact-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    min-width: 280px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    background: none;
    border-radius: 0;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-card p {
    color: #495057;
    margin-bottom: 8px;
    font-size: 1rem;
}

/* Contact Main Section */
.contact-main {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-section h2,
.map-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 30px;
}

/* Contact Form */
.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #000000;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c3e50;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.privacy-link {
    color: #2c3e50;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.submit-btn {
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: #2c3e50;
}

/* Map Section */
.map-container {
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 12px;
}

.directions h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 25px 0 10px 0;
}

.directions h3:first-child {
    margin-top: 0;
}

.directions p {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Team Section */
.team {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.team h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000000;
    text-align: center;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    width: 100px;
    height: 100px;
    background-color: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 3rem;
}

.team-member h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.position {
    font-size: 1.1rem;
    font-weight: 500;
    color: #495057;
    margin-bottom: 8px;
}

.specialization {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 15px;
    font-style: italic;
}

.contact {
    font-size: 0.9rem;
    color: #2c3e50;
    text-decoration: none;
}

/* Success Message */
.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .contact-card {
        min-width: auto;
        min-height: 180px;
        padding: 30px 20px;
    }
    body .page-header {
        background-position: center 100px !important;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .contact-card,
    .team-member {
        padding: 30px 20px;
    }
    
    .contact-icon {
        font-size: 2.5rem;
    }
    
    .member-photo {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .contact-form-section h2,
    .map-section h2 {
        font-size: 1.8rem;
    }
    
    /* Footer mobile Anpassungen */
    .footer {
        padding: 8px 0 4px !important;
    }
    
    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        margin-bottom: 4px !important;
    }
    
    .footer-section {
        text-align: center !important;
        margin-bottom: 4px !important;
        width: 100% !important;
    }
    
    .footer-section h3,
    .footer-section h4 {
        margin-bottom: 3px !important;
        font-size: 0.95rem !important;
    }
    
    .footer-section p {
        font-size: 0.85rem !important;
        margin-bottom: 2px !important;
        line-height: 1.3 !important;
    }
    
    .footer-bottom {
        padding-top: 4px !important;
    }
    
    .footer-bottom p {
        font-size: 0.75rem !important;
    }
} 

.navbar {
    background-color: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
} 

.footer-section h3,
.footer-section h4 {
    color: #fff !important;
}

/* Captcha Styles */
.captcha-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border: 2px solid #e9ecef;
}

.captcha-question {
    font-weight: 500;
    color: #2c3e50;
    font-size: 0.95rem;
    line-height: 1.4;
}

.captcha-container input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.captcha-container input:focus {
    outline: none;
    border-color: #2c3e50;
}

.captcha-container input.valid {
    border-color: #28a745;
    background-color: #f8fff9;
}

.captcha-container input.invalid {
    border-color: #dc3545;
    background-color: #fff8f8;
}

.refresh-btn {
    background-color: #6c757d;
    color: #ffffff;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
    margin-top: 5px;
}

.refresh-btn:hover {
    background-color: #5a6268;
}

.refresh-btn:active {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

/* Captcha Error Message */
.captcha-error {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 5px;
    display: none;
}

.captcha-error.show {
    display: block;
} 