/* Über Uns Seite spezifische Styles */

/* Hero Section - Wie Standorte Seite */
.hero-about {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.hero-content h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    text-align: center;
}

.hero-content p {
    color: white;
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Hauptinhalt Layout */
.about-content {
    padding: 4rem 0;
    background: white;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Bildbereich */
.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 450px;
    height: 600px;
    object-fit: cover;
    border-radius: 10px;
}

.profile-placeholder {
    width: 300px;
    height: 400px;
    background: #333;
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.profile-placeholder::before {
    content: "👤";
    font-size: 4rem;
    color: #666;
}

/* Textbereich */
.about-text {
    padding: 1rem 0;
}

.name-heading {
    color: #2c5aa0;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.title-heading {
    color: #000;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-image img {
        width: 100%;
        max-width: 350px;
        height: 450px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero-about {
        padding: 3rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .about-content {
        padding: 2rem 0;
    }
    
    .about-layout {
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .about-image img {
        width: 100%;
        max-width: 300px;
        height: 380px;
    }
    
    .name-heading {
        font-size: 2rem;
    }
    
    .title-heading {
        font-size: 1.4rem;
    }
    
    .about-text p {
        font-size: 1rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .about-image img {
        width: 100%;
        max-width: 250px;
        height: 320px;
    }
    
    .name-heading {
        font-size: 1.6rem;
    }
    
    .title-heading {
        font-size: 1.2rem;
    }
}

/* Team Section */
.team-section {
    background: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
}

.team-section h2 {
    color: #2c5aa0;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.team-motto {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 3rem;
    font-style: italic;
}

.team-photo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.team-photo-placeholder {
    width: 100%;
    max-width: 600px;
    height: 400px;
    background: #333;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.team-photo-placeholder::before {
    content: "👥";
    font-size: 5rem;
    color: #666;
}

.team-photo-placeholder::after {
    content: "Hier kommt später ein Teamfoto hin";
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #999;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

/* Responsive Design für Team Section */
@media (max-width: 768px) {
    .team-section {
        padding: 3rem 0;
    }
    
    .team-section h2 {
        font-size: 2rem;
    }
    
    .team-motto {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .team-photo-placeholder {
        height: 300px;
        max-width: 90%;
    }
    
    .team-photo-placeholder::before {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .team-section h2 {
        font-size: 1.6rem;
    }
    
    .team-motto {
        font-size: 1rem;
    }
    
    .team-photo-placeholder {
        height: 250px;
    }
    
    .team-photo-placeholder::before {
        font-size: 3rem;
    }
    
    .team-photo-placeholder::after {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }
}

/* Feedback Section */
.feedback-section {
    background: linear-gradient(rgba(26, 35, 126, 0.8), rgba(26, 35, 126, 0.8)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23222" width="1200" height="600"/><circle fill="%23333" cx="200" cy="150" r="60"/><circle fill="%23444" cx="800" cy="300" r="80"/><circle fill="%23555" cx="1000" cy="100" r="40"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.feedback-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.google-logo {
    margin-bottom: 2rem;
}

.google-logo img {
    height: 80px;
    width: auto;
}

.feedback-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
}

.feedback-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: white;
}

.feedback-icon {
    margin-bottom: 2rem;
}

.envelope-icon {
    font-size: 3rem;
    display: inline-block;
    opacity: 0.8;
}

.google-review-btn {
    display: inline-block;
    background: #4285f4;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.google-review-btn:hover {
    background: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Responsive Design für Feedback Section */
@media (max-width: 768px) {
    .feedback-section {
        padding: 3rem 0;
        background-attachment: scroll;
    }
    
    .feedback-content {
        padding: 0 1rem;
    }
    
    .google-logo img {
        height: 70px;
    }
    
    .feedback-content h2 {
        font-size: 2rem;
    }
    
    .feedback-content p {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .envelope-icon {
        font-size: 2.5rem;
    }
    
    .google-review-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .feedback-content h2 {
        font-size: 1.6rem;
    }
    
    .feedback-content p {
        font-size: 1rem;
        text-align: center;
    }
    
    .google-logo img {
        height: 60px;
    }
    
    .envelope-icon {
        font-size: 2rem;
    }
    
    .google-review-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}