/* Reset und Grundlagen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Barlow', 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Header */
header {
    padding: 20px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

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

.logo a {
    display: block;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

nav a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

nav a:hover,
nav a.active {
    color: #faa420;
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #faa420;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: #ffffff;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.profile-image {
    flex: 0 0 250px;
}

.profile-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
}

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

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 300;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.cities-icons {
    margin-top: 30px;
}

.cities-icons img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2c2c2c;
    font-weight: 300;
}

.services-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.service-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: 25px;
}

.service-icon img {
    width: 180px;
    height: auto;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 400;
}

.service-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.coming-soon {
    font-style: italic;
    color: #999;
    margin-top: 10px;
}

/* Footer */
footer {
    padding: 30px 0;
    background-color: #2c2c2c;
    color: #ffffff;
    text-align: center;
}

footer p {
    font-size: 0.9rem;
}

/* Page Header */
.page-header {
    padding: 60px 0 40px;
    background-color: #f8f8f8;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #2c2c2c;
    font-weight: 300;
}

/* Services Detailed Page */
.services-detailed {
    padding: 60px 0;
}

.service-detail {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e0e0e0;
    align-items: flex-start;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail-icon {
    flex: 0 0 200px;
}

.service-detail-icon img {
    width: 100%;
    height: auto;
}

.service-detail-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 400;
}

.service-detail-content ul {
    list-style: none;
    padding: 0;
}

.service-detail-content li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.service-detail-content li::before {
    content: '−';
    position: absolute;
    left: 0;
    color: #faa420;
    font-weight: bold;
}

.coming-soon-text {
    font-style: italic;
    color: #999;
}

/* Bio Page */
.bio-content {
    padding: 60px 0;
}

.bio-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.bio-image {
    flex: 0 0 250px;
}

.bio-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.bio-text {
    flex: 1;
}

.bio-text h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2c2c2c;
    font-weight: 300;
}

.job {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.job:last-child {
    border-bottom: none;
}

.job h3 {
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 8px;
    font-weight: 500;
}

.job-location {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.job-title {
    color: #faa420;
    font-weight: 500;
    margin-bottom: 10px;
}

.job-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Contact Page */
.contact-content {
    padding: 60px 0;
}

.contact-intro {
    text-align: center;
    margin-bottom: 50px;
}

.contact-intro p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 10px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c2c2c;
    font-weight: 500;
}

.contact-item p,
.contact-item a {
    color: #555;
    text-decoration: none;
    font-size: 1rem;
}

.contact-item a:hover {
    color: #faa420;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Contact Form */
.contact-form-wrapper {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #faa420;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    background-color: #faa420;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #0056b3;
}

/* Footer */
footer {
    padding: 30px 0;
    background-color: #2c2c2c;
    color: #ffffff;
    text-align: center;
}

footer p {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }

    nav li {
        border-bottom: 1px solid #f0f0f0;
    }

    nav li:last-child {
        border-bottom: none;
    }

    nav a {
        display: block;
        padding: 15px 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Hero */
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .profile-image {
        flex: 0 0 200px;
    }

    .profile-image img {
        width: 200px;
        height: 200px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .services h2,
    .page-header h1 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cities-icons img {
        max-width: 100%;
    }

    /* Services Detail */
    .service-detail {
        flex-direction: column;
        gap: 20px;
    }

    .service-detail-icon {
        flex: 0 0 150px;
        margin: 0 auto;
    }

    /* Bio */
    .bio-layout {
        flex-direction: column;
        gap: 30px;
    }

    .bio-image {
        flex: 0 0 200px;
        margin: 0 auto;
    }

    /* Contact */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }

    .services {
        padding: 40px 0;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .profile-image {
        flex: 0 0 150px;
    }

    .profile-image img {
        width: 150px;
        height: 150px;
    }

    .page-header {
        padding: 40px 0 30px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .services-detailed,
    .bio-content,
    .contact-content {
        padding: 40px 0;
    }
}

/* Portfolio Grid Section */
.portfolio-grid-section {
    padding: 60px 0;
}

.portfolio-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-top: 10px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.portfolio-item {
    text-decoration: none;
    color: inherit;
    display: block;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f0f0f0;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-info {
    padding: 25px;
}

.portfolio-info h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #2c2c2c;
    font-weight: 500;
}

.portfolio-info p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Project Detail Page */
.project-detail {
    padding: 40px 0 80px;
}

.back-button {
    margin-bottom: 30px;
}

.back-button a {
    color: #faa420;
    text-decoration: none;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.back-button a:hover {
    color: #0056b3;
}

.project-header {
    text-align: center;
    margin-bottom: 40px;
}

.project-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #2c2c2c;
    font-weight: 400;
}

.project-subtitle {
    font-size: 1.2rem;
    color: #666;
}

.project-hero-image {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 50px;
}

.project-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-description {
    margin-bottom: 60px;
}

.project-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f8f8;
    border-radius: 8px;
}

.project-info-item h3 {
    font-size: 0.9rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}

.project-info-item p {
    font-size: 1.1rem;
    color: #2c2c2c;
    font-weight: 500;
}

.project-text {
    max-width: 800px;
    margin: 0 auto;
}

.project-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.nav-button {
    padding: 12px 30px;
    background-color: #faa420;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.nav-button:hover {
    background-color: #0056b3;
}

/* Responsive Portfolio */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .project-header h1 {
        font-size: 2rem;
    }
    
    .project-hero-image {
        max-height: 400px;
    }
    
    .project-gallery {
        grid-template-columns: 1fr;
    }
}
