﻿:root {
    --bg: #f8f6f4;
    --surface: #ede9e5;
    --gold: #6b9b6e;
    --white: #2c3e3e;
    --text-dim: #5a6565;
    --accent: #509b82;
    --burgundy: #7d3f45;
    --wine-red: #8b4553;
    --forest-green: #4a7c59;
    --sage-green: #7b9a7e;
    --light-green: #9db89f;
    --soft-beige: #f0ebe5;
    --font-heading: 'Cormorant Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

/* UX: Custom Cursor */

body {
    background: var(--bg);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hide cursor on touch devices */
@media (hover: none) and (pointer: coarse) {

    .cursor,
    .cursor-follower {
        display: none;
    }
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 120px 0;
}

.bg-dark {
    background: var(--surface);
}

.bg-light-dark {
    background: var(--light-green);
}

.text-center {
    text-align: center;
    margin-bottom: 50px;
}

/* Custom Cursor UX */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: 0.1s;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    padding: 30px 0;
    z-index: 1000;
    transition: 0.4s;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(74, 124, 89, 0.1);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-cta {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--wine-red) 100%);
    padding: 10px 20px;
    border-radius: 50px;
    color: #ffffff !important;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(125, 63, 69, 0.35);
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--wine-red) 0%, var(--burgundy) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(125, 63, 69, 0.5);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 10px;
}

.lang-btn {
    background: transparent;
    border: 2px solid var(--forest-green);
    color: var(--forest-green);
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: 0.3s;
}

.lang-btn:hover,
.lang-btn.active {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
    color: #ffffff;
    border-color: var(--forest-green);
    box-shadow: 0 3px 10px rgba(74, 124, 89, 0.35);
}

.menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--gold);
    cursor: pointer;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--soft-beige) 0%, #e5f0e6 50%, var(--surface) 100%);
    padding-top: 120px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(123, 154, 126, 0.15) 0%, transparent 50%);
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    right: -5%;
    top: 0;
    height: 100%;
    width: 55%;
    z-index: 0;
    pointer-events: none;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.6;
    mask-image: linear-gradient(to left,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.5) 40%,
            rgba(0, 0, 0, 0.2) 70%,
            transparent 100%);
    -webkit-mask-image: linear-gradient(to left,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.5) 40%,
            rgba(0, 0, 0, 0.2) 70%,
            transparent 100%);
    filter: grayscale(20%) brightness(0.9);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 40px 0;
}

.hero-content>span {
    display: inline-block;
    font-size: 0.95rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-left: 60px;
}

.hero-content>span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 2px;
    background: var(--gold);
}

.hero h1 {
    font-size: 5.5rem;
    line-height: 1.15;
    margin: 20px 0 30px;
    font-weight: 600;
    letter-spacing: -2px;
}

.hero h1 span {
    color: var(--gold);
    font-style: italic;
    display: block;
    font-weight: 400;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--text-dim);
    margin-bottom: 40px;
    max-width: 600px;
    font-weight: 400;
}

.btn-gold {
    display: inline-block;
    padding: 20px 45px;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    margin-top: 10px;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(74, 124, 89, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(74, 124, 89, 0.6);
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--forest-green) 100%);
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid rgba(74, 124, 126, 0.35);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Cards UX */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.intro-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.intro-image-item {
    text-align: center;
}

.intro-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: block;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(74, 124, 89, 0.25);
    border: 3px solid rgba(123, 154, 126, 0.3);
}

.leistungen-layout {
    display: grid;
    grid-template-columns: 0.7fr 2.3fr;
    gap: 40px;
    align-items: start;
}

.leistungen-image-wrap {
    position: sticky;
    top: 100px;
}

.leistungen-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(74, 124, 89, 0.25);
}

.leistungen-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.card {
    padding: 40px;
    background: var(--surface);
    border: 2px solid rgba(74, 124, 89, 0.3);
    transition: 0.4s;
    border-radius: 10px;
}

.card:hover {
    border-color: var(--forest-green);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(74, 124, 89, 0.25);
    background: linear-gradient(135deg, var(--surface) 0%, rgba(157, 184, 159, 0.2) 100%);
}

.link-gold {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    display: block;
    margin-top: 20px;
}

/* Pricing & FAQ */
.price-item {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 2px solid rgba(74, 124, 126, 0.25);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

details {
    margin-bottom: 20px;
    background: var(--surface);
    border-radius: 8px;
    border: 2px solid rgba(74, 124, 89, 0.3);
    transition: all 0.3s ease;
}

details:hover {
    border-color: var(--forest-green);
    box-shadow: 0 3px 15px rgba(74, 124, 89, 0.2);
}

details[open] {
    background: linear-gradient(135deg, var(--surface) 0%, rgba(157, 184, 159, 0.25) 100%);
    border-color: var(--burgundy);
    box-shadow: 0 5px 20px rgba(125, 63, 69, 0.15);
}

summary {
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    padding: 20px 60px 20px 20px;
    list-style: none;
    position: relative;
    user-select: none;
    transition: color 0.3s ease;
    font-size: 1.05rem;
}

summary::-webkit-details-marker {
    display: none;
}

summary::before {
    content: '';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gold);
    transition: transform 0.3s ease;
}

summary::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    color: #ffffff;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

details[open] summary::after {
    content: 'âˆ’';
    transform: translateY(-50%) rotate(180deg);
}

details[open] summary {
    color: var(--gold);
    border-bottom: 1px solid rgba(143, 188, 143, 0.3);
    margin-bottom: 15px;
}

summary:hover {
    color: var(--gold);
}

details p {
    padding: 0 20px 20px 20px;
    color: var(--text-dim);
    line-height: 1.8;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Team Section */
.team-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
}

.tag {
    color: var(--gold);
    font-size: 0.95rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.info-box {
    background: var(--surface);
    padding: 20px;
    border-left: 4px solid var(--forest-green);
    margin-top: 20px;
    box-shadow: 0 2px 10px rgba(74, 124, 89, 0.15);
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 25px 0;
    line-height: 2.2;
}

.services-list li {
    color: var(--text-dim);
    font-size: 1.05rem;
    padding-left: 0;
    margin-bottom: 8px;
}

.pilates-offers {
    margin: 30px 0;
    padding: 25px;
    background: rgba(143, 188, 143, 0.08);
    border-radius: 12px;
    border-left: 4px solid var(--forest-green);
}

.pilates-offers h3 {
    color: var(--forest-green);
    font-size: 1.35rem;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 12px;
}

.pilates-offers h3:first-child {
    margin-top: 0;
}

/* Language-specific Images */
.language-image-container {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    line-height: 0;
    box-shadow: 0 10px 24px rgba(74, 124, 89, 0.18);
}

.language-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    transition: opacity 0.5s ease;
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--forest-green);
    color: var(--forest-green);
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
    transition: 0.3s;
    font-weight: 600;
    font-size: 1rem;
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
    color: #ffffff;
    border-color: var(--sage-green);
    box-shadow: 0 5px 15px rgba(74, 124, 89, 0.35);
    transform: translateY(-2px);
}

/* News Section */
.news-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.news-card {
    flex: 1;
    min-width: 300px;
    background: var(--surface);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid rgba(74, 124, 89, 0.3);
    transition: all 0.3s;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(74, 124, 89, 0.25);
    border-color: var(--burgundy);
    background: linear-gradient(135deg, var(--surface) 0%, rgba(125, 63, 69, 0.08) 100%);
}

.news-date {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.news-card h3 {
    margin: 15px 0;
}

/* Contact Form */
.contact-info {
    margin: 20px 0;
}

.contact-info p {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--gold);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    background: var(--surface);
    border: 2px solid rgba(74, 124, 89, 0.35);
    border-radius: 5px;
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--forest-green);
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a7c59' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
    appearance: none;
}

.form-group select option {
    background: var(--bg);
    color: var(--white);
}

.form-status {
    margin: 15px 0;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.success-message {
    color: #4caf50;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    padding: 15px;
    border-radius: 8px;
    margin: 0;
}

.error-message {
    color: #f44336;
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    padding: 15px;
    border-radius: 8px;
    margin: 0;
}

.call-btn {
    margin-top: 15px;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Video Section */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.video-grid.single-card {
    grid-template-columns: 1fr;
    max-width: 920px;
    margin: 40px auto 0;
}

.video-card {
    background: var(--surface);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(74, 124, 89, 0.3);
    transition: all 0.4s ease;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(74, 124, 89, 0.25);
    border-color: var(--forest-green);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #e5f0e6 0%, var(--soft-beige) 100%);
}

.video-wrapper iframe,
.video-wrapper blockquote,
.video-wrapper img,
.video-wrapper>a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-wrapper img {
    object-fit: contain;
    background: #ffffff;
    padding: 22px;
}

.video-wrapper blockquote {
    position: relative;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-info {
    padding: 25px;
}

.video-info h3 {
    color: var(--forest-green);
    margin-bottom: 12px;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.video-info p {
    color: var(--text-dim);
    line-height: 1.8;
    font-size: 1.05rem;
}

.video-subtitle {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(74, 124, 89, 0.25);
}

.video-note {
    margin-top: 14px;
    font-size: 0.98rem;
    color: var(--forest-green);
    font-weight: 600;
}


/* QR-Code Section */
.qr-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 50%, #1a0a2e 100%);
    padding: 50px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-bg {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.qr-icon-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    padding: 10px 22px;
    border-radius: 50px;
}

.qr-icon-row i {
    color: #fff;
    font-size: 1.4rem;
}

.qr-icon-row span {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.qr-code-box {
    display: block;
    background: #fff;
    padding: 16px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qr-code-box:hover {
    transform: scale(1.04);
    box-shadow: 0 16px 55px rgba(0, 0, 0, 0.55);
}

.qr-code-box img {
    width: 200px;
    height: 200px;
    display: block;
    border-radius: 10px;
}

.qr-cta-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    letter-spacing: 0.5px;
}

.instagram-embed-container {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    width: 100%;
}

.instagram-embed-container blockquote {
    margin: 0 auto !important;
}

/* =============================================
   INSTAGRAM / SOCIAL MEDIA BLOCK
   ============================================= */
.ig-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 24px;
    overflow: hidden;
    margin-top: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    min-height: 400px;
}

.ig-block-left {
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 55px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.ig-block-left::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    opacity: 0.12;
    pointer-events: none;
}

.ig-block-left::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743);
    opacity: 0.08;
    pointer-events: none;
}

.ig-brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    padding: 8px 18px;
    border-radius: 50px;
    width: fit-content;
}

.ig-brand-badge i {
    color: #fff;
    font-size: 1.2rem;
}

.ig-brand-badge span {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.ig-block-left h3 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.ig-block-left p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    width: fit-content;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(220, 39, 67, 0.35);
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(220, 39, 67, 0.5);
}

.btn-instagram i {
    font-size: 1.2rem;
}

.ig-block-right {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 40px;
}

.ig-qr-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.ig-qr-hint {
    color: #555;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ig-qr-hint i {
    color: #bc1888;
    font-size: 1.1rem;
}

.ig-qr-img {
    width: 200px;
    height: 200px;
    border-radius: 16px;
    display: block;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.ig-qr-img:hover {
    transform: scale(1.05);
}

.ig-qr-sub {
    color: #999;
    font-size: 0.85rem;
    margin: 0;
    text-align: center;
}

@media (max-width: 768px) {
    .ig-block {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .ig-block-left {
        padding: 40px 30px;
        gap: 18px;
    }

    .ig-block-left h3 {
        font-size: 1.6rem;
    }

    .ig-block-right {
        padding: 40px 30px;
    }

    .ig-qr-img {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 480px) {
    .ig-block-left {
        padding: 30px 25px;
    }

    .ig-block-left h3 {
        font-size: 1.4rem;
    }

    .ig-block-left p {
        font-size: 0.95rem;
    }

    .ig-qr-img {
        width: 140px;
        height: 140px;
    }
}

/* Modern Video Grid */
.video-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 50px;
}

.video-card-modern {
    display: flex;
    flex-direction: column;
    gap: 25px;
    background: var(--surface);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(74, 124, 89, 0.15);
    transition: all 0.3s ease;
}

.video-card-modern:hover {
    box-shadow: 0 15px 50px rgba(74, 124, 89, 0.25);
    transform: translateY(-8px);
}

.qr-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.qr-link {
    display: block;
    width: 220px;
    height: 220px;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    padding: 10px;
    box-shadow: 0 5px 20px rgba(74, 124, 89, 0.2);
    transition: all 0.3s ease;
}

.qr-link:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 35px rgba(74, 124, 89, 0.3);
}

.qr-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.qr-label {
    color: var(--forest-green);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.info-modern h3 {
    color: var(--forest-green);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-modern h3 i {
    font-size: 1.8rem;
    color: var(--gold);
}

.info-modern p {
    color: var(--text-dim);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0 0 20px 0;
}

.btn-gold-secondary {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-gold-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(74, 124, 89, 0.3);
}

.pilates-content-card {
    background: linear-gradient(135deg, rgba(143, 188, 143, 0.1) 0%, rgba(217, 200, 160, 0.05) 100%);
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid var(--gold);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pilates-content-card h3 {
    color: var(--forest-green);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pilates-content-card h3 i {
    font-size: 1.8rem;
    color: var(--gold);
}

.pilates-content-card p {
    color: var(--text-dim);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .video-grid.single-card {
        max-width: 100%;
    }
}

/* Footer */
.footer {
    border-top: 2px solid rgba(74, 124, 126, 0.35);
}

.maps-box {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.bottom-bar {
    text-align: center;
    padding-top: 50px;
    border-top: 2px solid rgba(74, 124, 126, 0.25);
    margin-top: 50px;
    font-size: 0.9rem;
}

.bottom-bar a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
}

.bottom-bar a:hover {
    color: var(--white);
}

.copyright {
    margin-top: 10px;
    color: var(--text-dim);
    font-size: 0.85rem;
}

/* Section Headers */
.section-head {
    text-align: center;
    margin-bottom: 60px;
}

.section-head h2 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-head p {
    color: var(--text-dim);
    font-size: 1.1rem;
}

/* Responsive */

/* Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

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

    .hero-bg-image {
        width: 45%;
    }

    .section-head h2 {
        font-size: 2.5rem;
    }

    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .leistungen-layout {
        grid-template-columns: 1fr;
    }

    .leistungen-image-wrap {
        position: relative;
        top: 0;
    }

    .leistungen-image {
        max-height: 420px;
        object-position: center;
    }
}

/* Mobile & Tablet Navigation */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: var(--bg);
        width: 280px;
        height: 100vh;
        padding: 100px 30px 30px;
        transition: left 0.3s ease;
        z-index: 999;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        display: block;
        padding: 10px 0;
    }

    .menu-btn {
        display: block;
        z-index: 1000;
    }

    .lang-switcher {
        margin-left: auto;
        margin-right: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    header {
        padding: 20px 0;
    }

    .logo {
        font-size: 1.5rem;
    }

    .lang-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .hero {
        min-height: 80vh;
        padding: 80px 0 40px;
    }

    .hero-bg-image {
        display: none;
    }

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

    .hero p {
        font-size: 1.1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
        padding-top: 30px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-content>span {
        padding-left: 50px;
        font-size: 0.85rem;
    }

    .hero-content>span::before {
        width: 35px;
    }

    .hero-content {
        text-align: left;
    }

    .btn-gold {
        width: 100%;
        text-align: center;
        padding: 18px 30px;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section {
        padding: 60px 0;
    }

    .section-head h2 {
        font-size: 2rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .language-image-container {
        border-radius: 20px;
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
    }

    .language-image {
        width: 100%;
        height: auto;
        border-radius: 20px;
    }

    .intro-images-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .intro-image {
        max-width: 100%;
    }

    .leistungen-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .leistungen-image-wrap {
        position: relative;
        top: 0;
    }

    .leistungen-image {
        max-height: 320px;
    }

    .video-wrapper {
        padding: 0 !important;
    }

    .video-info {
        padding: 20px;
    }

    .video-grid-modern {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .video-card-modern,
    .pilates-content-card {
        padding: 25px;
    }

    .qr-link {
        width: 180px;
        height: 180px;
    }

    .qr-section {
        padding: 38px 20px;
    }

    .qr-icon-row {
        padding: 8px 18px;
    }

    .qr-icon-row span {
        font-size: 0.92rem;
    }

    .qr-code-box {
        padding: 12px;
        border-radius: 16px;
    }

    .qr-code-box img {
        width: 170px;
        height: 170px;
        border-radius: 8px;
    }

    .qr-cta-text {
        font-size: 0.82rem;
    }

    .instagram-embed-container {
        max-width: 300px;
        margin: 15px auto;
    }

    .leistungen-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card {
        padding: 30px 20px;
    }

    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px 0;
    }

    .news-card {
        padding: 20px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px;
    }

    .btn-outline,
    .call-btn {
        width: 100%;
        padding: 15px;
    }

    details {
        padding: 15px;
    }

    summary {
        font-size: 0.95rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 15px;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .section-head h2 {
        font-size: 1.75rem;
    }

    .video-card-modern,
    .pilates-content-card {
        padding: 20px;
    }

    .info-modern h3,
    .pilates-content-card h3 {
        font-size: 1.2rem;
    }

    .info-modern p,
    .pilates-content-card p {
        font-size: 0.95rem;
    }

    .qr-link {
        width: 150px;
        height: 150px;
    }

    .qr-label {
        font-size: 0.85rem;
    }

    .language-image-container {
        border-radius: 16px;
        max-width: 320px;
        width: 100%;
        margin: 0 auto;
    }

    .language-image {
        width: 100%;
        height: auto;
        border-radius: 16px;
    }

    .video-info {
        padding: 15px;
    }

    .video-info h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .video-info p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .qr-section {
        padding: 26px 14px;
    }

    .qr-bg {
        gap: 14px;
    }

    .qr-icon-row {
        gap: 8px;
        padding: 7px 14px;
    }

    .qr-icon-row i {
        font-size: 1.1rem;
    }

    .qr-icon-row span {
        font-size: 0.82rem;
        letter-spacing: 0.2px;
    }

    .qr-code-box {
        padding: 10px;
        border-radius: 14px;
    }

    .qr-code-box img {
        width: 138px;
        height: 138px;
        border-radius: 7px;
    }

    .qr-cta-text {
        font-size: 0.75rem;
        text-align: center;
    }

    .instagram-embed-container {
        max-width: 280px;
        margin: 15px auto;
    }

    .instagram-embed-container blockquote {
        max-width: 280px !important;
        width: 100% !important;
    }

    .video-subtitle {
        margin-top: 15px;
        padding-top: 15px;
    }

    .video-note {
        font-size: 0.9rem;
        margin-top: 12px;
    }

    .lang-switcher {
        gap: 5px;
    }

    .lang-btn {
        padding: 5px 10px;
    }

    .leistungen-image {
        max-height: 260px;
    }
}