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

body {
    font-family: 'Quicksand', serif;
    background-color: #2d2d2d;
    color: #ffffff;
}

/* Header */
.header {
    background-color: #c8944d;
    text-align: center;
    padding: 15px 20px;
}

.header h1 {
    font-size: 2.0em;
    font-weight: 300;
    letter-spacing: 8px;
    color: #2d2d2d;
}

/* Hero Section (index.html only) */
.hero-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #e0e0e0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #d4a574 0%, #e8c89a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.2em;
}

/* Welcome Banner (index.html only) */
.welcome-banner {
    background-color: #c8944d;
    text-align: center;
    padding: 40px 20px;
}

.welcome-banner h2 {
    font-family: 'Sofia';
    font-size: 2.5em;
    font-weight: 400;
    color: #2d2d2d;
}

/* About Section (index.html only) */
.about-section {
    background-color: #2d2d2d;
    padding: 80px 20px;
}

.decorative-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.icon-shapes {
    display: flex;
    gap: 30px;
    align-items: flex-end;
}

.shape {
    width: 100px;
    height: 80px;
    background-color: #c8944d;
    border-radius: 50% 50% 0 0;
}

.shape.middle {
    width: 80px;
    height: 100px;
}

.halo {
    width: 120px;
    height: 40px;
    border: 3px solid #c8944d;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.about-section h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 3px;
}

/* Content Boxes */
.content-box {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    line-height: 1.8;
    color: #b0b0b0;
}

.content-box h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #ffffff;
}

/* Content Box with Image */
.content-box-with-image {
    max-width: 800px;
    margin: 0 auto 60px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.text-content {
    flex: 1;
    text-align: left;
    line-height: 1.8;
    color: #b0b0b0;
}

.text-content h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #ffffff;
}

.image-content {
    flex: 0 0 300px;
}

.image-content img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* FAQ Section (index.html only) */
.faq-section {
    background-color: #c8944d;
    padding: 60px 20px;
}

.faq-section h2 {
    text-align: center;
    font-size: 2em;
    letter-spacing: 6px;
    color: #2d2d2d;
    margin-bottom: 40px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(45, 45, 45, 0.2);
    padding: 25px 0;
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.3em;
    color: #2d2d2d;
}

.faq-arrow {
    font-size: 1.5em;
    transition: transform 0.3s;
}

.faq-item:hover .faq-arrow {
    transform: translateY(3px);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #2d2d2d;
    padding: 0 0;
}

.faq-answer p {
    padding: 20px 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

/* Back Link (impressum.html only) */
.back-link {
    text-align: center;
    padding: 20px;
    background-color: #3d3d3d;
}

.back-link a {
    color: #c8944d;
    text-decoration: none;
    font-size: 1.1em;
}

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

/* Content Section (impressum.html only) */
.content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.content h2 {
    color: #c8944d;
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 2px;
}

.content h3 {
    color: #ffffff;
    font-size: 1.3em;
    margin-top: 40px;
    margin-bottom: 15px;
}

.content p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #b0b0b0;
}

.content a {
    color: #c8944d;
}

.info-block {
    background-color: #3d3d3d;
    padding: 25px;
    border-radius: 5px;
    margin: 30px 0;
}

.info-block p {
    margin-bottom: 10px;
}

.info-block strong {
    color: #c8944d;
}

/* Footer */
.footer {
    background-color: #2d2d2d;
    padding: 60px 20px;
    text-align: center;
}

.footer-links {
    margin-bottom: 40px;
    letter-spacing: 3px;
    font-size: 0.9em;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer h3 {
    font-size: 1.2em;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.footer p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 10px;
}

.copyright {
    margin-top: 40px;
    font-size: 0.85em;
    color: #808080;
}

.powered-by {
    margin-top: 20px;
    color: #b0b0b0;
}

.powered-by img {
    max-width: 150px;
    margin-top: 10px;
}

/* Impressum Footer Variant */
.footer.impressum-footer {
    background-color: #1d1d1d;
    padding: 40px 20px;
    margin-top: 60px;
}

.footer.impressum-footer p {
    color: #808080;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 1.8em;
        letter-spacing: 4px;
    }

    .welcome-banner h2 {
        font-size: 1.8em;
    }

    .about-section h2,
    .faq-section h2 {
        font-size: 1.5em;
    }

    .content h2 {
        font-size: 1.5em;
    }

    .content-box-with-image {
        flex-direction: column;
    }
    
    .image-content {
        flex: 0 0 auto;
        width: 100%;
    }
}
