/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-beige: rgb(232, 213, 196);
    --color-black: #2b2b2b;
    --color-dark-gray: #2C2C2C;
    --color-light-gray: #F5F5F5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-black);
    background-color: var(--color-beige);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--color-beige);
    color: var(--color-black);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-black);
    letter-spacing: 1px;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--color-black);
    opacity: 0.8;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--color-black);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-black);
    margin: 3px 0;
    transition: 0.3s;
}

#home {
    background-image: url("IMG_5911.JPG");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: local;
}

.hero_text {
    text-align: justify;
    background-color: rgba(232, 213, 196, 0.8);
    padding: 1em;
    letter-spacing: 10%;
    line-height: 2em;
    font-size: 1.2rem;
}

.hero_text ul {
    margin: 0 auto;
    display: table;
}

.hero_text ul,.hero_text p {
    margin-bottom: 2em;
}

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--color-beige);
    padding: 4rem 0;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--color-dark-gray);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: white;
    color: var(--color-black);
    text-decoration: none;
    border-radius: 2px;
    transition: transform 0.3s, box-shadow 0.3s;
    font-weight: 500;
    letter-spacing: 1px;
    border: 1px solid var(--color-dark-gray);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.centered {
    text-align: center;
}

/* Sections */
section {
    padding: 5rem 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
}

/* About Section */
.about {
    background-color: var(--color-beige);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-dark-gray);
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Hours Section */
.hours {
    background-color: var(--color-beige);
}

.hours-grid {
    max-width: 600px;
    margin: 0 auto 2rem;
    background-color: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 1.25rem 2rem;
    border-bottom: 1px solid var(--color-beige);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item .day {
    font-weight: 600;
}

.hours-item .time {
    color: var(--color-dark-gray);
}

.hours-note {
    text-align: center;
    font-style: italic;
    color: var(--color-dark-gray);
    margin-top: 1rem;
}

/* Services Section */
.services {
    background-color: var(--color-beige);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-black);
}

.service-card p {
    color: var(--color-dark-gray);
    margin-bottom: 1rem;
    min-height: 3rem;
}

.service-card .price {
    display: block;
    font-weight: 600;
    color: var(--color-dark-gray);
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    background-color: var(--color-beige);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-dark-gray);
}

.contact-item a {
    color: var(--color-black);
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-item a:hover {
    opacity: 0.7;
}

/* Footer */
.footer {
    background-color: var(--color-beige);
    color: var(--color-black);
    padding: 3rem 0 1.5rem;
    box-shadow: inset 0 2px 15px rgba(0, 0, 0, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--color-black);
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-copy {
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
    border-top: 1px solid rgba(232, 213, 196, 0.2);
    padding-top: 1.5rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal:target {
    display: block;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 3rem;
    max-width: 800px;
    border-radius: 4px;
    position: relative;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-dark-gray);
    text-decoration: none;
    transition: opacity 0.3s;
}

.modal-close:hover {
    opacity: 0.7;
}

.modal-content h2 {
    margin-bottom: 2rem;
    text-align: left;
}

.modal-content h3 {
    margin: 2rem 0 1rem;
    font-size: 1.25rem;
}

.modal-content h4 {
    margin: 1.5rem 0 0.75rem;
    font-size: 1.1rem;
}

.modal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Page Sections for Subpages */
.page-section {
    min-height: 60vh;
}

.page-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.page-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--color-dark-gray);
}

/* About Page Specific */
.about-values {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.about-values h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    background-color: white;
}

.value-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-dark-gray);
}

.value-item p {
    color: var(--color-dark-gray);
    line-height: 1.6;
}

/* Hours Page Specific */
.hours-info {
    max-width: 700px;
    margin: 3rem auto 0;
    text-align: center;
}

.hours-info p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.contact-box {
    background-color: white;
    padding: 2rem;
    border-radius: 4px;
    margin-top: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-box h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-box p {
    margin: 0.5rem 0;
}

.contact-box a {
    color: var(--color-black);
    text-decoration: none;
    font-weight: 600;
}

.contact-box a:hover {
    opacity: 0.7;
}

/* Services Page Specific */
.service-note {
    max-width: 800px;
    margin: 4rem auto 0;
    text-align: center;
    padding: 3rem 2rem;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-note h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.service-note p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.service-note .cta-button {
    margin-top: 1.5rem;
}

/* Legal Pages (Impressum/Datenschutz) */
.legal-page {
    background-color: var(--color-beige);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--color-beige);
    border-radius: 4px;
}

.legal-content h1 {
    text-align: center;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    color: var(--color-black);
    text-align: left;
}

.legal-content h3 {
    font-size: 1.35rem;
    margin: 2rem 0 1rem;
    color: var(--color-dark-gray);
}

.legal-content h4 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--color-dark-gray);
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

.legal-content a {
    color: var(--color-black);
    text-decoration: underline;
}

.legal-content a:hover {
    opacity: 0.7;
}

/* Footer Contact Section */
.footer-contact {
    text-align: center;
}

.footer-contact p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

.footer-contact strong {
    display: block;
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: var(--color-black);
    text-decoration: none;
}

.footer-contact a:hover {
    opacity: 0.7;
}

/* Active Navigation Link */
.nav-links a.active {
    opacity: 1;
    font-weight: 600;
}

/* Logo Link in Navigation */
.logo a {
    display: flex;
    flex-direction: column;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-beige);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 400px;
    }

    .nav-links li {
        padding: 1rem 20px;
        border-bottom: 1px solid rgba(232, 213, 196, 0.1);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    section {
        padding: 3rem 0;
    }

    section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .about-content {
        gap: 2rem;
    }

    .hours-item {
        padding: 1rem 1.5rem;
    }

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

    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .modal-content {
        margin: 10% 5%;
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .cta-button {
        padding: 0.875rem 2rem;
    }

    section h2 {
        font-size: 1.75rem;
    }
}
dl {
    display: grid;
    grid-template-columns: max-content 1fr;
}
dl h2 {
  grid-column: 1 / -1;
}
dd {
    text-align: right;
}

.extensions h2 {
    text-align: left;
}
.extensions ul {
    margin-top: 1em;
    margin-bottom: 1.5em;
    list-style: '- ';
}