/*
Theme Name: Hausarztpraxis BruVi
Theme URI: https://example.com/bruvi-theme
Author: BruVi
Author URI: https://example.com
Description: Ein modernes, minimalistisches WordPress Block Theme für die Hausarztpraxis BruVi. Single-Page Design mit einfacher Pflege von Schließzeiten und Aktuelles über den Block Editor.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bruvi
Tags: one-column, custom-colors, custom-logo, editor-style, full-site-editing, block-patterns, block-styles

Hausarztpraxis BruVi Theme - Optimiert für einfache Pflege durch das Praxispersonal.
*/

/* Zusätzliche Custom Styles (ergänzend zu theme.json) */

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Stethoskop Hintergrund-Element */
.bruvi-stethoscope-bg {
    position: fixed;
    bottom: -50px;
    left: -100px;
    width: 400px;
    height: 400px;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
    color: var(--wp--preset--color--primary);
}

/* Aktiver Nav-Link */
.wp-block-navigation-item.current-menu-item a,
.wp-block-navigation-item a:hover {
    color: var(--wp--preset--color--primary) !important;
}

/* Sprechzeiten Tabelle Styling */
.bruvi-schedule-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--wp--preset--color--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.bruvi-schedule-table th {
    background: var(--wp--preset--color--primary);
    color: white;
    padding: 1.25rem 1rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.bruvi-schedule-table td {
    padding: 1.25rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--wp--preset--color--border);
    color: var(--wp--preset--color--text-medium);
}

.bruvi-schedule-table tr:last-child td {
    border-bottom: none;
}

.bruvi-schedule-table td.time {
    font-weight: 500;
    color: var(--wp--preset--color--text-dark);
}

/* Schließzeiten Karten */
.bruvi-absence-card {
    background: var(--wp--preset--color--white);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--wp--preset--color--primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

/* Aktuelles Meldungen */
.bruvi-news-item {
    background: var(--wp--preset--color--white);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--wp--preset--color--primary);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
}

.bruvi-news-item .news-date {
    font-size: 0.85rem;
    color: var(--wp--preset--color--text-light);
    margin-bottom: 0.5rem;
}

/* Button Hover Effekt */
.wp-block-button__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 163, 216, 0.4);
}

/* Bild Graustufen-Effekt */
.bruvi-grayscale img {
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

.bruvi-grayscale:hover img {
    filter: grayscale(50%);
}

/* Responsive Anpassungen */
@media (max-width: 782px) {
    .bruvi-stethoscope-bg {
        width: 250px;
        height: 250px;
        bottom: -30px;
        left: -60px;
    }
    
    .bruvi-schedule-table th,
    .bruvi-schedule-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
}
