/* Subpages CSS - Ergänzende Stile für die Unterseiten */

/* Allgemeine Stile für Unterseiten */
* {
    box-sizing: border-box;
}

.page-wrapper {
    padding: 40px 20px;
    min-height: calc(100vh - 200px);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.page-header {
    margin-bottom: 40px;
    position: relative;
}

.page-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #ff4d4d 0%, #ff8f8f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.header-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff4d4d 0%, #ff8f8f 100%);
    margin-bottom: 30px;
}

/* About Page Styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.about-text h2 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: #ffffff;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.values-list {
    margin-left: 20px;
}

.values-list li {
    margin-bottom: 15px;
}

.team-section {
    margin-top: 60px;
}

.team-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #ffffff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-member {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 77, 77, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 0 auto 20px;
}

.team-member h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #ffffff;
}

.team-member p {
    font-size: 14px;
    color: #ff4d4d;
}

/* Jobs Page Styles */
.jobs-intro {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.8;
    max-width: 800px;
}

.job-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.job-card:hover {
    border-color: rgba(255, 77, 77, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.job-card h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ffffff;
}

.job-type {
    display: inline-block;
    background-color: rgba(255, 77, 77, 0.1);
    color: #ff4d4d;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
}

.job-description {
    margin-bottom: 20px;
}

.job-card h3 {
    font-size: 18px;
    margin: 25px 0 15px;
    color: #ffffff;
}

.job-requirements, .job-benefits {
    margin-left: 20px;
    margin-bottom: 25px;
}

.job-requirements li, .job-benefits li {
    margin-bottom: 8px;
    position: relative;
}

.job-positions {
    margin: 30px 0;
}

.position-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 3px solid #ff4d4d;
}

.position-card h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #ffffff;
}

.position-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.job-apply-btn {
    display: inline-block;
    background: linear-gradient(90deg, #ff4d4d 0%, #ff8f8f 100%);
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 77, 77, 0.3);
}

.job-apply-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 77, 77, 0.4);
}

.jobs-note {
    margin-top: 50px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 77, 77, 0.2);
}

.jobs-note h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ffffff;
}

.jobs-note a {
    color: #ff4d4d;
    text-decoration: none;
    transition: all 0.3s ease;
}

.jobs-note a:hover {
    text-decoration: underline;
}

/* Contact Page Styles */
.contact-intro {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.8;
    max-width: 800px;
}

.contact-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-form-wrapper {
    width: 100%;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(255, 77, 77, 0.5);
    box-shadow: 0 0 10px rgba(255, 77, 77, 0.2);
}

.submit-btn {
    background: linear-gradient(90deg, #ff4d4d 0%, #ff8f8f 100%);
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 77, 77, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 77, 77, 0.4);
}

.contact-info {
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: #ffffff;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 18px;
    color: #ff4d4d;
    margin-right: 15px;
    margin-top: 3px;
}

.info-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #ffffff;
}

.info-item p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.social-links h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #ffffff;
}

.social-grid {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #ff4d4d;
    transform: translateY(-3px);
}

.map-section {
    margin-top: 60px;
}

.map-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ffffff;
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.map-placeholder {
    height: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.map-placeholder p {
    font-size: 18px;
    margin-bottom: 10px;
}

.map-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.load-map-btn {
    background-color: rgba(255, 77, 77, 0.8);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-map-btn:hover {
    background-color: #ff4d4d;
}

/* Footer Styles */
footer {
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 30px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ff4d4d;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Navigation Active State */
nav ul li a.active {
    color: #ff4d4d;
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image {
        order: -1;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-wrapper {
        padding: 20px 15px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-member,
    .job-card {
        padding: 20px;
    }
    
    .contact-form .form-group {
        margin-bottom: 15px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 10px;
    }
    
    .submit-btn {
        width: 100%;
        padding: 12px;
    }
    
    .contact-info {
        padding: 20px;
    }
    
    .map-container {
        height: 300px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links,
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 24px;
    }
    
    .job-card h2 {
        font-size: 20px;
    }
    
    .job-card h3 {
        font-size: 16px;
    }
    
    .contact-content {
        gap: 30px;
    }
}
