/* assets/css/contact.css */

/* Hero Section */
.contact-hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--moonflow-gradient);
    opacity: 0.1;
    z-index: -1;
}

.contact-hero-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--moonflow-gradient);
    opacity: 0.1;
    z-index: -1;
}

/* Contact Info Card */
.contact-info {
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-info h2 {
    color: var(--moonflow-purple);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--moonflow-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-text h3 {
    font-size: 1.1rem;
    color: var(--moonflow-purple);
    margin-bottom: 0.5rem;
}

.contact-text a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-text a:hover {
    color: var(--moonflow-purple);
}

/* Social Media */
.contact-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
}

.social-link {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--moonflow-purple);
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.social-link:hover {
    background: var(--moonflow-gradient);
    color: white;
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form h2 {
    color: var(--moonflow-purple);
    margin-bottom: 2rem;
}

.form-label {
    font-weight: 500;
    color: #495057;
}

/* Map Section */
.map-section .card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container {
    position: relative;
    height: 450px;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Modal Anpassungen */
.modal-content {
    border-radius: 15px;
}

.modal-header {
    background: var(--moonflow-gradient);
    color: white;
    border-radius: 15px 15px 0 0;
    border-bottom: none;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .contact-hero {
        padding: 3rem 0;
    }
    
    .contact-info {
        margin-bottom: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
    
    .contact-social {
        justify-content: center;
    }
    
    .map-container {
        height: 300px;
    }
}