/* ===================================
   Anita Helnwein – Mobile Personalbetreuung
   Color Palette: Baby Blue & White
   =================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue-50: #f0f7fc;
    --blue-100: #dceefb;
    --blue-200: #b8ddf7;
    --blue-300: #8ec8f0;
    --blue-400: #6bb5e8;
    --blue-500: #4a9fd9;
    --blue-600: #3a8bc4;
    --blue-700: #2d6e9e;
    --blue-800: #235578;
    --blue-900: #1a3d55;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e2e6ea;
    --gray-300: #ced4da;
    --gray-400: #adb5bd;
    --gray-500: #6c757d;
    --gray-600: #495057;
    --gray-700: #343a40;
    --gray-800: #212529;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50%;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--gray-800);
    line-height: 1.3;
}

a {
    color: var(--blue-500);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--blue-700);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}


/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: var(--blue-100);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--blue-600);
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.7rem;
    font-weight: 300;
    color: var(--gray-500);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 8px;
}

.nav-link {
    display: inline-block;
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray-600);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-link:hover {
    color: var(--blue-600);
    background: var(--blue-50);
}

.nav-link--cta {
    background: var(--blue-500);
    color: var(--white) !important;
    font-weight: 600;
    padding: 10px 24px;
}

.nav-link--cta:hover {
    background: var(--blue-600) !important;
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    position: relative;
    transition: all var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    left: 0;
    transition: all var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

/* Hamburger active */
.nav-toggle.active .hamburger {
    background: transparent;
}
.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}
.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}


/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.2;
}

.btn-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--blue-500);
    color: var(--white);
    border-color: var(--blue-500);
}

.btn-primary:hover {
    background: var(--blue-600);
    border-color: var(--blue-600);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--blue-600);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--blue-50);
    border-color: var(--blue-50);
    color: var(--blue-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.15rem;
}


/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--blue-400) 0%, var(--blue-300) 30%, var(--blue-200) 60%, var(--blue-100) 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.15) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 0 100px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.hero-title span {
    font-weight: 400;
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 3;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}


/* --- Sections --- */
.section {
    padding: 100px 0;
}

.section-white {
    background: var(--white);
}

.section-light {
    background: var(--blue-50);
}

.section-blue {
    background: linear-gradient(135deg, var(--blue-400) 0%, var(--blue-500) 50%, var(--blue-600) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}

.section-title--light {
    color: var(--white);
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--blue-400);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-divider--light {
    background: rgba(255,255,255,0.5);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.section-subtitle--light {
    color: rgba(255,255,255,0.85);
}


/* --- About Section --- */
.about-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--blue-100), var(--blue-50));
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--blue-400);
    border: 2px dashed var(--blue-200);
}

.about-image-placeholder svg {
    width: 64px;
    height: 64px;
    opacity: 0.5;
}

.about-image-placeholder span {
    font-size: 0.85rem;
    opacity: 0.6;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 4px;
}

.about-role {
    color: var(--blue-500);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.about-text p {
    margin-bottom: 16px;
    color: var(--gray-600);
}

.about-values {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.value-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-600);
    font-weight: 600;
    font-size: 0.9rem;
}

.value-item svg {
    width: 20px;
    height: 20px;
}


/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--blue-100);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-200);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--blue-50);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--blue-500);
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: var(--blue-500);
    color: var(--white);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

.service-card p {
    color: var(--gray-500);
    font-size: 0.92rem;
    line-height: 1.7;
}


/* --- Steps --- */
.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step {
    text-align: center;
    padding: 0 40px;
    flex: 1;
    max-width: 320px;
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--blue-400), var(--blue-500));
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 24px;
    box-shadow: 0 4px 15px rgba(74, 159, 217, 0.3);
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

.step p {
    color: var(--gray-500);
    font-size: 0.92rem;
}

.step-connector {
    width: 80px;
    height: 2px;
    background: var(--blue-200);
    margin-top: 32px;
    flex-shrink: 0;
}


/* --- Hiring / Wir suchen --- */
.hiring-content {
    max-width: 750px;
    margin: 0 auto;
}

.hiring-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px 44px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--blue-100);
}

.hiring-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--blue-400), var(--blue-500));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: var(--white);
}

.hiring-icon svg {
    width: 36px;
    height: 36px;
}

.hiring-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.hiring-card > p {
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.8;
}

.hiring-details {
    margin: 28px 0;
}

.hiring-details h4 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--blue-600);
    margin-bottom: 14px;
}

.hiring-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hiring-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.hiring-list li svg {
    width: 20px;
    height: 20px;
    color: var(--blue-500);
    flex-shrink: 0;
}

.hiring-cta-text {
    margin-top: 32px;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 1.05rem;
}

.hiring-cta {
    margin-top: 24px;
}

@media (max-width: 768px) {
    .hiring-card {
        padding: 32px 24px;
    }
}


/* --- Contact Section --- */
.contact-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-card {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    color: var(--white);
}

.contact-item + .contact-item {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-details h3 {
    color: var(--white);
    font-size: 0.85rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-phone {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white) !important;
    font-family: 'Open Sans', sans-serif;
}

.contact-details p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 2px;
}

.contact-note {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-top: 12px;
}


/* --- Footer --- */
.footer {
    background: var(--gray-800);
    color: var(--gray-400);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    display: block;
}

.footer-desc {
    font-size: 0.8rem;
    opacity: 0.6;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.85rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-legal p {
    font-size: 0.8rem;
    opacity: 0.5;
}


/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }


/* --- Responsive --- */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 220px 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Mobile Nav */
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px 24px 30px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.4s ease;
        border-bottom: 1px solid var(--blue-100);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 14px;
        font-size: 1rem;
    }

    .nav-link--cta {
        margin-top: 8px;
    }

    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-placeholder {
        max-width: 250px;
        margin: 0 auto;
    }

    .about-values {
        flex-wrap: wrap;
        gap: 20px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Steps */
    .steps {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .step {
        padding: 0 20px;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        margin: 16px auto;
    }

    /* Section */
    .section {
        padding: 70px 0;
    }

    /* Hero */
    .hero-content {
        padding: 100px 0 80px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 24px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-phone {
        font-size: 1.2rem;
    }
}
