* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Grundlayout & Variablen */
:root {
    --primary-color: #d4af37; /* Golden color from logo */
    --secondary-color: #b8941f;
    --accent-color: #f4e681;
    --dark-bg: #0a0a0a;
    --darker-bg: #151515;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --gradient-gold: linear-gradient(135deg, #d4af37, #f4e681);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    --transition: all 0.3s ease;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; /* verhindert horizontales Scrollen auf Mobile */
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%; /* verhindert Safari-Auto-Zoom/Neu-Skalierung */
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
}

/* Background Layer 1 - Hero */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

/* Background Layer 2 - Lower sections */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/seci1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease;
    z-index: -2;
    filter: brightness(2);
}

/* Background transition active */
body.bg-transition::after {
    opacity: 1;
}

/* Dark overlay */
.dark-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.75);
    z-index: -1;
    pointer-events: none;
}

/* Particle Canvas */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation - ULTRA MINIMALISTISCH */
.navbar {
    background: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.8);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-container {
    max-width: 100%;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    font-family: 'Cinzel', 'Times New Roman', serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    color: var(--primary-color);
}

.nav-logo-shield {
    height: 32px;
    width: auto;
    margin-right: 15px;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
    transition: all 0.3s ease;
}

.nav-logo:hover .nav-logo-shield {
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.6));
}

.golden-nav {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 50px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0.8;
    outline: none;
}

.nav-link:hover {
    color: var(--primary-color);
    opacity: 1;
}

.nav-link:focus {
    outline: none;
}

.nav-link:active {
    outline: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section - ULTRA CENTERED DESIGN WITH BUILDING BACKGROUND */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: relative;
    overflow: hidden;
    padding: 100px 20px 80px;
}

/* Hero gradient overlay */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(10, 10, 10, 0.7) 0%,
        rgba(21, 21, 21, 0.6) 50%,
        rgba(10, 10, 10, 0.7) 100%);
    z-index: 1;
}

/* Ultra Centered Hero Content */
.hero-center-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    z-index: 10;
    position: relative;
}

.hero-logo-container {
    margin-bottom: 50px;
    perspective: 1000px;
}

.hero-logo-center {
    width: 450px;
    max-width: 90%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(212, 175, 55, 0.6));
    animation: floatSlow 6s ease-in-out infinite;
    transition: transform 0.3s ease;
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Ultra Centered Typography */
.hero-title-center {
    font-size: 5rem;
    font-weight: 900;
    font-family: 'Cinzel', 'Times New Roman', serif;
    letter-spacing: 12px;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-title-center span:first-child {
    color: var(--text-light);
}

.hero-title-center span:last-child {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
}

.hero-divider {
    width: 100px;
    height: 2px;
    background: var(--gradient-gold);
    margin: 30px auto;
    position: relative;
}

.hero-divider::before,
.hero-divider::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.hero-divider::before { left: -15px; }
.hero-divider::after { right: -15px; }

.hero-tagline {
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-subtitle-center {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 50px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons-center {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-new,
.btn-secondary-new {
    padding: 18px 45px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-primary-new {
    background: var(--gradient-gold);
    color: var(--dark-bg);
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.btn-primary-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 60px rgba(212, 175, 55, 0.5);
}

.btn-secondary-new {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary-new:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.btn {
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.btn-glow:hover {
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.6), 0 0 80px rgba(212, 175, 55, 0.3);
}

.btn-shine {
    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 ease;
}

.btn:hover .btn-shine {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--dark-bg);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
}

.btn-secondary {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-5px) scale(1.05);
    border-color: var(--primary-color);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Shield with 3D Effect */
.shield-container {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.hero-shield {
    width: 350px;
    height: auto;
    max-width: 100%;
    filter: drop-shadow(0 20px 60px rgba(212, 175, 55, 0.6));
    animation: float 4s ease-in-out infinite;
    transition: transform 0.3s ease;
    will-change: transform;
}

.hero-shield:hover {
    filter: drop-shadow(0 25px 80px rgba(212, 175, 55, 0.8));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotateZ(0deg);
    }
    50% {
        transform: translateY(-30px) rotateZ(5deg);
    }
}

/* Line Reveal Animation - KRASS */
.line-reveal {
    opacity: 0;
    transform: translateY(50px);
    animation: lineRevealAnim 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.line-reveal.delay-1 { animation-delay: 0.3s; }
.line-reveal.delay-2 { animation-delay: 0.6s; }
.line-reveal.delay-3 { animation-delay: 0.9s; }
.line-reveal.delay-4 { animation-delay: 1.2s; }

@keyframes lineRevealAnim {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Animation */
.animate-fade-in {
    opacity: 0;
    animation: fadeInScale 1s ease-out forwards;
    animation-delay: 0.2s;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.scroll-indicator-new {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    cursor: pointer;
    z-index: 10;
}

.scroll-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
    opacity: 0.6;
    animation: arrowFloat 2s ease-in-out infinite;
}

@keyframes arrowFloat {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.3;
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Services Section */
.services {
    padding: 120px 0 80px;
    background: transparent;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
}

.section-tag {
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0;
    color: var(--text-light);
    font-family: 'Cinzel', serif;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.section-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    position: relative;
    z-index: 2;
}

.section-divider::before,
.section-divider::after {
    content: '';
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.6), transparent);
}

.section-divider i {
    font-size: 0.8rem;
    color: var(--primary-color);
    opacity: 0.6;
    margin: 0 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: rgba(10, 10, 10, 0.3);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(10, 10, 10, 0.5);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--dark-bg);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--text-gray);
}

.service-features i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 0.9rem;
}

/* About Section */
.about {
    padding: 80px 0;
    background: transparent;
    position: relative;
    z-index: 2;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.5);
    z-index: -1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: var(--text-light);
    overflow-wrap: break-word;
    word-break: break-word; /* damit "GoldenProtection" auf Mobile nicht überläuft */
}

.about-text p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: rgba(10, 10, 10, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Image Gallery Carousel */
.image-gallery {
    position: relative;
    width: 420px;
    height: 500px;
}

.gallery-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
}

.gallery-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-weight: 600;
}

.image-placeholder i {
    font-size: 120px;
    margin-bottom: 30px;
}

.image-placeholder p {
    font-size: 1.3rem;
    letter-spacing: 1px;
}

/* Gallery Navigation Buttons */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--primary-color);
    width: 35px;
    height: 35px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: var(--transition);
    z-index: 10;
    opacity: 0.6;
    outline: none;
}

.gallery-nav:focus {
    outline: none;
}

.gallery-nav:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.15);
}

.gallery-nav.prev {
    left: -60px;
}

.gallery-nav.next {
    right: -60px;
}

/* Gallery Dots */
.gallery-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: transparent;
    position: relative;
    z-index: 2;
}

.contact-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-top: 15px;
    opacity: 0.8;
}

.contact-layout {
    margin-top: 80px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: rgba(10, 10, 10, 0.3);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(10, 10, 10, 0.5);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.contact-card:hover .card-icon {
    background: var(--gradient-gold);
    transform: scale(1.1);
}

.card-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-card:hover .card-icon i {
    color: var(--dark-bg);
}

.contact-card h3 {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 600;
}

.card-highlight {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.card-subtext {
    color: var(--text-gray);
    font-size: 0.9rem;
    opacity: 0.7;
}

.map-section {
    margin: 50px 0;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.map-section iframe {
    display: block;
    filter: grayscale(30%) contrast(1.1);
    transition: var(--transition);
}

.map-section:hover iframe {
    filter: grayscale(0%) contrast(1);
}

.contact-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(10, 10, 10, 0.3);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h3 {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(21, 21, 21, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(21, 21, 21, 0.8);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 16px 40px;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-submit i {
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-submit:hover i {
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 0;
    position: relative;
}

.footer .section-divider {
    padding: 60px 0;
}

.footer .container {
    padding: 0 0 40px;
}

.footer-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    opacity: 0.4;
}

.ornament-line-footer {
    width: 80px;
    height: 1px;
    background: var(--primary-color);
}

.ornament-symbol-footer {
    color: var(--primary-color);
    font-size: 0.7rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-column h4 {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-logo-text {
    display: flex;
    align-items: center;
    font-family: 'Cinzel', 'Times New Roman', serif;
    letter-spacing: 2px;
}

.footer-shield {
    height: 20px;
    width: auto;
    margin-right: 10px;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

.golden-footer {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-column p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-highlight {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 0.85rem;
    opacity: 0.5;
    margin: 0;
}

.footer-bottom a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.5;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--primary-color);
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 30px;
        height: 70px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        padding: 40px 0;
        gap: 30px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 0;
    }

    .nav-link {
        font-size: 1rem;
    }

    .hero-title-center {
        font-size: 3rem;
        letter-spacing: 6px;
    }

    .hero-logo-center {
        width: 300px;
    }

    .hero-tagline {
        font-size: 0.75rem;
        letter-spacing: 3px;
    }

    .hero-subtitle-center {
        font-size: 0.95rem;
    }

    .hero-buttons-center {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .btn-primary-new,
    .btn-secondary-new {
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto; /* Buttons hart zentrieren */
    }

    .nav-logo {
        font-size: 1.2rem;
    }

    .nav-logo-shield {
        height: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text {
        text-align: center; /* Überschrift + Text zentriert */
    }

    .about-text p {
        text-align: center;
    }

    .about-text h2 {
        font-size: 2.2rem;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Gallery komplett responsive, nicht abgeschnitten */
    .image-gallery {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .gallery-container {
        height: auto;
    }

    .gallery-slide {
        position: relative;
        height: auto;
    }

    .image-placeholder {
        width: 100%;
        height: auto;
        min-height: 260px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .footer-content {
        justify-content: center;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    /* Contact cards auf Mobile untereinander */
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 18px;
        width: 100%;
    }

    .contact-card {
        width: 100%;
        min-width: 0;
        margin: 0;
        box-sizing: border-box;
    }

    /* Form einspaltig */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Background etwas größer, falls minimal rausgezoomt wird */
    body::before,
    body::after {
        background-size: 120% 120%;
        background-position: center;
    }

    /* Footer-Spalten zentriert auf allen Phones/Tablets */
    .footer-grid {
        text-align: center;
    }

    .footer-column {
        text-align: center;
    }

    .footer-logo-text {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        padding-top: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section,
    .services,
    .about,
    .contact {
        padding: 40px 0 30px 0 !important;
    }

    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-logo-center {
        width: 180px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 30px 20px;
        min-width: unset;
        margin-bottom: 20px;
    }

    .contact-form {
        padding: 30px 20px;
        width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-content,
    .contact-layout,
    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .about-image,
    .about-text {
        width: 100%;
        max-width: 100%;
    }

    .about-text h2 {
        font-size: 1.9rem;
    }

    .image-placeholder {
        width: 100%;
        height: auto;
        min-height: 220px;
    }

    .footer {
        padding: 30px 0 10px 0 !important;
    }

    .footer-column {
        margin-bottom: 20px;
        text-align: center;
    }

    .map-section iframe {
        height: 200px !important;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        min-height: 44px;
    }

    .form-group textarea {
        min-height: 80px;
    }

    .btn-submit {
        width: 100%;
        font-size: 1rem;
        padding: 14px 0;
    }

    .gallery-container,
    .gallery-slide,
    .gallery-dots {
        width: 100% !important;
        max-width: 100% !important;
    }

    .gallery-slide {
        min-height: 200px !important;
    }

    /* Mobile optimized notifications */
    .notification {
        left: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
        font-size: 0.9rem;
        padding: 12px 15px;
    }

    /* Better touch targets for mobile */
    .contact-form button[type="submit"] {
        width: 100%;
        padding: 15px;
        font-size: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading animation */
.loading {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for better accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
    z-index: 10000;
    max-width: 400px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideInRight 0.3s ease-out;
    border: 1px solid var(--secondary-color);
}

.notification-success {
    background: linear-gradient(135deg, #d4af37, #f4e681);
    color: var(--dark-bg);
}

.notification-error {
    background: linear-gradient(135deg, #c92a2a, #e03131);
    color: var(--text-light);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.notification-content i {
    font-size: 1.3rem;
}

.notification-close {
    background: transparent;
    border: none;
    color: inherit;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    line-height: 1;
    transition: var(--transition);
}

.notification-close:hover {
    transform: scale(1.2);
    opacity: 0.7;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

/* Form Error States */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e03131;
    animation: shake 0.4s ease-in-out;
}

.form-group .error-message {
    color: #e03131;
    font-size: 0.875rem;
    margin-top: 5px;
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
