* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Über mich Section */
.ueber-mich {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.ueber-mich-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.foto-container {
    position: relative;
    text-align: center;
}

.handwerker-foto {
    width: 300px;
    height: 350px;
    background: linear-gradient(135deg, #8B4513, #D2691E, #CD853F);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.handwerker-foto:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.handwerker-foto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><rect fill="%23654321" width="200" height="200"/><path fill="%238B4513" d="M20,20 L60,20 L60,60 L20,60 Z M80,40 L120,40 L120,80 L80,80 Z M140,20 L180,20 L180,60 L140,60 Z M40,100 L80,100 L80,140 L40,140 Z M120,120 L160,120 L160,160 L120,160 Z M60,160 L100,160 L100,200 L60,200 Z"/></svg>');
    opacity: 0.3;
}

.foto-rahmen {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid #8B4513;
    border-radius: 25px;
    background: linear-gradient(45deg, transparent, rgba(139, 69, 19, 0.1), transparent);
}

.ueber-text {
    padding: 0 1rem;
}

.ueber-text h2 {
    color: #8B4513;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.ueber-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #8B4513, #D2691E);
    border-radius: 2px;
}

.ueber-text h3 {
    color: #D2691E;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: normal;
    font-style: italic;
}

.ueber-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
}

.erfahrung-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.highlight-number {
    font-size: 2rem;
    font-weight: bold;
    color: #8B4513;
    display: block;
}

.highlight-text {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23654321" width="1200" height="600"/><path fill="%238B4513" d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z"/></svg>');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.cta-button {
    background: linear-gradient(45deg, #D2691E, #F4A460);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Termine Banner */
.termine-banner {
    background: linear-gradient(45deg, #FF6B35, #F7931E);
    color: white;
    padding: 1rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

.termine-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

.termine-content {
    position: relative;
    z-index: 2;
}

.termine-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Kategorien */
.kategorien {
    padding: 5rem 0;
    background: #f8f8f8;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #8B4513;
}

.kategorie-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.kategorie-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.kategorie-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.kategorie-image {
    height: 200px;
    background: linear-gradient(45deg, #8B4513, #D2691E);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.kategorie-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23654321" width="100" height="100"/><circle fill="%238B4513" cx="20" cy="20" r="3"/><circle fill="%238B4513" cx="80" cy="40" r="2"/><circle fill="%238B4513" cx="40" cy="80" r="2.5"/></svg>');
    opacity: 0.3;
}

.kategorie-content {
    padding: 1.5rem;
}

.kategorie-content h3 {
    color: #8B4513;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Galerie */
.galerie {
    padding: 5rem 0;
}

.galerie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.galerie-item {
    height: 250px;
    background: linear-gradient(45deg, #8B4513, #D2691E, #CD853F);
    background-size: cover;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.galerie-item:hover {
    transform: scale(1.05);
}

/* Galerie Filter */
.galerie-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid #8B4513;
    background: white;
    color: #8B4513;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.filter-btn:hover {
    background: #8B4513;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.filter-btn.active {
    background: linear-gradient(45deg, #8B4513, #D2691E);
    color: white;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.galerie-item {
    transition: all 0.3s ease;
}

.galerie-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    display: none;
}

.galerie-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><rect fill="%23654321" width="200" height="200"/><path fill="%238B4513" d="M0,0 L50,50 L0,100 Z M150,0 L200,50 L150,100 Z M50,100 L100,150 L50,200 Z M100,0 L150,50 L100,100 Z"/></svg>'); */
    opacity: 0.6;
}

.galerie-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.galerie-item:hover .galerie-overlay {
    transform: translateY(0);
}

/* Kontakt */
.kontakt {
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    padding: 5rem 0;
}

.kontakt-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.kontakt-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #8B4513;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B4513;
    box-shadow: 0 0 10px rgba(139, 69, 19, 0.2);
}

.submit-btn {
    background: linear-gradient(45deg, #8B4513, #D2691E);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1.1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.anfahrt {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.anfahrt h3 {
    color: #8B4513;
    margin-bottom: 1rem;
}

.adresse {
    background: #f8f8f8;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: #2c2c2c;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

footer a{
    color: white;
}

footer a:hover{
    color: grey;
}

footer a:active{
    color: white;
}

footer a:visited{
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

@keyframes shine {
    0% {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    100% {
        transform: translate(50%, 50%) rotate(45deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .kontakt-container {
        grid-template-columns: 1fr;
    }

    .kategorie-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .ueber-mich-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .handwerker-foto {
        width: 250px;
        height: 300px;
    }

    .erfahrung-highlights {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}