/* Common Styles for Praxis Musik Klang Gespräch */
:root {
    --orange-bg: #e26b1d;
    --orange-dark: #cc5a10;
    --orange-light: #f48232;
    --text-white: #ffffff;
    --text-dark: #333333;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Temporary "new website" notice banner */
.notice-banner {
    background: #fff4e8;
    border-bottom: 3px solid #cc0000;
    color: #cc0000;
    font-weight: 800;
    font-size: 19px;
    text-align: center;
    padding: 14px 20px;
    line-height: 1.5;
}

.notice-banner .phone-link {
    color: #cc0000;
    text-decoration: underline;
}

@media (max-width: 600px) {
    .notice-banner {
        font-size: 15px;
        padding: 12px 14px;
    }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background-color: #f7f7f7;
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 900px;
    background-color: #ffffff;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #fff;
    color: var(--text-dark);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 150px;
    width: auto;
    object-fit: contain;
}

.logo-img-footer {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.top-nav {
    font-style: italic;
    font-weight: 600;
    letter-spacing: 1px;
    color: #333;
}

.top-nav span {
    margin-left: 10px;
}

/* Wavy transitions between header/footer and the orange card */
.wave-divider {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 0;
    background: #ffffff;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* Main Homepage Orange Card Section */
.main-card {
    background: linear-gradient(180deg, #ea7322 0%, #d85b0d 100%);
    padding: 40px;
    position: relative;
    overflow: hidden;
    color: var(--text-white);
}

.top-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-info h1 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-info h2 {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 2px;
}

.contact-info h3 {
    font-size: 15px;
    font-weight: normal;
    margin-bottom: 20px;
    opacity: 0.9;
}

.contact-details {
    font-size: 15px;
    line-height: 1.8;
}

.contact-details div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details a {
    color: white;
    text-decoration: none;
}

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

.image-container img {
    width: 100%;
    height: 100%;
    max-height: 220px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.service-column h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-column ul {
    list-style: none;
}

.service-column li {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
    position: relative;
    padding-left: 18px;
}

.service-column li::before {
    content: '»';
    position: absolute;
    left: 0;
    top: -1px;
    font-size: 16px;
}

/* Decorative Watermark Emblem (echoes the logo mark) */
.watermark {
    position: absolute;
    bottom: -40px;
    right: 10px;
    width: 240px;
    height: 240px;
    background-image: url('logo-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.4;
    mix-blend-mode: soft-light;
    pointer-events: none;
    z-index: 1;
}

/* Sub-page Content Card (Impressum / Datenschutz) */
.content-card {
    background: #ffffff;
    padding: 40px;
    border-top: 4px solid #f39200;
    border-bottom: 4px solid #f39200;
    line-height: 1.7;
    color: var(--text-dark);
}

.content-card h1 {
    color: var(--orange-dark);
    font-size: 26px;
    margin-bottom: 20px;
}

.content-card h2 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 10px;
    color: #b85232;
}

.content-card p {
    margin-bottom: 15px;
}

.content-image {
    width: 95%;
    height: 700px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    border: 2px solid rgba(226, 107, 29, 0.25);
    margin-bottom: 24px;
    display: block;
}

.content-card ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.content-card li {
    margin-bottom: 8px;
}

.content-card a {
    color: var(--orange-dark);
    text-decoration: none;
}

.content-card a:hover {
    text-decoration: underline;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--orange-dark);
    text-decoration: none;
    font-weight: 600;
}

.back-link:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #fff;
    color: var(--text-dark);
    font-size: 13px;
}

.footer-nav {
    font-style: italic;
    font-weight: bold;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    margin-left: 10px;
}

.footer-links a:hover {
    color: #000;
}

.footer-logo-link {
    display: inline-block;
    line-height: 0;
}

.footer-logo-link img {
    transition: opacity 0.2s ease;
}

.footer-logo-link:hover img {
    opacity: 0.75;
}

/* Responsive Design */
@media (max-width: 768px) {
    header, footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .top-section {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .wave-divider {
        height: 28px;
    }
}
