/* ===================================================
   ORGANISATIONS-COACH VELBERT – Hauptstylesheet
   Primär: #e11a6e | Sekundär: #4b83fc | Dunkel: #1b2336
   =================================================== */

:root {
    --primary:    #e11a6e;
    --primary-d:  #c9155e;
    --secondary:  #4b83fc;
    --dark:       #1b2336;
    --dark-2:     #2a3f5f;
    --light-gray: #f7f7f7;
    --border:     #e5e5e5;
    --text:       #333;
    --text-muted: #415674;
    --text-light: #888;
    --white:      #fff;
    --transition: all 0.35s ease;
    --shadow:     0 8px 30px rgba(0,0,0,0.1);
    --radius:     8px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

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

/* ---- BUTTONS ---- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}
.btn-primary  { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover  { background: var(--primary-d); border-color: var(--primary-d); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(225,26,110,.35); }
.btn-outline  { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover  { background: var(--white); color: var(--primary); }
.btn-full     { width: 100%; }

/* ---- SECTION HEADERS ---- */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label  { display: block; color: var(--primary); font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: .5rem; }
.section-header h2  { font-size: 2.4rem; color: var(--dark); margin-bottom: .6rem; line-height: 1.25; }
.section-header p   { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ---- REVEAL ANIMATIONS ---- */
.reveal, .reveal-right {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .65s ease, transform .65s ease;
}
.reveal-right { transform: translateX(40px); }
.reveal.visible, .reveal-right.visible { opacity: 1; transform: none; }

/* ======= HEADER ======= */
.header {
    background: var(--dark);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.logo { display: flex; align-items: center; gap: .75rem; }
.logo-img { height: 50px; width: auto; object-fit: contain; }
.logo-fallback { color: var(--primary); font-weight: 700; font-size: 1.2rem; }

.nav { display: flex; align-items: center; gap: 1.5rem; }
.nav-link { color: rgba(255,255,255,.85); font-size: .92rem; font-weight: 500; padding: 4px 0; transition: var(--transition); position: relative; }
.nav-link::after { content:''; position: absolute; bottom:-3px; left:0; width:0; height:2px; background: var(--primary); transition: width .3s; }
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }
.btn-nav { background: var(--primary); color: var(--white) !important; padding: 8px 22px; border-radius: 50px; font-size: .88rem; }
.btn-nav:hover { background: var(--primary-d); }
.btn-nav::after { display: none; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.menu-toggle span { width: 24px; height: 2.5px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px); }

/* ======= HERO ======= */
.hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    padding: 5rem 0 4rem;
}
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    z-index: 0;
    transform: scale(1.04);
    transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(110deg, rgba(27,35,54,.9) 50%, rgba(27,35,54,.55) 100%); z-index: 1; }

.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }

.hero-content h1 { font-size: 3.2rem; font-weight: 800; line-height: 1.2; margin-bottom: 1.2rem; }
.hero-content h1 span { color: var(--primary); }
.hero-label { display: inline-block; color: var(--primary); font-weight: 600; font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .5rem; }
.hero-description { font-size: 1.05rem; opacity: .9; line-height: 1.8; margin-bottom: 2rem; max-width: 480px; }

.hero-tags { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem; }
.tag { display: flex; align-items: center; gap: .4rem; background: rgba(225,26,110,.18); border: 1px solid rgba(225,26,110,.5); color: #f9a8cf; padding: 6px 14px; border-radius: 20px; font-size: .8rem; font-weight: 600; }
.tag img { width: 20px; height: 20px; object-fit: contain; }

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-person { display: flex; align-items: flex-end; justify-content: center; }
.hero-person img { max-height: 500px; width: auto; object-fit: contain; drop-shadow: 0 10px 40px rgba(0,0,0,.4); animation: floatY 4s ease-in-out infinite; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.hero-shape { position: absolute; z-index: 2; opacity: .4; pointer-events: none; }
.hero-shape-1 { bottom: -20px; left: -20px; width: 200px; }
.hero-shape-2 { top: 20px; right: 60px; width: 120px; }

/* ======= SERVICES ======= */
.services { padding: 5rem 0; background: var(--white); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.2rem 1.8rem;
    text-align: center;
    transition: var(--transition);
}
.service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 35px rgba(225,26,110,.12);
    transform: translateY(-6px);
}
.service-icon { width: 90px; height: 90px; margin: 0 auto 1.5rem; }
.service-icon img { width: 100%; height: 100%; object-fit: contain; }
.service-card h3 { font-size: 1.2rem; margin-bottom: .75rem; color: var(--dark); }
.service-card p { color: var(--text-muted); font-size: .95rem; margin-bottom: 1.2rem; }
.service-link { color: var(--primary); font-weight: 600; font-size: .9rem; transition: var(--transition); }
.service-link:hover { color: var(--primary-d); letter-spacing: .03em; }

/* ======= ABOUT ======= */
.about {
    position: relative;
    padding: 6rem 0;
    background: var(--light-gray);
    overflow: hidden;
}
.about-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .04; }
.about-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.about-image { position: relative; }
.about-image > img { border-radius: 12px; box-shadow: var(--shadow); width: 100%; object-fit: cover; max-height: 480px; }
.about-badge {
    position: absolute;
    bottom: -20px; right: -20px;
    width: 110px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: var(--shadow);
}

.about-content h2 { font-size: 2.2rem; color: var(--dark); margin: .5rem 0 1.2rem; line-height: 1.3; }
.about-content p { color: var(--text-muted); margin-bottom: 1rem; }
.about-badge-text {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(225,26,110,.07);
    border-left: 3px solid var(--primary);
    border-radius: 0 6px 6px 0;
    padding: 1rem 1.2rem;
    margin: 1.5rem 0;
}
.about-badge-text .badge-icon { font-size: 1.8rem; flex-shrink: 0; line-height: 1; }
.about-badge-text p { color: var(--dark); font-size: .92rem; line-height: 1.6; margin: 0; }
.about-badge-text p strong { color: var(--primary); }
.about-stats { display: flex; gap: 2rem; margin: 2rem 0; }
.stat { text-align: center; }
.stat-number { display: block; font-size: 2.5rem; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-label { font-size: .8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }

/* ======= WHY US ======= */
.why-us { padding: 5rem 0; background: var(--dark); color: var(--white); position: relative; overflow: hidden; }
.why-us .section-header h2 { color: var(--white); }
.why-us .section-label { color: var(--primary); }
.why-shape { position: absolute; bottom: 0; right: 0; width: 280px; opacity: .06; pointer-events: none; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.feature-box {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}
.feature-box:hover {
    background: rgba(225,26,110,.12);
    border-color: rgba(225,26,110,.35);
    transform: translateY(-4px);
}
.feature-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.feature-icon img { width: 60px; height: 60px; object-fit: contain; margin: 0 auto; filter: invert(1) brightness(2); }
.feature-box h3 { font-size: 1.1rem; margin-bottom: .65rem; color: var(--white); }
.feature-box p { color: rgba(255,255,255,.65); font-size: .9rem; }

/* ======= TESTIMONIALS ======= */
.testimonials { padding: 5rem 0; background: var(--light-gray); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,.07);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.testimonial-stars { color: var(--primary); font-size: 1.1rem; letter-spacing: .1em; }
.testimonial-card p { color: var(--text-muted); font-size: .95rem; flex: 1; font-style: italic; line-height: 1.75; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; border-top: 1px solid var(--border); padding-top: 1rem; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testimonial-author strong { display: block; color: var(--dark); font-size: .95rem; }
.testimonial-author span { font-size: .8rem; color: var(--text-light); }

/* ======= CONTACT ======= */
.contact { padding: 5rem 0; background: var(--white); }

.contact-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }

.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card { display: flex; gap: 1.2rem; align-items: flex-start; }
.contact-icon { font-size: 1.6rem; flex-shrink: 0; }
.contact-card h4 { color: var(--dark); margin-bottom: .2rem; font-size: 1rem; }
.contact-card p { color: var(--text-muted); font-size: .95rem; }
.contact-card a { color: var(--primary); font-weight: 500; }
.contact-card a:hover { text-decoration: underline; }
.contact-foto img { border-radius: var(--radius); box-shadow: var(--shadow); margin:auto; max-height: 220px; object-fit: contain; object-position: top; }

.contact-form-wrapper { background: var(--light-gray); padding: 2.5rem; border-radius: var(--radius); }
.contact-form-wrapper h3 { color: var(--dark); margin-bottom: 1.8rem; font-size: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; margin-bottom: .4rem; color: var(--dark); font-weight: 500; font-size: .9rem; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    font-size: .95rem;
    font-family: inherit;
    background: var(--white);
    color: var(--text);
    transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(225,26,110,.12);
}

/* ======= FOOTER ======= */
.footer { background: var(--dark); color: rgba(255,255,255,.8); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-logo { height: 50px; width: auto; margin-bottom: 1rem; object-fit: contain; }
.footer-section p { font-size: .9rem; line-height: 1.7; margin-bottom: .5rem; }
.footer-section h4 { color: var(--primary); font-size: .95rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: .04em; text-transform: uppercase; }
.footer-section ul li { margin-bottom: .5rem; }
.footer-section a { color: rgba(255,255,255,.7); font-size: .9rem; transition: var(--transition); }
.footer-section a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); text-align: center; padding: 1.4rem 0; font-size: .85rem; color: rgba(255,255,255,.45); }

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

@media (max-width: 960px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-person { display: none; }
    .hero { min-height: 580px; padding: 4rem 0; }
    .hero-content h1 { font-size: 2.4rem; }
    .about-inner { grid-template-columns: 1fr; }
    .about-image { max-width: 420px; margin: 0 auto; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
    .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 778px) {
    .menu-toggle { display: flex; }
    .nav {
        display: none; flex-direction: column; align-items: stretch; gap: 0;
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--dark);
        border-top: 1px solid rgba(255,255,255,.1);
        padding: .5rem 0;
    }
    .nav.active { display: flex; }
    .nav-link { padding: .9rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.06); }
    .nav-link::after { display: none; }
    .btn-nav { margin: .5rem 1.5rem; padding: .7rem 1.5rem; border-radius: 6px; text-align: center; }
    .header-inner { position: relative; }

    .section-header h2 { font-size: 1.9rem; }
    .hero-content h1 { font-size: 2rem; }
    .services-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .features-grid { grid-template-columns: 1fr; }
    .about-stats { flex-wrap: wrap; gap: 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-content h1 { font-size: 1.7rem; }
    .hero-tags { gap: .5rem; }
    .tag { font-size: .72rem; }
    .section-header h2 { font-size: 1.6rem; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; text-align: center; }
    .contact-form-wrapper { padding: 1.5rem; }
}
