/* Use CSS variables for easy color management */
:root {
    --color-background-body: #f5f2ea; 
    --color-background-header: #295c80; 
    --color-background-header-end: #6ca1c0; 
    --color-accent-terracotta: #c47a4a; 
    --color-text-main: #333;
    --color-text-light: #fff;
    --color-text-header: #e8f2f9;
    --color-section-bg: #ffffff;
    --color-footer-bg: #e7dfd0;
    --max-content-width: 900px;
    --spacing-unit: 20px;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: var(--color-background-body);
    color: var(--color-text-main);
    font-size: 18px;
    line-height: 1.65; 
}

/* Header Styling */
.site-header {
    background: linear-gradient(135deg, var(--color-background-header), var(--color-background-header-end));
    padding: 60px var(--spacing-unit);
    text-align: center;
    border-bottom: 6px solid var(--color-accent-terracotta);
    color: var(--color-text-light);
}

.site-header h1 {
    margin: 0;
    font-size: clamp(32px, 8vw, 48px);
    letter-spacing: 4px; 
    font-weight: bold;
}

.site-header h2 {
    margin: 10px 0 0 0;
    font-size: clamp(18px, 4vw, 24px);
    color: var(--color-text-header);
    font-weight: normal;
}

/* Main Content Wrapper */
.content-wrapper {
    max-width: var(--max-content-width);
    margin: 40px auto;
    padding: 0 var(--spacing-unit);
}

/* Section Styling */
.atelier-info, .contact-info {
    padding: 30px 24px 40px;
    background: var(--color-section-bg);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-top: 4px solid var(--color-accent-terracotta);
    margin-bottom: 40px;
}

/* Image Styling */
.image-full, .portrait {
    width: 100%;
    max-width: 400px; 
    height: auto;
    border-radius: 10px;
    margin: 20px auto 40px; 
    display: block;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    object-fit: cover; 
}

/* Headings */
h3 {
    color: var(--color-accent-terracotta);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5em;
    border-bottom: 2px solid rgba(196, 122, 74, 0.1);
    padding-bottom: 5px;
}

p {
    margin-bottom: 20px;
}

/* Opening Hours List */
.hours-list {
    list-style: none; 
    padding-left: 0;
    margin-top: -5px;
}

.hours-list li {
    margin-bottom: 5px;
}

/* Contact Details */
.address-card {
    font-style: normal;
}

.address-card a {
    color: var(--color-accent-terracotta);
    text-decoration: none;
    font-weight: bold;
}

.address-card a:hover {
    text-decoration: underline;
}

.final-note {
    margin-top: 30px;
    text-align: center;
    font-style: italic;
    color: #555;
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 25px 10px;
    margin-top: 40px;
    font-size: 15px;
    color: #555;
    background: var(--color-footer-bg);
    border-top: 1px solid #d3c7b2;
}

/* --- Styling für Bild mit Unterschrift (Ersatz für <center>) --- */
.image-container {
    margin: 0;
    padding: 0;
    text-align: center; /* Zentriert Bild und Text */
}

/* Wir überschreiben den unteren Rand des Bildes innerhalb des Containers */
.image-container .image-full {
    margin-bottom: 10px; 
}

/* Das Aussehen der Unterschrift */
figcaption {
    font-size: 0.9em;
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
    font-family: Georgia, 'Times New Roman', serif;
}