/*
Theme Name: Gut zu Fuss
Theme URI: https://proton.me/support/lumo
Author: Nicole Rüegsegger
Author URI: https://proton.me
Description: One-Page Theme für Fusspflege Praxis "Gut zu Fuss" in Gelterkinden. Grüne Farbtöne, cleanes Design.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gut-zu-fuss
Tags: one-column, custom-colors, flexible-header, theme-options
*/

/* --- GRUNDLEGENDE STYLES & VARIABLEN --- */
:root {
    --primary-color: #2E5C48;
    --accent-color: #E8F3EB;
    --text-color: #333333;
    --white: #ffffff;
    --font-heading: 'Georgia', serif;
    --font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    scroll-behavior: smooth;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

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

section {
    padding: 80px 0;
}

/* --- HEADER & NAVIGATION --- */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.custom-logo {
    height: 50px;
    width: auto;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-navigation a {
    font-weight: 500;
    color: var(--primary-color);
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: #4a8c70;
}

.btn-nav {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
}

.btn-nav:hover {
    background-color: #1e3d30;
}

/* --- HERO SECTION --- */
.hero-section {
    background-color: var(--accent-color);
    padding-top: 160px;
    padding-bottom: 100px;
    text-align: center;
}

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

.hero-section p.subtitle {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 2rem;
}

.btn-hero {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: transform 0.2s, background-color 0.3s;
}

.btn-hero:hover {
    transform: translateY(-2px);
    background-color: #1e3d30;
}

/* --- ÜBER MICH --- */
.about-section {
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* --- ANGEPASSTER PLATZHALTER FÜR DAS BILD --- */
.about-placeholder {
    background-color: transparent; /* Hintergrund entfernen */
    height: auto; /* Höhe automatisch anpassen an das Bild */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none; /* Rahmen entfernen */
    padding: 20px; /* Etwas Abstand innen */
}

/* Sicherstellen, dass das Bild selbst nicht zu groß wird */
.about-placeholder img {
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* Optional: Runde Ecken für das Bild selbst */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* Optional: Leichter Schatten für Tiefe */
}

/* --- DIENSTLEISTUNGEN --- */
.services-section {
    background-color: var(--accent-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

.payment-info {
    text-align: center;
    margin-top: 50px;
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* --- KONTAKT --- */
.contact-section {
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-details h2 {
    font-size: 2.5rem;
}

.contact-details p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-details strong {
    color: var(--primary-color);
}

.alert-box {
    background-color: #f0f8ff;
    border-left: 5px solid var(--primary-color);
    padding: 15px;
    margin-top: 20px;
    font-size: 0.95rem;
    color: #555;
}

/* --- FOOTER --- */
.site-footer {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 30px 0;
    font-size: 0.9rem;
}

.site-footer a {
    color: #ddd;
    margin: 0 10px;
}

.site-footer a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-navigation ul {
        gap: 15px;
        font-size: 0.9rem;
    }

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

    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-placeholder {
        order: -1;
        height: 200px;
    }
}