/* Opening Hours Styling */
.opening-hours {
    margin: 15px 0;
}

/* Impressum Modal Styles */
.impressum-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.impressum-content {
    position: relative;
    background: #fff;
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.impressum-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #999;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.impressum-close:hover {
    color: rgb(191, 151, 97);
    background: rgba(191, 151, 97, 0.1);
    transform: scale(1.1);
}

.impressum-text {
    padding: 40px;
    max-height: 75vh;
    overflow-y: auto;
    line-height: 1.6;
}

.impressum-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: rgb(191, 151, 97);
    margin-bottom: 20px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(191, 151, 97, 0.2);
}

.impressum-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: rgb(191, 151, 97);
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.impressum-text p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

.impressum-text strong {
    color: #333;
    font-weight: 600;
}

.impressum-text a {
    color: rgb(191, 151, 97);
    text-decoration: none;
    font-weight: 500;
}

.impressum-text a:hover {
    text-decoration: underline;
}

/* Responsive Impressum Modal */
@media (max-width: 768px) {
    .impressum-content {
        width: 95%;
        margin: 2% auto;
        max-height: 95vh;
    }
    
    .impressum-text {
        padding: 30px 25px;
        max-height: 85vh;
    }
    
    .impressum-text h2 {
        font-size: 24px;
    }
    
    .impressum-text h3 {
        font-size: 16px;
    }
    
    .impressum-text p {
        font-size: 13px;
        text-align: left;
    }
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    margin-bottom: 6px;
    background: rgba(191, 151, 97, 0.05);
    border-radius: 8px;
    border-left: 3px solid rgb(191, 151, 97);
    transition: all 0.2s ease;
}

.hours-row:hover {
    background: rgba(191, 151, 97, 0.1);
    transform: translateX(3px);
}

.hours-row.closed {
    background: rgba(150, 150, 150, 0.05);
    border-left-color: #999;
}

.hours-row.closed:hover {
    background: rgba(150, 150, 150, 0.1);
}

.hours-row .day {
    font-weight: 600;
    color: rgb(191, 151, 97);
    font-size: 14px;
    min-width: 60px;
}

.hours-row.closed .day {
    color: #666;
}

.hours-row .time {
    font-size: 13px;
    color: rgb(191, 151, 97);
    text-align: right;
    flex: 1;
    font-weight: 500;
}

.hours-row.closed .time {
    color: #999;
    font-style: italic;
}

/* Kontakt Page Specific Styles */

.kontakt-header {
    padding: 60px 40px 40px;
    text-align: center;
    background: rgb(250, 243, 231);
    border-bottom: 1px solid rgba(191, 151, 97, 0.2);
}

.kontakt-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: rgb(191, 151, 97);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.kontakt-header p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Container */
.contact-container {
    background: rgb(250, 243, 231);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Two Column Layout for Contact Info */
.contact-main-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Contact Form Section */
.contact-form-section {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(191, 151, 97, 0.15);
}

.contact-form-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: rgb(191, 151, 97);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.form-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgb(191, 151, 97);
    box-shadow: 0 0 0 3px rgba(191, 151, 97, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Inter', sans-serif;
}

/* Checkbox Styles */
.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.6;
    cursor: pointer;
    color: #555;
    text-align: left;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: rgb(191, 151, 97);
    border-color: rgb(191, 151, 97);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 14px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-label a {
    color: rgb(191, 151, 97);
    text-decoration: none;
    font-weight: 500;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Verbesserte Datenschutz-Formatierung */
.datenschutz-text {
    display: block;
    margin-top: 2px;
}

.checkbox-group .checkbox-label {
    max-width: 100%;
    word-wrap: break-word;
    hyphens: auto;
}

/* Submit Button */
.submit-button {
    background: linear-gradient(135deg, rgb(191, 151, 97), rgb(160, 120, 75));
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(191, 151, 97, 0.3);
}

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

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Form Messages */
.form-message {
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 15px;
    font-weight: 500;
}

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

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

/* Contact Bottom Section */
.contact-bottom-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

/* Contact Info Section Updates */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: rgb(191, 151, 97);
    margin-bottom: 0;
    letter-spacing: 1px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.contact-info-item {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(191, 151, 97, 0.1);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(191, 151, 97, 0.3);
}

.contact-icon {
    font-size: 30px;
    margin-bottom: 15px;
}

.contact-info-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: rgb(191, 151, 97);
    margin-bottom: 10px;
}

.contact-info-item p {
    font-size: 15px;
    color: rgb(191, 151, 97);
    margin-bottom: 8px;
    line-height: 1.5;
    font-weight: 500;
}

.contact-info-item a {
    color: rgb(191, 151, 97);
    text-decoration: none;
    font-weight: 600;
}

.contact-info-item a:hover {
    text-decoration: underline;
}

.contact-detail {
    font-size: 13px;
    color: rgb(191, 151, 97);
    font-style: italic;
    font-weight: 500;
}

/* Quick Contact */
.quick-contact {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(191, 151, 97, 0.1);
    text-align: center;
}

.quick-contact h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: rgb(191, 151, 97);
    margin-bottom: 20px;
}

.quick-contact-buttons {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.quick-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.phone-btn {
    background: rgb(191, 151, 97);
    color: white;
}

.phone-btn:hover {
    background: rgb(160, 120, 75);
    transform: translateY(-2px);
}

.email-btn {
    background: transparent;
    color: rgb(191, 151, 97);
    border: 2px solid rgb(191, 151, 97);
}

.email-btn:hover {
    background: rgb(191, 151, 97);
    color: white;
    transform: translateY(-2px);
}

/* Studio Photo */
.studio-photo {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(191, 151, 97, 0.1);
}

.studio-image-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 16px;
    font-weight: 500;
}

/* Echtes Studio Bild */
.studio-image {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.studio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.studio-photo:hover .studio-img {
    transform: scale(1.05);
}

.studio-icon {
    font-size: 40px;
    margin-top: 10px;
    color: rgb(191, 151, 97);
}

.studio-description {
    padding: 20px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    text-align: center;
}

/* FAQ Section */
.faq-section {
    background: #fff;
    padding: 60px 40px;
}

.faq-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    color: rgb(191, 151, 97);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: rgb(250, 243, 231);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(191, 151, 97, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(191, 151, 97, 0.3);
}

.faq-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: rgb(191, 151, 97);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-container {
        gap: 30px;
        padding: 50px 30px;
    }
    
    .contact-main-section {
        gap: 30px;
    }
    
    .contact-bottom-section {
        gap: 30px;
    }
    
    .contact-form-section {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .kontakt-header {
        padding: 40px 20px 30px;
    }
    
    .kontakt-header h1 {
        font-size: 36px;
    }
    
    .contact-container {
        padding: 40px 20px;
        gap: 30px;
    }
    
    .contact-main-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-bottom-section {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form-section {
        padding: 25px;
    }
    
    .quick-contact-buttons {
        flex-direction: column;
    }
    
    .faq-section {
        padding: 50px 20px;
    }
    
    .faq-section h2 {
        font-size: 28px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .contact-form-section {
        padding: 20px;
    }
    
    .contact-info-section {
        gap: 25px;
    }
    
    .studio-image-placeholder {
        height: 150px;
    }
    
    .studio-image {
        height: 150px;
    }
}

/* Loading Animation */
.submit-button .button-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Animations */
.contact-info-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.contact-info-item:nth-child(1) { animation-delay: 0.1s; }
.contact-info-item:nth-child(2) { animation-delay: 0.2s; }
.contact-info-item:nth-child(3) { animation-delay: 0.3s; }
.contact-info-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Validation Styles - Entfernt die roten/grünen Linien */
.form-group input:invalid:not(:focus):not(:placeholder-shown),
.form-group select:invalid:not(:focus),
.form-group textarea:invalid:not(:focus):not(:placeholder-shown) {
    /* Keine roten Linien mehr */
}

.form-group input:valid:not(:focus):not(:placeholder-shown),
.form-group select:valid:not(:focus),
.form-group textarea:valid:not(:focus):not(:placeholder-shown) {
    /* Keine grünen Linien mehr */
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}