
:root {
    color-scheme: light only;
    --primary: #e07850;          /* Modern coral-orange */
    --primary-dark: #d4633b;     /* Slightly darker */
    --primary-light: #f0a080;    /* Soft peach */
    --accent: #ff8c5a;           /* Fresh bright orange */
    --text: #2d2d2d;             /* Modern dark */
    --text-light: #5a5a5a;       /* Softer gray */
    --bg: #ffffff;               /* Clean white */
    --bg-warm: #faf8f6;          /* Very subtle warm */
    --bg-soft: #f5f3f0;          /* Soft neutral */
    --white: #ffffff;
    --error: #e74c3c;
    --success: #2ecc71;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 300;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    font-size: 17px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

a {
    color: var(--primary-dark);
}

/* ============================================
   Navigation
   ============================================ */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    z-index: 1000;
    box-shadow: 0 1px 10px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-dark);
    text-decoration: none;
    line-height: 1.3;
    flex-shrink: 0;
}

/* Im Mobile-Bereich (@media max-width: 768px) ergänzen: */
@media (max-width: 768px) {
    .logo {
        font-size: 19px;
    }
}

.logo span {
    display: block;
    font-size: 0.7rem;
    color: var(--text-light);
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 300;
    letter-spacing: 0.3px;
    line-height: 1.4;
    margin-top: 1px;
}

.nav-links {
    display: flex;
    gap: 1.8rem;
    list-style: none;
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s;
    padding-bottom: 0.25rem;
    position: relative;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text);
    transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-size: 1.2rem;
    text-decoration: none;
    color: var(--text);
}

.mobile-menu a.active {
    color: var(--primary);
}

.close-menu {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--text);
}

/* ============================================
   Hero Sections
   ============================================ */
.hero {
    min-height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 3rem;
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-warm) 100%);
    position: relative;
    overflow: hidden;
}

.hero.hero-large {
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
}

/* Hero with background image */
.hero.hero-image {
    background-size: cover;
    background-position: center 10%;
    background-repeat: no-repeat;
    position: relative;
}

/* Desktop: better image positioning */
@media (min-width: 769px) {
    .hero.hero-image {
        background-position: center -150px;
        background-attachment: fixed;
    }

    .hero.hero-image-about {
        background-position: center -50px;
        background-attachment: fixed;
    }
    
    .hero.hero-large.hero-image {
        background-position: center center;
    }
}

.hero.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(255, 255, 255, 0.7) 0%, 
        rgba(250, 248, 246, 0.65) 50%,
        rgba(255, 255, 255, 0.6) 100%
    );
}

.hero.hero-image .hero-content {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 700px;
    text-align: center;
}

.hero-content-index {
    max-width: 700px;
    text-align: center;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 2.5rem 3rem;
    border-radius: 16px;
}

.hero-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    line-height: 1.3;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

/* Highlight Button */
.highlight-btn {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--accent);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    z-index: 998;
    box-shadow: 0 4px 15px rgba(255, 140, 90, 0.35);
    transition: all 0.3s ease;
    border-radius: 25px;
}

.highlight-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 90, 0.45);
}

/* ============================================
   Buttons & CTAs
   ============================================ */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
    border-radius: 30px;
}

.btn:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(224, 120, 80, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* ============================================
   Sections
   ============================================ */
section {
    padding: 5rem 2rem;
}

.section-container {
    max-width: 800px;
    margin: 0 auto;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-dark);
    text-align: center;
}

section h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--text);
}

section p {
    margin-bottom: 1.2rem;
}

.bg-warm {
    background: var(--bg-warm);
}

/* ============================================
   Quote Block
   ============================================ */
.quote {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.quote blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.6;
}

.quote cite {
    font-style: normal;
    font-size: 0.95rem;
    opacity: 0.85;
}

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

.service-card {
    padding: 2rem;
    background: var(--white);
    border-left: 3px solid var(--primary);
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left-color: var(--accent);
}

.service-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.logo .logo-contact {
    font-size: 0.7rem;
    color: var(--text-light);
    opacity: 0.8;
    margin-top: 2px;
    display: block;
}

/* ============================================
   Expandable Service Cards
   ============================================ */
.service-card.expandable {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.service-card.expandable h4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-card.expandable h4 .toggle-icon {
    font-size: 1.4rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    font-family: 'Source Sans 3', sans-serif;
    color: var(--primary);
    flex-shrink: 0;
    margin-left: 1rem;
}

.service-card.expandable.open h4 .toggle-icon {
    transform: rotate(45deg);
}

.service-card.expandable .card-detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.3s ease;
    margin-top: 0;
}

.service-card.expandable.open .card-detail {
    max-height: 1200px;
    margin-top: 1.2rem;
}

.service-card.expandable .card-detail p {
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 0.8rem;
}

.service-card.expandable .card-detail ul {
    list-style: none;
    margin: 0.8rem 0;
    padding: 0;
}

.service-card.expandable .card-detail li {
    padding: 0.35rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.service-card.expandable .card-detail li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* ============================================
   Cost Boxes
   ============================================ */
.cost-box {
    background: var(--white);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

.cost-main {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.insurance-list {
    list-style: none;
    margin: 1.5rem 0;
}

.insurance-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
}

.insurance-list li:last-child {
    border-bottom: none;
}

/* ============================================
   Info Boxes
   ============================================ */
.info-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 600px) {
    .info-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.info-box {
    background: var(--white);
    padding: 2rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
    border-radius: 12px;
}

.info-box h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.info-box ul {
    list-style: none;
}

.info-box li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.info-box li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* ============================================
   Notice Box
   ============================================ */
.notice {
    background: linear-gradient(135deg, #fff8f5 0%, #fff5f0 100%);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    margin: 2rem 0;
    font-size: 0.95rem;
    border-radius: 0 12px 12px 0;
}

.notice strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

/* ============================================
   Profile / About Image
   ============================================ */
.about-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.profile-image-container {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(224, 120, 80, 0.2);
    border: 5px solid var(--white);
    flex-shrink: 0;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 62%;
    transform: scale(1.3);
}

.about-intro-text {
    text-align: center;
    max-width: 600px;
}

.about-intro-text p {
    font-size: 1.1rem;
}

@media (min-width: 768px) {
    .about-header {
        flex-direction: row;
        align-items: flex-start;
        gap: 3rem;
    }
    
    .profile-image-container {
        width: 300px;
        height: 300px;
    }
    
    .about-intro-text {
        text-align: left;
    }
}

/* ============================================
   Timeline
   ============================================ */
.timeline {
    margin-top: 2rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.timeline-year {
    font-weight: 500;
    color: var(--primary);
}

/* ============================================
   Contact Form
   ============================================ */
.contact-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 400;
    color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group small {
    display: block;
    margin-top: 0.3rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.form-checkbox {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.form-checkbox input {
    width: auto;
    margin-top: 0.3rem;
}

.form-checkbox label {
    margin: 0;
    font-size: 0.9rem;
}

.form-message {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ============================================
   Contact Info
   ============================================ */
.contact-info {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--primary-dark);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* ============================================
   Footer
   ============================================ */
footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #c45a30 100%);
    color: var(--white);
    text-align: center;
    padding: 2.5rem 2rem;
    font-size: 0.9rem;
    margin-top: auto;
}

footer a {
    color: var(--white);
    opacity: 0.85;
    transition: opacity 0.3s;
}

footer a:hover {
    opacity: 1;
}

.footer-links {
    margin-top: 0.5rem;
    opacity: 0.8;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .hero p {
        font-size: 1rem;
    }
    
    .hero {
        min-height: 25vh;
        padding: 5rem 1.5rem 2rem;
    }
    
    .hero.hero-large {
        min-height: 90vh;
    }

    section {
        padding: 3rem 1.5rem;
    }

    section h2 {
        font-size: 1.6rem;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }

    .quote blockquote {
        font-size: 1.2rem;
    }

    .highlight-btn {
        top: auto;
        bottom: 20px;
        right: 20px;
        position: fixed;
    }
}
