/* Elegante Typografie */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Playfair+Display:wght@400;500;600&display=swap');

:root {
    --bg: #f6f2ec;          /* Sand */
    --bg-alt: #ffffff;
    --text: #2e2e2e;
    --accent: #8fa39b;      /* Soft Sage */
    --accent-light: #b9c7c2;
    --accent-dark: #6c7d77;
    --radius: 14px;
    --shadow: 0 6px 22px rgba(0,0,0,0.06);
    --max-width: 900px;
}

/* Dark Mode – automatisch, wenn das System dunkel ist */
@media (prefers-color-scheme: dark) {
    :root {
        --bg: #1e1e1e;              /* sehr dunkles Sand/Schiefer */
        --bg-alt: #2a2a2a;          /* Kartenhintergrund */
        --text: #f2f2f2;            /* heller Text */
        --accent: #8fa39b;          /* bleibt gleich – wirkt edel */
        --accent-light: #aebdb8;
        --accent-dark: #6c7d77;
        --shadow: 0 6px 22px rgba(0,0,0,0.4);
    }

button {
    color: inherit;
}


    body {
        background: var(--bg);
        color: var(--text);
    }

    .card,
    .price-card,
    .schedule-card,
    .contact-form,
    .map-wrapper {
        background: var(--bg-alt);
        box-shadow: var(--shadow);
    }

    .site-header,
    .site-footer {
        background: var(--bg);
    }

    .site-nav a {
        color: var(--text);
    }

    .button {
        background: var(--accent);
        color: #fff;
    }

    input, textarea {
        background: #333;
        color: var(--text);
        border: 1px solid #555;
    }

    ::placeholder {
        color: #aaa;
    }
    
.dark-mode .contact-link {
    color: #8fcac4 !important; /* helles Petrol */
}


    
    .dark-mode a {
    color: #8fcac4; /* helles Petrol */
}

    
    .dark-mode .nav-toggle svg,
.dark-mode .nav-toggle::before,
.dark-mode .nav-toggle::after {
    color: #f2f2f2 !important;
    fill: #f2f2f2 !important;
}



    
}


/* Grundlayout */
body {
    background: var(--bg);
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.65;
    margin: 0;
}

/* Überschriften */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: var(--text);
}

/* Header */
.site-header {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    text-decoration: none;
    color: var(--text);
}

/* Navigation */
.nav-toggle {
    background: none;
    border: 1px solid #ccc;
    padding: 0.4rem 0.6rem;
    border-radius: var(--radius);
    cursor: pointer;
}

.site-nav {
    display: none;
}

.site-nav--open {
    display: block;
}

.site-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-nav a {
    text-decoration: none;
    color: var(--text);
    padding: 0.5rem 0.75rem;
    display: inline-block;
}

/* Hero */
.hero {
    padding: 5rem 1.5rem;
    text-align: center;
}

.hero-text {
    max-width: 600px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.6rem;
    margin-bottom: 0.5rem;
}

.button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.7rem 1.4rem;
    background: var(--accent);
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
}

/* Content */
.content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* Cards */
.card {
    background: var(--bg-alt);
    padding: 1.8rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Grid */
.grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 720px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Studio image */
.studio-image img {
    width: 100%;
    border-radius: var(--radius);
}

/* Stundenplan */
.schedule-cards {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.schedule-card {
    background: var(--bg-alt);
    padding: 1.8rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: grid;
    gap: 0.4rem;
}

.schedule-day {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 500;
}

.schedule-time {
    font-weight: 500;
    color: var(--accent-dark);
}

.schedule-level {
    font-size: 0.9rem;
    color: #777;
}

/* Preise */
.price-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.price-card {
    background: var(--bg-alt);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.price-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.price-card .price {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--accent-dark);
}

@media (min-width: 720px) {
    .price-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Kontaktformular */

.contact-link {
    color: #2a8c8c; /* Petrol wie dein Logo */
    text-decoration: none;
}

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


.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.7rem;
    border-radius: var(--radius);
    border: 1px solid #ccc;
    font: inherit;
    margin-bottom: 1rem;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 2rem 1rem;
    color: #666;
}
.site-footer a {
    color: var(--accent-dark);
    text-decoration: none;
    margin: 0 0.3rem;
}

.site-footer a:hover {
    text-decoration: underline;
}

.editorial-gallery {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.editorial-gallery img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    object-fit: cover;
    height: 320px;
}
.logo-image {
    height: 180px;
    width: auto;
    display: block;
}


.darkmode-toggle {
    background: var(--bg-alt);
    border: 1px solid #ccc;
    color: var(--text);
    padding: 0.4rem 0.7rem;
    border-radius: var(--radius);
    cursor: pointer;
    margin-left: 1rem;
    font-size: 1rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.darkmode-toggle:hover {
    background: var(--accent);
    color: #fff;
}
