/* Akt Font Import (lokal) mit Fallbacks */
@font-face {
    font-family: 'Akt Light';
    src: url('assets/fonts/akt-light.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Akt Regular';
    src: url('assets/fonts/akt-regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

/* CSS Variables */
:root {
    --gold: #cc9933;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --light-gray: #333333;
    --white: #ffffff;
    --font-heading: 'Akt Light', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Akt Regular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-brand .logo {
    height: 40px;
    width: auto;
}

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

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: bold;
}

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

.cta-button,
.cta-button a,
.wp-block-button.cta-button .wp-block-button__link {
    background: var(--gold) !important;
    color: var(--black) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 5px !important;
    font-weight: bold !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.cta-button:hover,
.cta-button a:hover,
.wp-block-button.cta-button .wp-block-button__link:hover {
    background: #b8861f !important;
    color: var(--black) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* WordPress Block Editor Fix */
.wp-block-skyartist-hero {
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    max-width: none !important;
    width: 100vw !important;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Hero Fullscreen Video ohne Balken */
.hero-fullscreen video,
.wp-block-cover.hero-fullscreen video,
.wp-block-cover__video-background {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.sound-toggle {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 10;
    background: rgba(204, 153, 51, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--black);
}

.sound-toggle:hover {
    background: var(--gold);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(204, 153, 51, 0.4);
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    margin-top: 35vh;
}

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

.btn-primary, .btn-secondary {
    padding: 0.9rem 1.8rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

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

.btn-primary:hover {
    background: #b8861f;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(204, 153, 51, 0.3);
    transition: all 0.3s ease;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

/* Sections */
section {
    padding: 5rem 0;
}

h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;       /* Vorher 2.5rem - jetzt kleiner */
    line-height: 1.1;        /* Engerer Zeilenabstand (Standard ist meist 1.4) */
    letter-spacing: -0.02em; /* Rückt die einzelnen Buchstaben näher zusammen */
    text-align: center;        /* Wieder linksbündig */
    margin-bottom: 1.5rem;   /* Halbiert den Abstand nach unten (vorher 3rem) */
    color: var(--gold);
}

/* 2. h2 in der Intro-Sektion auf Links setzen */
.intro h2 {
    text-align: left;
}

/* Intro Section */
.intro {
    background: var(--dark-gray);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-image img {
    width: 100%;
    border-radius: 10px;
}

.intro-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.intro-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    aspect-ratio: 4/5;
    display: flex;
    flex-direction: column;
    border: 2px solid var(--gold);
    box-shadow: 0 10px 25px rgba(204, 153, 51, 0.3);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(204, 153, 51, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card img {
    width: 100%;
    height: 50%;
    object-fit: cover;
}

.service-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.9rem;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.service-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

.service-modal-btn {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.service-modal-btn:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

.service-cta {
    background: var(--gold);
    color: var(--black);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    flex: 1;
}

.service-cta:hover {
    background: #b8861f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(204, 153, 51, 0.3);
}

/* Process Section */
.prozess {
    background: var(--dark-gray);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.process-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.process-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(204, 153, 51, 0.15);
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

/* Gallery */
.gallery-slider {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    max-width: calc(100% - 120px);
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.gallery-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-track img {
    min-width: 100%;
    height: 450px;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.4s ease;
}

.gallery-track img:hover {
    filter: brightness(1.1);
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(204, 153, 51, 0.9);
    color: var(--black);
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-btn:hover {
    background: var(--gold);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(204, 153, 51, 0.4);
}

.gallery-btn.prev {
    left: -25px;
}

.gallery-btn.next {
    right: -25px;
}

/* Gallery Buttons - Desktop sichtbar */
@media (min-width: 769px) {
    .gallery-btn.prev {
        left: -60px;
    }
    
    .gallery-btn.next {
        right: -60px;
    }
}

/* Fullscreen Modal */
.fullscreen-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.fullscreen-modal.active {
    opacity: 1;
    visibility: visible;
}

.fullscreen-modal img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.fullscreen-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 3rem;
    cursor: pointer;
    z-index: 3001;
    transition: all 0.3s ease;
}

.fullscreen-close:hover {
    color: var(--white);
    text-shadow: 0 0 10px rgba(204, 153, 51, 0.5);
}

/* Packages */
.preise {
    background: var(--dark-gray);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.package-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    aspect-ratio: 4/5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 2px solid var(--gold);
    box-shadow: 0 10px 25px rgba(204, 153, 51, 0.3);
}

.package-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(204, 153, 51, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.package-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.price {
    font-size: 2rem;
    color: var(--gold);
    font-weight: bold;
    margin-bottom: 1rem;
}

.package-cta {
    background: var(--gold);
    color: var(--black);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.package-cta:hover {
    background: #b8861f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(204, 153, 51, 0.3);
}

/* Team */
.team-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    background: var(--light-gray);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.team-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(204, 153, 51, 0.2);
}

.team-card-content {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    gap: 1.5rem;
}

.team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.team-text {
    flex: 1;
}

.team-card h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.team-position {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.team-preview {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.team-experience {
    display: inline-block;
    background: rgba(204, 153, 51, 0.1);
    color: var(--gold);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: bold;
}

/* FAQ */
.faq {
    background: var(--dark-gray);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--light-gray);
    margin-bottom: 1rem;
}

.faq-question {
    padding: 1rem 0;
    cursor: pointer;
    font-weight: bold;
    color: var(--gold);
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.5rem;
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    padding: 0 0 1rem 0;
    display: none;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    display: block;
    opacity: 1;
    max-height: 200px;
    padding: 1rem 0;
}

/* Contact */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    background: var(--light-gray);
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.recaptcha-container {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #b8861f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(204, 153, 51, 0.3);
    transition: all 0.3s ease;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    margin: 0;
    color: var(--white);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

.footer-social a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--gold);
}

.social-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray);
    opacity: 0.7;
}

.form-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-top: 1rem;
}

/* Checkbox Styling */
.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: var(--light-gray);
    border: 2px solid var(--gold);
    border-radius: 3px;
    margin-right: 0.75rem;
    margin-top: 2px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--gold);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--black);
    font-weight: bold;
    font-size: 14px;
}

.checkbox-label a {
    color: var(--gold);
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: #b8861f;
}

/* Submit Button States */
.btn-submit:disabled {
    background: var(--light-gray);
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-submit:disabled:hover {
    background: var(--light-gray);
    transform: none;
    box-shadow: none;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--gold);
    color: var(--black);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #b8861f;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(204, 153, 51, 0.4);
}

/* Modal System */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--dark-gray);
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

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

.modal-content {
    padding: 3rem 2rem 2rem;
}

/* Service Modal Styling */
.modal-content h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.modal-content h4 {
    color: var(--gold);
    margin: 1.5rem 0 1rem;
    font-size: 1.2rem;
}

.modal-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.modal-content ul li {
    padding: 0.5rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-content ul li:last-child {
    border-bottom: none;
}

.modal-content p {
    margin: 1rem 0;
    line-height: 1.6;
}

.modal-content a {
    color: var(--gold);
    text-decoration: underline;
}

.modal-content a:hover {
    color: #b8861f;
}

/* Package Modal Styling */
.package-modal-content {
    max-width: 100%;
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gold);
}

.package-header h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.package-price {
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: bold;
}

.package-details h4 {
    color: var(--gold);
    margin: 1.5rem 0 1rem;
    font-size: 1.2rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.package-features li {
    padding: 0.5rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-info {
    background: rgba(204, 153, 51, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.package-info p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

/* Der Container braucht text-align: center, damit inline-block Elemente mittig sitzen */
.package-cta-container {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%; /* Sicherstellen, dass der Container die volle Breite hat */
}

.modal-cta {
    background: #cc9933 !important; 
    color: #000000 !important;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    
    /* Zentrierungs-Logik */
    display: inline-block;
    margin: 0 auto;
}

.modal-cta:hover {
    background: #b8861f !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(204, 153, 51, 0.3);
}

/* Team Modal Styling */
.team-modal-content {
    max-width: 100%;
}

.team-header-text {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--gold);
}

.team-header-text h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.team-modal-position {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.team-modal-experience {
    background: rgba(204, 153, 51, 0.2);
    color: var(--gold);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.team-quote {
    background: rgba(204, 153, 51, 0.1);
    border-left: 4px solid var(--gold);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

.team-details h4 {
    color: var(--gold);
    margin: 1.5rem 0 1rem;
    font-size: 1.1rem;
}

.team-qualifications {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.team-qualifications li {
    padding: 0.4rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.team-qualifications li:last-child {
    border-bottom: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-gray);
    border-top: 2px solid var(--gold);
    padding: 1rem;
    z-index: 2500;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-content a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cookie-btn.accept {
    background: var(--gold);
    color: var(--black);
}

.cookie-btn.accept:hover {
    background: #b8861f;
}

.cookie-btn.reject {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.cookie-btn.reject:hover {
    background: var(--white);
    color: var(--black);
}

/* Responsive */
@media (max-width: 768px) {
    /* Optimiertes Responsive Design für Mobile */
    .cookie-banner {
        padding: 1.5rem 1rem; /* Mehr Platz zum Atmen */
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.2rem;
    }

    .cookie-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column; /* Buttons untereinander */
        gap: 0.8rem;
    }

    .cookie-btn {
        width: 100%; /* Volle Breite für einfache Klickbarkeit */
        padding: 0.8rem; /* Größere Klickfläche für Daumen */
        font-size: 1rem;
        text-align: center;
    }

    /* Tausch der Reihenfolge: Akzeptieren soll oben stehen */
    .cookie-btn.accept {
        order: 1;
    }
    .cookie-btn.reject {
        order: 2;
        border-color: rgba(255, 255, 255, 0.3);
    }

    .recaptcha-container {
        transform: scale(0.85);
        transform-origin: center;
    }

    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--black);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-brand .logo {
        height: 35px;
    }
    
    .footer-brand .footer-logo {
        height: 50px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .services-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-card-content {
        flex-direction: column;
        text-align: center;
    }
    
    .team-image {
        width: 100px;
        height: 100px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .gallery-slider {
        max-width: 100%;
    }
    
    .gallery-btn.prev {
        left: 1rem;
    }
    
    .gallery-btn.next {
        right: 1rem;
    }
    
    section h2 {
        font-size: 2rem;
    }
}/* Premium Gallery Styles */
.galerie-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 4rem;
    opacity: 0.9;
}

.premium-gallery {
    position: relative;
    min-height: 600px;
    margin-bottom: 3rem;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.gallery-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 600px;
}

.slide-content.reverse {
    direction: rtl;
}

.slide-content.reverse > * {
    direction: ltr;
}

.slide-media {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.slide-media img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.slide-media.portrait-video {
    max-width: 400px;
    margin: 0 auto;
}

.slide-media.portrait-video video {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.slide-text {
    padding: 2rem 0;
}

.slide-category {
    display: inline-block;
    background: rgba(204, 153, 51, 0.2);
    color: var(--gold);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide-text h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.slide-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.slide-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.slide-features li {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--gold);
    font-weight: 500;
}

.slide-features li::before {
    content: '✓';
    display: inline-block;
    width: 24px;
    height: 24px;
    background: rgba(204, 153, 51, 0.2);
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    margin-right: 0.5rem;
    font-weight: bold;
}

.slide-cta {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.slide-cta:hover {
    background: #b8861f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(204, 153, 51, 0.3);
}

/* Gallery Navigation */
.gallery-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-nav-btn {
    background: rgba(204, 153, 51, 0.2);
    border: 2px solid var(--gold);
    color: var(--gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-nav-btn:hover {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.1);
}

.gallery-dots {
    display: flex;
    gap: 0.8rem;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(204, 153, 51, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: var(--gold);
    width: 40px;
    border-radius: 6px;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .slide-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
    }

    .slide-content.reverse {
        direction: ltr;
    }

    .slide-media {
        max-width: 100%;
    }

    .slide-media img {
        height: 400px;
    }

    .slide-media.portrait-video {
        max-width: 300px;
    }

    .slide-media.portrait-video video {
        height: 500px;
    }

    .slide-text h3 {
        font-size: 2rem;
    }

    .slide-features {
        flex-direction: column;
        gap: 1rem;
    }

    .gallery-nav {
        gap: 1rem;
    }
}


/* Image Slider Section */
.image-slider-section {
    padding: 5rem 0;
    background: var(--dark-gray);
}

.image-slider-gallery {
    position: relative;
    min-height: 500px;
    border-radius: 15px;
    overflow: hidden;
}

.image-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
}

.image-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.image-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.image-slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.image-nav-btn {
    background: rgba(204, 153, 51, 0.2);
    border: 2px solid var(--gold);
    color: var(--gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.image-nav-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.image-slider-dots {
    display: flex;
    gap: 0.8rem;
}

.image-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(204, 153, 51, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.image-dot.active {
    background: var(--gold);
    width: 40px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .image-slide img {
        height: 300px;
    }
    
    .image-slider-gallery {
        min-height: 300px;
    }
}


/* Media Grid Gallery */
.media-grid-section {
    padding: 5rem 0;
    background: var(--black);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.media-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.media-item:hover {
    transform: scale(1.05);
}

.media-item img,
.media-item video {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

@media (max-width: 968px) {
    .media-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .media-grid {
        grid-template-columns: 1fr;
    }
    
    .media-item img,
    .media-item video {
        height: 250px;
    }
}



/* ================================================
   FORMINATOR KONTAKTFORMULAR – Zentrierung & Größe
   ================================================ */

/* Formular selbst */
.forminator-ui.forminator-custom-form-31,
.forminator-ui.forminator-custom-form {
    max-width: 680px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !important;
    box-sizing: border-box !important;
}

/* Alle Spalten im Formular volle Breite */
.forminator-ui .forminator-col-6,
.forminator-ui .forminator-col-4,
.forminator-ui .forminator-col-3,
.forminator-ui .forminator-col-12 {
    width: 100% !important;
    float: none !important;
    padding: 0 !important;
}

.forminator-ui .forminator-row {
    display: flex !important;
    flex-direction: column !important;
}

/* Shortcode-Block Wrapper zentrieren */
.wp-block-shortcode:has(.forminator-ui) {
    display: flex !important;
    justify-content: center !important;
}

/* Inputs */
.forminator-ui .forminator-input,
.forminator-ui .forminator-textarea,
.forminator-ui .forminator-phone-field input,
.forminator-ui .forminator-name--field input,
.forminator-ui .forminator-name--field select,
.forminator-ui .forminator-address--field input,
.forminator-ui .forminator-address--field select,
.forminator-ui .forminator-date--field select,
.forminator-ui .forminator-date--field input,
.forminator-ui select,
.forminator-ui input[type="text"],
.forminator-ui input[type="email"],
.forminator-ui input[type="tel"],
.forminator-ui input[type="date"],
.forminator-ui textarea {
    background: #1a1a1a !important;
    border: none !important;
    border-bottom: 1px solid #333333 !important;
    border-radius: 0 !important;
    color: #ffffff !important;
    font-family: var(--font-body) !important;
    font-size: 1.05rem !important;
    padding: 1.2rem 4px !important;
    width: 100% !important;
    transition: border-color 0.3s ease !important;
    box-shadow: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    box-sizing: border-box !important;
}

.forminator-ui .forminator-input:focus,
.forminator-ui .forminator-textarea:focus,
.forminator-ui .forminator-phone-field input:focus,
.forminator-ui .forminator-name--field input:focus,
.forminator-ui .forminator-address--field input:focus,
.forminator-ui .forminator-date--field input:focus,
.forminator-ui select:focus,
.forminator-ui input:focus,
.forminator-ui textarea:focus {
    border-bottom-color: var(--gold) !important;
    outline: none !important;
    box-shadow: none !important;
    background: #1a1a1a !important;
}

.forminator-ui .forminator-input::placeholder,
.forminator-ui .forminator-textarea::placeholder,
.forminator-ui input::placeholder,
.forminator-ui textarea::placeholder {
    color: #555555 !important;
}

/* Select */
.forminator-ui .forminator-select2-container .select2-selection--single,
.forminator-ui .forminator-select2-container .select2-selection--multiple,
.forminator-ui .forminator-select2-container .select2-container {
    background: #1a1a1a !important;
    border: none !important;
    border-bottom: 1px solid #333333 !important;
    border-radius: 0 !important;
    color: #ffffff !important;
    padding: 10px 4px !important;
    height: auto !important;
    min-height: 44px !important;
    box-shadow: none !important;
}

.forminator-ui .select2-selection__rendered {
    color: #ffffff !important;
    padding-left: 0 !important;
    background: #1a1a1a !important;
}

.forminator-ui .select2-selection__arrow b {
    border-color: var(--gold) transparent transparent transparent !important;
}

/* Labels */
.forminator-ui .forminator-label,
.forminator-ui label {
    color: var(--gold) !important;
    font-family: var(--font-body) !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    margin-bottom: 8px !important;
}

.forminator-ui .forminator-field--inner > label,
.forminator-ui .forminator-address--field label,
.forminator-ui .forminator-name--field label,
.forminator-ui .forminator-date--field label {
    color: #888888;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Rows */
.forminator-ui .forminator-row {
    margin-bottom: 1.8rem;
    border-bottom: none;
}

/* Submit Button */
.forminator-ui .forminator-btn-submit,
.forminator-ui button[type="submit"] {
    background: var(--gold) !important;
    color: var(--black) !important;
    border: none !important;
    border-radius: 4px !important;
    font-family: var(--font-body) !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    padding: 1.2rem 2.5rem !important;
    cursor: pointer !important;
    transition: background 0.3s ease, transform 0.2s ease !important;
    display: block !important;
    width: 100% !important;
    margin: 2rem auto 0 !important;
}

.forminator-ui .forminator-btn-submit:hover,
.forminator-ui button[type="submit"]:hover {
    background: #b8861f !important;
    transform: translateY(-2px) !important;
}

/* Formular Hintergrund */
.forminator-ui,
.forminator-ui .forminator-custom-form {
    background: transparent !important;
    color: #ffffff !important;
}

/* Consent / Checkbox */
.forminator-ui .forminator-checkbox label,
.forminator-ui .forminator-consent label,
.forminator-ui .forminator-field--consent label {
    color: rgba(255,255,255,0.8) !important;
    font-size: 1rem !important;
}

.forminator-ui .forminator-checkbox label a,
.forminator-ui .forminator-consent label a {
    color: var(--gold) !important;
    text-decoration: underline !important;
}

.forminator-ui .forminator-error-message {
    color: #e05555;
    font-size: 0.8rem;
    margin-top: 6px;
}

.forminator-ui .forminator-field--error input,
.forminator-ui .forminator-field--error select,
.forminator-ui .forminator-field--error .forminator-input {
    border-bottom-color: #e05555 !important;
}

/* Erfolgsmeldung */
.forminator-ui .forminator-response-output--success {
    background: rgba(204, 153, 51, 0.08);
    border: 1px solid var(--gold);
    border-radius: 4px;
    color: var(--gold);
    padding: 24px;
    text-align: center;
    font-size: 1rem;
}

/* Pflichtfeld */
.forminator-ui .forminator-required,
.forminator-ui .forminator-label .forminator-asterisk {
    color: var(--gold);
}

/* Spinner */
.forminator-ui .forminator-spinner {
    border-top-color: var(--gold);
}

/* Responsive */
@media (max-width: 768px) {
    .forminator-ui.forminator-custom-form-31,
    .forminator-ui.forminator-custom-form {
        max-width: 100% !important;
        padding: 0 20px !important;
    }
}

@media (max-width: 480px) {
    .forminator-ui.forminator-custom-form-31,
    .forminator-ui.forminator-custom-form {
        padding: 0 12px !important;
    }

    .forminator-ui .forminator-input,
    .forminator-ui .forminator-textarea,
    .forminator-ui .forminator-phone-field input,
    .forminator-ui .forminator-name--field input,
    .forminator-ui .forminator-address--field input {
        font-size: 16px; /* iOS Zoom verhindern */
    }

    .forminator-ui .forminator-col-6,
    .forminator-ui .forminator-col-4,
    .forminator-ui .forminator-col-3 {
        width: 100% !important;
        float: none !important;
    }
}

/* ================================================
 *  MODAL
 *  ================================================ */

#modalOverlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.85);
z-index: 9999;
justify-content: center;
align-items: center;
}

#modalOverlay.active {
display: flex;
}

#modal {
background: #1a1a1a;
border: 1px solid #cc9933;
border-radius: 10px;
padding: 2.5rem;
max-width: 600px;
width: 90%;
max-height: 85vh;
overflow-y: auto;
position: relative;
color: #ffffff;
}

#modal h2 {
color: #cc9933;
font-size: 1.6rem;
margin-bottom: 1.5rem;
}

#modal h3 {
color: #ffffff;
font-size: 1.2rem;
margin-bottom: 1rem;
}

#modal h4 {
color: #cc9933;
font-size: 1rem;
margin: 1.2rem 0 0.5rem;
}

#modal p {
color: rgba(255,255,255,0.85);
line-height: 1.7;
margin-bottom: 0.75rem;
}

#modal ul {
list-style: none;
padding: 0;
margin-bottom: 1rem;
}

#modal ul li {
color: rgba(255,255,255,0.8);
padding: 0.3rem 0;
padding-left: 1rem;
position: relative;
}

#modal ul li::before {
content: '✓';
color: #cc9933;
position: absolute;
left: 0;
}

#modal a {
color: #cc9933;
text-decoration: underline;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: #cc9933;
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
    padding: 0.25rem 0.5rem;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: #ffffff;
}

.modal-cta {
    display: inline-block;
    background: #cc9933;
    color: #000000 !important;
    text-decoration: none !important;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 1.5rem;
    transition: background 0.3s ease;
}

.modal-cta:hover {
    background: #b8861f;
}

@media (max-width: 480px) {
    #modal {
    padding: 1.5rem;
    width: 95%;
    }
}


