/* Leistungen Page Styles - Modern & Ästhetisch */

.leistungen-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 2rem 2rem;
}

.leistungen-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.leistungen-section-title {
    font-family: 'freight-big-pro', serif;
    font-size: 2.5rem;
    color: var(--accent-brown);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.leistungen-section-subtitle {
    font-family: 'freight-big-pro', serif;
    font-size: 1.2rem;
    color: var(--text-medium);
    font-weight: 300;
}

/* Hero Section - Neues Design */
.leistungen-hero {
    margin: 65px 0 0 0;
    position: relative;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leistungen-hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.leistungen-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.leistungen-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.leistungen-hero__content {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(2px);
    padding: 3rem 7rem;
    text-align: center;
    max-width: 500px;
    width: 90%;
    filter: brightness(1.2);
}

.leistungen-hero__title {
    font-family: 'freight-big-pro', serif;
    font-size: 3rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    font-weight: 100;
    line-height: 1;
    text-transform: uppercase;
}

.leistungen-hero__subtitle {
    font-family: 'freight-big-pro', serif;
    font-size: 1.1rem;
    color: var(--text-medium);
    font-weight: 100;
    letter-spacing: 2px;
    line-height: 1.4;
}

/* Intro Section */
.leistungen-intro {
    padding: 5rem 0 0 0;
    background: white;
}

.leistungen-intro .leistungen-container {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.leistungen-intro__gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    flex: 1;
}

.leistungen-intro__image {
    overflow: hidden;
}

.leistungen-intro__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.leistungen-intro__image img:hover {
    transform: scale(1.05);
}

.leistungen-intro__title {
    font-family: 'freight-big-pro', serif;
    font-size: 2rem;
    color: var(--accent-brown);
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.leistungen-intro__features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.leistungen-intro__features li {
    font-family: 'freight-big-pro', serif;
    color: var(--text-medium);
    font-size: 1.1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 192, 161, 0.2);
    transition: var(--transition-smooth);
}

.leistungen-intro__features li:hover {
    color: var(--text-dark);
}

.leistungen-intro__features li:last-child {
    border-bottom: none;
}

.leistungen-intro__features li:before {
    content: "●";
    color: var(--accent-brown);
    display: inline-block;
    width: 1.5rem;
    margin-right: 0.5rem;
}

/* Pricing Section */
.leistungen-pricing {
    padding: 3rem 0 0 0;
    background: var(--bg-white);
}

.leistungen-pricing__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-bottom: 2rem;
}

.leistungen-pricing__card {
    background: white;
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.leistungen-pricing__card--featured {
    background: var(--bg-cream);
}

.leistungen-pricing__number {
    font-family: 'freight-big-pro', serif;
    font-size: 2rem;
    font-weight: 100;
    color: var(--accent-brown);
    text-align: center;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.leistungen-pricing__header {
    text-align: center;
    margin-bottom: 2rem;
}

.leistungen-pricing__title {
    font-family: 'freight-big-pro', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 400;
}

.leistungen-pricing__price {
    font-family: 'freight-big-pro', serif;
    font-size: 1.5rem;
    color: var(--accent-brown);
    font-weight: 100;
}

.leistungen-pricing__features {
    list-style: none;
    padding: 0;
    margin: 0 0 auto 0;
    flex-grow: 1;
}

.leistungen-pricing__features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(212, 192, 161, 0.1);
    color: var(--text-medium);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
}

.leistungen-pricing__features li:last-child {
    border-bottom: none;
}

.leistungen-pricing__features li:before {
    content: "✓";
    color: var(--accent-brown);
    font-weight: bold;
    display: inline-block;
    width: 1.5rem;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.leistungen-pricing__button {
    width: 100%;
}

.leistungen-pricing__footer {
    margin-top: 2rem;
    text-align: center;
}

.leistungen-pricing__footer .leistungen-pricing__price {
    margin-bottom: 1.5rem;
}

.leistungen-pricing__footer .leistungen-pricing__button {
    margin: 0;
}

.leistungen-pricing__note {
    text-align: center;
    color: var(--text-medium);
    font-size: 0.9rem;
    margin: 2rem 0;
}

.leistungen-pricing__note strong {
    color: var(--text-dark);
}

/* Shooting Steps */
.shootingssteps-content {
    display: flex;
    justify-content: center;
}

.leistungen-shootingsteps__button {
    padding: 1rem 3rem;
}

/* FAQ Section */
.leistungen-faq {
    padding: 3rem 0;
    background: var(--bg-white);
}

.leistungen-faq__title {
    font-family: 'freight-big-pro', serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 100;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.leistungen-faq__subtitle {
    font-family: 'freight-big-pro', serif;
    font-size: 1.2rem;
    color: var(--text-medium);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 100;
    letter-spacing: 1px;
}

.leistungen-faq__container {
    max-width: 800px;
    margin: 0 auto;
}

.leistungen-faq__item {
    margin-bottom: 1rem;
    overflow: hidden;
    background: white;
    box-shadow: 0 5px 15px rgba(61, 53, 42, 0.1);
}

.leistungen-faq__question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: 'freight-big-pro', serif;
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 400;
}

.leistungen-faq__question:hover {
    background: var(--bg-cream);
}

.leistungen-faq__item.active .leistungen-faq__question {
    background: var(--bg-cream);
}

.leistungen-faq__icon {
    font-size: 1.5rem;
    color: var(--accent-brown);
    font-weight: 300;
    width: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.leistungen-faq__item.active .leistungen-faq__icon {
    transform: rotate(45deg);
}

.leistungen-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--bg-cream);
}

.leistungen-faq__item.active .leistungen-faq__answer {
    max-height: 500px;
    padding: 0 2rem 2rem;
}

.leistungen-faq__answer p {
    font-family: 'freight-big-pro', serif;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Tips Section */
.leistungen-tips {
    padding: 3rem 0;
    background: var(--bg-cream);
}

.leistungen-tips__content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: white;
    box-shadow: 0 5px 20px rgba(61, 53, 42, 0.08);
}

.leistungen-tips__intro {
    font-family: 'freight-big-pro', serif;
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    text-align: center;
}

.leistungen-tips__section {
    margin-bottom: 2.5rem;
}

.leistungen-tips__section:last-child {
    margin-bottom: 0;
}

.leistungen-tips__section-title {
    font-family: 'freight-big-pro', serif;
    font-size: 1.3rem;
    color: var(--accent-brown);
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.leistungen-tips__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.leistungen-tips__list li {
    font-family: 'freight-big-pro', serif;
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.leistungen-tips__list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-brown);
    font-weight: bold;
}

/* CTA Section */
.leistungen-cta {
    padding: 3rem 0;
    background: linear-gradient(rgba(248, 244, 240, 0.95), rgba(248, 244, 240, 0.95)), url('../img/pages/newborn/newborn-cta-bg.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.leistungen-cta__content {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 40px rgba(61, 53, 42, 0.1);
}

.leistungen-cta__title {
    font-family: 'freight-big-pro', serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.leistungen-cta__subtitle {
    font-family: 'freight-big-pro', serif;
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.leistungen-cta__button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-brown);
    color: var(--text-dark);
    text-decoration: none;
    font-family: 'freight-big-pro', serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--accent-brown);
}

.leistungen-cta__button:hover {
    background: transparent;
    color: var(--accent-brown);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(61, 53, 42, 0.1);
}

.leistungen-cta__button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.leistungen-cta__button:hover:before {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .leistungen-hero {
        min-height: 600px;
    }
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
    .leistungen-container {
        padding: 0 1.5rem;
    }

    .leistungen-hero {
        height: 60vh;
    }

    .leistungen-hero__title {
        font-size: 3rem;
    }

    .leistungen-hero__subtitle {
        font-size: 1rem;
        max-width: 600px;
    }

    .leistungen-intro__gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .leistungen-pricing__container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .leistungen-section-title {
        font-size: 2.2rem;
    }

    .leistungen-faq__title {
        font-size: 2.2rem;
    }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
    .leistungen-container {
        padding: 0 1rem;
    }

    .leistungen-hero {
        height: 50vh;
        margin: 60px 0 0 0;
    }

    .leistungen-hero__content {
        width: 75%;
        padding: 3rem 1.5rem;
        text-align: center;
    }

    .leistungen-hero__title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .leistungen-hero__subtitle {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .leistungen-intro {
        padding: 3rem 0;
    }

    .leistungen-intro .leistungen-container {
        flex-direction: column;
        gap: 2rem;
    }

    .leistungen-intro__gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Mobile: All images in 2-column grid */
    .leistungen-intro__image {
        grid-column: auto;
    }

    .leistungen-intro__image img {
        height: 250px;
        object-fit: cover;
    }

    .leistungen-intro__image {
        height: 250px;
    }

    .leistungen-intro__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .leistungen-intro__content {
        padding: 0;
    }

    .leistungen-intro__title {
        font-size: 1.8rem;
    }

    .leistungen-section-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .leistungen-pricing {
        padding: 3rem 0 0 0;
    }

    .leistungen-pricing__container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .leistungen-pricing__card {
        padding: 2rem 1.5rem;
    }

    .leistungen-pricing__card--featured {
        transform: scale(1);
    }

    .leistungen-pricing__card--featured:hover {
        transform: translateY(-10px);
    }

    .leistungen-pricing__title {
        font-size: 1.3rem;
    }

    .leistungen-pricing__price {
        font-size: 2rem;
    }

    .leistungen-faq {
        padding: 3rem 0;
    }

    .leistungen-faq__title {
        font-size: 2rem;
    }

    .leistungen-tips {
        padding: 2rem 0;
    }

    .leistungen-tips__content {
        padding: 2rem 1.5rem;
    }

    .leistungen-tips__intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .leistungen-tips__section-title {
        font-size: 1.2rem;
    }

    .leistungen-faq__question {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .leistungen-faq__item.active .leistungen-faq__answer {
        padding: 0 1.5rem 1.5rem;
    }

    .leistungen-cta__title {
        font-size: 1.8rem;
    }

    .leistungen-cta__content {
        padding: 2rem 1rem;
    }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
    .leistungen-container {
        padding: 0 0.75rem;
    }

    .leistungen-hero__title {
        font-size: 2rem;
    }

    .leistungen-hero__subtitle {
        font-size: 0.85rem;
    }

    .leistungen-pricing__card {
        padding: 1.5rem 1rem;
    }

    .leistungen-faq__question {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    .leistungen-faq__item.active .leistungen-faq__answer {
        padding: 0 1rem 1rem;
    }

    .leistungen-section-title {
        font-size: 1.75rem;
    }

    .leistungen-faq__title {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .leistungen-hero {
        min-height: 500px;
    }

    .leistungen-hero__title {
        font-size: 2.5rem;
    }

    .leistungen-intro__title {
        font-size: 1.8rem;
    }

    .leistungen-section-title {
        font-size: 2rem;
    }

    .leistungen-pricing__container {
        grid-template-columns: 1fr;
    }

    .leistungen-faq__question {
        padding: 1rem 1.5rem;
    }

    .leistungen-faq__item.active .leistungen-faq__answer {
        padding: 0 1.5rem 1.5rem;
    }

    .leistungen-cta__title {
        font-size: 1.8rem;
    }
}