/* ==========================================================================
   ZARA BEAUTY - KONTAKT SEITE CSS
   Kontaktformular, Google Maps, reCAPTCHA Integration
   ========================================================================== */

@import url("contact-hero.css");

/* ==========================================================================
   KONTAKT SEKTION
   ========================================================================== */

.contact-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-serif, 'Playfair Display', serif);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--color-text, #2c3e50);
    font-weight: 700;
}

.contact-details {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--color-accent, #d4af37);
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-item p {
    margin: 0;
    line-height: 1.6;
    color: #666;
}

.contact-item a {
    color: var(--color-accent, #d4af37);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* ==========================================================================
   KONTAKTFORMULAR
   ========================================================================== */

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--color-text, #2c3e50);
    font-weight: 600;
}

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

.form input,
.form select,
.form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
    outline: none;
    border-color: var(--color-accent, #d4af37);
    background: white;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 3rem;
}

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

/* reCAPTCHA Styling */
.g-recaptcha {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
}

/* Submit Button - Gleiche Farbe wie andere Buttons */
.form .btn {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #7cb342 0%, #689f38 100%);
    color: white;
    border: 2px solid #8bc34a;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(139, 195, 74, 0.3);
}

.form .btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #689f38 0%, #558b2f 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 195, 74, 0.4);
}

.form .btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    display: none;
}

/* Form Messages */
.form-messages {
    margin-top: 1.5rem;
}

.form-success,
.form-error {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.form-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.form-success p,
.form-error p {
    margin: 0;
    font-weight: 500;
}

/* ==========================================================================
   LOCATION MAP SEKTION
   ========================================================================== */

.location-map {
    padding: 4rem 0;
    background: #f8f9fa;
}

.location-map h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--color-text, #2c3e50);
    font-weight: 700;
}

.map-container {
    margin: 2rem 0 3rem 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.location-info {
    margin-top: 3rem;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.location-icon {
    font-size: 1.5rem;
    min-width: 2rem;
    text-align: center;
}

.location-text strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-accent, #d4af37);
    font-weight: 600;
}

.location-text p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-details,
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-info h2,
    .location-map h2 {
        font-size: 1.8rem;
    }
    
    .contact-form h3 {
        font-size: 1.5rem;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .location-item {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .contact-details,
    .contact-form {
        padding: 1rem;
    }
    
    .form input,
    .form select,
    .form textarea {
        padding: 0.8rem;
    }
    
    .form .btn {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .location-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .location-icon {
        font-size: 2rem;
    }
}

