/*
Theme Name: Dr. Frühmann Frauenarzt Theme
Theme URI: https://example.com
Author: Custom Theme
Author URI: https://example.com
Description: Ein modernes WordPress-Theme für eine Frauenarztpraxis mit rosa/pink 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: fruehmann
Tags: medical, responsive, pink, sidebar
*/

/* ==========================================
   RESET & BASE STYLES
   ========================================== */

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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* ==========================================
   FARBEN - ROSA/PINK SCHEMA
   ========================================== */

:root {
    --primary-pink:#FF75C0;
    --light-pink: #FFB6D9;
    --header-pink: #F5A8D0;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --border-gray: #E0E0E0;
}

/* ==========================================
   HEADER & TOP BAR
   ========================================== */

.site-header {
    background: linear-gradient(135deg, #FFB6D9 0%, #E91E8C 100%);
    padding: 15px 0;
    color: white;
}

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

.site-branding h1 {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 5px;
}

.site-branding p {
    font-size: 14px;
    margin: 2px 0;
}

.header-contact {
    text-align: right;
    font-size: 14px;
}

.header-contact p {
    margin: 2px 0;
}

.online-booking-btn {
    background-color: white;
    color: var(--primary-pink);
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    display: inline-block;
    text-decoration: none;
}

.online-booking-btn:hover {
    background-color: #f0f0f0;
}

/* ==========================================
   HERO BANNER
   ========================================== */

.hero-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.hero-images {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%);
}

.hero-image.color {
    filter: grayscale(0%);
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.hero-overlay h2 {
    font-size: 60px;
    font-weight: bold;
    color: var(--primary-pink);
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    line-height: 1.2;
}

/* ==========================================
   BREADCRUMBS
   ========================================== */

.breadcrumbs {
    background-color: #f9f9f9;
    padding: 10px 20px;
    font-size: 14px;
    border-bottom: 1px solid var(--border-gray);
}

.breadcrumbs a {
    color: var(--primary-pink);
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* ==========================================
   MAIN LAYOUT - SIDEBAR + CONTENT
   ========================================== */

.site-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    padding: 30px 20px;
}

/* SIDEBAR NAVIGATION */
.sidebar {
    width: 250px;
    padding-right: 30px;
    flex-shrink: 0;
}

.sidebar-menu {
    list-style: none;
}

.sidebar-menu li {
    margin-bottom: 5px;
}

.sidebar-menu a {
    display: block;
    padding: 10px 15px;
    color: var(--text-dark);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    background-color: #f5f5f5;
    border-left-color: var(--primary-pink);
    color: var(--primary-pink);
}

.sidebar-menu a::before {
    content: "▸ ";
    color: var(--primary-pink);
    font-weight: bold;
    margin-right: 5px;
}

/* MAIN CONTENT AREA */
.main-content {
    flex: 1;
    background-color: white;
}

.content-wrapper {
    padding: 0 30px;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-pink);
    margin-bottom: 15px;
    font-weight: bold;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 22px;
}

p {
    margin-bottom: 15px;
    line-height: 1.8;
}

strong {
    color: var(--primary-pink);
}

/* ==========================================
   CHARTS & IMAGES
   ========================================== */

.content-image {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 4px;
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-pink);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #d1177a;
}

/* ==========================================
   FOOTER
   ========================================== */

.site-footer {
    background-color: #f5f5f5;
    padding: 30px 20px;
    margin-top: 50px;
    text-align: center;
    border-top: 3px solid var(--primary-pink);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-menu li {
    margin: 0 15px;
}

.footer-menu a {
    color: var(--text-dark);
    text-decoration: none;
}

.footer-menu a:hover {
    color: var(--primary-pink);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
    .site-content {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .header-top {
        flex-direction: column;
        text-align: center;
    }
    
    .header-contact {
        text-align: center;
        margin-top: 15px;
    }
    
    .hero-overlay h2 {
        font-size: 36px;
    }
    
    .hero-images {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-overlay h2 {
        font-size: 28px;
    }
    
    .site-branding h1 {
        font-size: 16px;
    }
    
    .content-wrapper {
        padding: 0 15px;
    }
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */

.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.pink-text {
    color: var(--primary-pink);
}
