/* SCHRIFTEN – selbst gehostet
   ================================ */

@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/Inter.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* DESIGN TOKENS – fempower.me
   ================================ */

:root {
    --color-pink: #fcc5d5;
    --color-black: #000000;
    --color-gray: #555555;
    --color-white: #ffffff;

    --font-main: 'Inter', sans-serif;

    --container-width: 1170px;

    --cursor-default: url('../assets/images/image-cursor.png'), auto;
    --cursor-pointer: url('../assets/images/image-pointer.png'), auto;
}

/* RESET
   ================================ */

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

/* SKIP-LINK
   ================================ */

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 0.75rem 1.25rem;
    font-weight: 700;
    z-index: 9999;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
}

/* BASIS
   ================================ */

body {
    background-color: var(--color-pink);
    color: var(--color-black);
    font-family: var(--font-main);
    font-size: 19px;
    font-weight: 500;
    line-height: 1.3;
    cursor: var(--cursor-default);
}

html {
    scroll-behavior: smooth;
}

a {
    color: var(--color-black);
    text-decoration: none;
    cursor: var(--cursor-pointer);
}

/* CONTAINER
   ================================ */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 4vw;
}

/* HEADER
   ================================ */

#site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-pink);
    z-index: 100;
    padding: 0.5vw 4vw;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-size: 3.5vw;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2vw;
}

nav ul a {
    font-size: 1.3vw;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: transform 0.2s ease;
    display: inline-block;
}

nav ul a:hover {
    transform: scale(0.92);
}

.hamburger {
    display: none;
}

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 4vw 4rem 4vw;
    background-color: var(--color-pink);
}

.hero-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--color-black);
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 4vw;
}

.hero-inner .btn {
    align-self: flex-start;
}

.hero-image {
    display: none;
}

.tagline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.hero h1 {
    font-size: 44px;
    font-weight: 600;
    line-height: 1.25em;
    margin-bottom: 1.5rem;
}

.subline {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.7;
    opacity: 0.85;
}

.pitch-teaser {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    font-style: italic;
    opacity: 0.85;
}

/* BUTTON
   ================================ */

.btn {
    display: inline-block;
    background-color: var(--color-black);
    color: var(--color-pink);
    padding: 10px 20px;
    font-size: 19px;
    font-weight: 600;
    border-radius: 0;
    cursor: var(--cursor-pointer);
    transition: background-color 300ms;
}

.btn:hover {
    background-color: var(--color-gray);
    color: var(--color-pink);
}

/* LEISTUNGEN
   ================================ */

.leistungen {
    padding: 8vw 0;
    background-color: var(--color-black);
    color: var(--color-white);
}

.leistungen h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-intro {
    margin-bottom: 3rem;
    opacity: 0.7;
}


/* KACHELN
   ================================ */

.kacheln-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3rem;
}

.kacheln-block-titel {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-pink);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.kacheln-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.kachel {
    background-color: var(--color-black);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 2rem 1.5rem;
    text-align: left;
    cursor: var(--cursor-pointer);
    transition: background-color 300ms, color 300ms, border-color 300ms;
    font-family: var(--font-main);
    font-size: inherit;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 180px;
}

.kachel:hover {
    background-color: var(--color-pink);
    color: var(--color-black);
    border-color: var(--color-pink);
}

.kachel-icon {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: transform 300ms;
}

.kachel:hover .kachel-icon {
    transform: rotate(45deg);
}

.kachel h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.kachel p {
    font-size: 0.85rem;
    opacity: 0.6;
    line-height: 1.5;
    margin-top: auto;
}

.kachel:hover p {
    opacity: 1;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-overlay[hidden] {
    display: none;
}

.modal {
    background-color: var(--color-pink);
    color: var(--color-black);
    max-width: 600px;
    width: 90%;
    padding: 3rem;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: var(--cursor-pointer);
    color: var(--color-black);
    line-height: 1;
}

.modal-close:hover {
    color: var(--color-gray);
}

.modal-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

#modal-titel {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.modal-text {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* WARUM FEMPOWER.ME
   ================================ */

.warum {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 6rem 0;
}

.warum h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.warum-text {
    margin-bottom: 4rem;
}

.warum-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.warum-text p:last-child {
    margin-bottom: 0;
}

.warum-credo {
    font-weight: 700;
    font-size: 1.25rem !important;
    border-left: 3px solid var(--color-pink);
    padding-left: 1.5rem;
    margin-top: 2rem !important;
}

.werte-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.wert {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.wert-icon {
    font-size: 1.75rem;
    color: var(--color-pink);
}

.wert h3 {
    font-size: 1.125rem;
    font-weight: 700;
}

.wert p {
    font-size: 1rem;
    line-height: 1.6;
    color: #cccccc;
}


.btn--pink {
    background-color: var(--color-pink);
    color: var(--color-black);
}

.btn--pink:hover {
    background-color: var(--color-gray);
    color: var(--color-pink);
}

/* REFERENZEN
   ================================ */

.referenzen {
    background-color: var(--color-pink);
    color: var(--color-black);
    padding: 6rem 0;
}

.referenzen h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.referenzen .section-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 4rem;
}

.referenzen-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.referenz-karte {
    background-color: var(--color-white);
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.referenz-bild {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #e0a0b8;
}

.referenz-inhalt {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-grow: 1;
}

.referenz-inhalt h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.referenz-inhalt p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-gray);
    flex-grow: 1;
}

.referenz-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-black);
    text-decoration: none;
    border-bottom: 2px solid var(--color-black);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.referenz-link:hover {
    color: var(--color-gray);
    border-bottom-color: var(--color-gray);
}

/* WER WIR SIND
   ================================ */

.team {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 6rem 0;
}

.team h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: start;
}

.team-karte {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.team-foto {
    width: 100%;
    aspect-ratio: 1 / 1; /* vorher: 3 / 4 */
    object-fit: cover;
    object-position: center top;
    display: block;
    background-color: #222222;
    border-radius: 2px;
}

.team-karte--wotan .team-foto {
    aspect-ratio: 1 / 1;
    background-color: #1a1a1a;
}

.team-inhalt {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.team-rolle {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-pink);
}

.team-inhalt h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.team-inhalt p {
    font-size: 1rem;
    line-height: 1.7;
    color: #cccccc;
}

/* BLOG-TEASER
   ================================ */

.blog-teaser {
    background-color: var(--color-pink);
    color: var(--color-black);
    padding: 6rem 0;
}

.blog-teaser h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.blog-teaser .section-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.blog-post {
    background-color: var(--color-white);
    border-radius: 2px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.blog-laden {
    color: var(--color-gray);
    font-style: italic;
}

.blog-datum {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gray);
}

.blog-titel {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.blog-excerpt {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-gray);
}

/* FAQ
   ================================ */

.faq {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 6rem 0;
}

.faq h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.faq-liste {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid #333333;
}

.faq-item:first-child {
    border-top: 1px solid #333333;
}

.faq-frage {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: var(--cursor-pointer);
    list-style: none;
    gap: 2rem;
}

/* Standard-Dreieck des Browsers entfernen */
.faq-frage::-webkit-details-marker {
    display: none;
}

.faq-frage::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-pink);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

details[open] .faq-frage::after {
    transform: rotate(45deg);
}

.faq-antwort {
    padding-bottom: 1.5rem;
}

.faq-antwort p {
    font-size: 1rem;
    line-height: 1.8;
    color: #cccccc;
}

/* KONTAKT
   ================================ */

.kontakt {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 6rem 0;
    text-align: center;
}

.kontakt h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.kontakt .section-intro {
    max-width: 560px;
    margin: 0 auto 3rem auto;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #cccccc;
}

.kontakt .btn--pink {
    display: inline-block;
    margin-bottom: 2rem;
}

.kontakt-mail {
    font-size: 1rem;
    color: #cccccc;
}

.kontakt-mail a {
    color: var(--color-pink);
    text-decoration: none;
    border-bottom: 1px solid var(--color-pink);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.kontakt-mail a:hover {
    color: var(--color-white);
    border-bottom-color: var(--color-white);
}

.kontakt-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-white);
}

.form-group input,
.form-group textarea {
    background: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    font-family: var(--font-main);
    font-size: 1rem;
    padding: 0.75rem 1rem;
    outline: none;
    transition: border-color 0.2s ease;
    cursor: var(--cursor-default);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-pink);
}

.form-group textarea {
    resize: vertical;
}

/* Placeholder */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

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

#site-footer {
    background-color: var(--color-black);
    border-top: 1px solid #222222;
    padding: 2rem 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 0.875rem;
    color: #666666;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-nav a {
    font-size: 0.875rem;
    color: #666666;
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-social {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-icon {
    color: #666666;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.social-icon:hover {
    color: var(--color-white);
}

/* HAMBURGER-MENÜ
   ================================ */

/* Hamburger-Button standardmäßig versteckt */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: var(--cursor-pointer);
    padding: 0;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--color-black);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hamburger sichtbar ab 768px */
@media (max-width: 768px) {

    .hamburger {
        display: flex;
    }

    /* Menü standardmäßig versteckt */
    #nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-pink);
        padding: 1.5rem 2rem;
        gap: 0;
        border-top: 1px solid #f0b0c8;
    }

    #nav-menu.is-open {
        display: flex;
    }

    #nav-menu li {
        border-bottom: 1px solid #f0b0c8;
    }

    #nav-menu li:last-child {
        border-bottom: none;
    }

    #nav-menu a {
        display: block;
        padding: 1rem 0;
        font-size: 1.125rem;
    }

    /* X-Animation wenn offen */
    .hamburger.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.is-open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* RESPONSIVE – 768px
   ================================ */

@media (max-width: 768px) {

    /* HEADER */
    .header-inner {
        position: relative;
    }

    /* HERO */
    .hero-inner {
        padding: 0 1.5rem;
    }

    .hero-inner h1 {
        font-size: 2.25rem;
    }

    /* LEISTUNGEN */
    .kacheln-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* WARUM */
    .werte-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* REFERENZEN */
    .referenzen-grid {
        grid-template-columns: 1fr;
    }

    /* TEAM */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* FAQ */
    .faq-frage {
        font-size: 1rem;
    }

    /* FOOTER */
    .footer-inner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

}

/* RESPONSIVE – 480px
   ================================ */

@media (max-width: 480px) {

    /* HERO */
    .hero-inner h1 {
        font-size: 1.75rem;
    }

    .hero-inner .subline {
        font-size: 1rem;
    }

    /* LEISTUNGEN */
    .kacheln-grid {
        grid-template-columns: 1fr;
    }

    /* WARUM */
    .werte-grid {
        grid-template-columns: 1fr;
    }

    /* TEAM */
    .team-grid {
        grid-template-columns: 1fr;
    }

    /* ALLGEMEIN */
    .warum h2,
    .referenzen h2,
    .team h2,
    .blog-teaser h2,
    .faq h2,
    .kontakt h2 {
        font-size: 1.75rem;
    }

}