/* ====================================
   KONTAKT SEITE - CLEAN & PROFESSIONAL
   ==================================== */

/* Hero Section mit Hintergrundbild */
.hero-section {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(224, 205, 178, 0.3) 0%,
        rgba(212, 193, 166, 0.25) 100%
    );
    backdrop-filter: blur(0px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    padding: 2rem;
    position: relative;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #5e4b45;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
}

.hero-content p {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: #5e4b45;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

/* Page Header entfernt - wird durch Hero ersetzt */


/* Contact Section */
.contact-section {
    padding: 4rem 2rem;
    background: #f5f0e8;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

/* Contact Info */
.contact-info {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(94, 75, 69, 0.1);
    position: sticky;
    top: 6rem;
}

.contact-info h2 {
    color: #5e4b45;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    margin-bottom: 1rem;
}

.intro-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #6d5d4d;
    margin-bottom: 2rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: #e0cdb2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon ion-icon {
    font-size: 1.5rem;
    color: #5e4b45;
}

.info-content h3 {
    color: #5e4b45;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.info-content p,
.info-content a {
    color: #6d5d4d;
    font-size: 1rem;
    margin: 0;
    text-decoration: none;
}

.info-content a:hover {
    color: #e0cdb2;
}

.social-links {
    padding-top: 2rem;
    border-top: 2px solid #f5f0e8;
}

.social-links h3 {
    color: #5e4b45;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 50px;
    height: 50px;
    background: #e0cdb2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #d4c1a6;
    transform: translateY(-3px);
}

.social-icons ion-icon {
    font-size: 1.5rem;
    color: #5e4b45;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(94, 75, 69, 0.1);
}

.contact-form h2 {
    color: #5e4b45;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    margin-bottom: 0.75rem;
}

.form-description {
    font-size: 1rem;
    color: #6d5d4d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #5e4b45;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.required {
    color: #e0cdb2;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #f5f0e8;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: #5e4b45;
    background: #faf8f5;
    transition: all 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 15px 30px;
    background: #e0cdb2;
    color: #5e4b45;
    border: none;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: #d4c1a6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(94, 75, 69, 0.2);
}

.submit-btn:active {
    transform: translateY(0);
}

.btn-icon ion-icon {
    font-size: 1.3rem;
}

.form-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #7a6860;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.6;
}

.form-note ion-icon {
    font-size: 1.2rem;
    color: #e0cdb2;
    flex-shrink: 0;
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .hero-section {
        height: 50vh;
        min-height: 350px;
        background-attachment: scroll;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-info {
        position: static;
    }
}

@media screen and (max-width: 768px) {
    .hero-section {
        height: 45vh;
        min-height: 300px;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 5vw, 2.5rem);
    }

    .hero-content p {
        font-size: clamp(1rem, 2vw, 1.2rem);
    }

    .page-header {
        padding: 3rem 1.5rem;
    }

    .contact-section {
        padding: 3rem 1.5rem;
    }

    .contact-info {
        padding: 2rem 1.5rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .info-items {
        gap: 1.25rem;
    }

    .info-icon {
        width: 40px;
        height: 40px;
    }

    .info-icon ion-icon {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 480px) {
    .contact-info {
        padding: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 14px;
    }

    .social-icons a {
        width: 45px;
        height: 45px;
    }

    .social-icons ion-icon {
        font-size: 1.3rem;
    }
}

/* Print Styles */
@media print {
    .hero-section {
        height: 200px;
        background-attachment: scroll;
        page-break-after: avoid;
    }

    .hero-overlay {
        background: rgba(224, 205, 178, 0.9);
    }

    .page-header {
        background: white;
        border-bottom: 2px solid #e0cdb2;
    }

    .contact-info,
    .contact-form-wrapper {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .submit-btn,
    .social-links {
        display: none;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}
