:root {
    --primary: #263c30;
    --primary-light: #334f40;
    --primary-dark: #192720;
    --accent: #c5a880;
    --accent-hover: #b0926a;
    --whatsapp: #25d366;
    --dark: #1f2937;
    --light: #f4f6f4;
    --white: #ffffff;
    --text-gray: #6b7280;
    --transition: cubic-bezier(0.16, 1, 0.3, 1) 0.35s;
}

/* BASICS & SMOOTH SCROLL */
* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--light);
    color: var(--dark);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    padding-top: 80px;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* NAVBAR OPTIMIERUNG */
.custom-navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(38, 60, 48, 0.1);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.navbar-brand img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.navbar-nav .nav-link {
    color: var(--primary) !important;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    padding: 8px 16px !important;
}

.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link.active {
    color: var(--accent) !important;
}

.navbar-toggler {
    border: 1px solid rgba(38, 60, 48, 0.3);
    padding: 6px;
}

.navbar-toggler-icon {
    filter: invert(20%) sepia(15%) saturate(1000%) hue-rotate(95deg);
}

.btn-gold {
    background-color: var(--accent);
    color: var(--primary) !important;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 4px;
    border: 1px solid var(--accent);
    letter-spacing: 0.5px;
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--accent) !important;
    box-shadow: 0 0 15px rgba(197, 168, 128, 0.3);
}

/* HERO BANNER - NATIVE PASSFORM MIT HOHEM SPACING AM PC */
.hero-bg-image {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
    border-bottom: 1px solid rgba(197, 168, 128, 0.25);
    padding: 100px 0;
    background-color: var(--primary);
}

.hero-bg-img-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center,
        rgba(38, 60, 48, 0.68) 0%,
        rgba(25, 39, 32, 0.85) 100%
    );
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
}

/* SLIDE-IN EFFECT */
.animate-slide-in {
    animation: slideInFromLeft 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-70px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-bg-image h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    color: var(--white);
    line-height: 1.15;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
}

.hero-bg-image h1 span {
    color: var(--accent);
    display: block;
    font-size: 1.35rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: 1.2rem;
    margin: 0 auto 35px auto;
    max-width: 750px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.hero-contact-box {
    background: rgba(255, 255, 255, 0.08);
    padding: 24px 30px;
    border-radius: 12px;
    border: 1px solid rgba(197, 168, 128, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    max-width: 540px;
}

.hero-contact-box h3 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 18px;
    font-weight: 600;
}

.button-group {
    display: flex;
    gap: 15px;
    width: 100%;
}

.btn-premium {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-premium-phone {
    background: var(--accent);
    color: var(--primary);
    border: 1px solid var(--accent);
}

.btn-premium-phone:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-premium-whatsapp {
    background: transparent;
    border: 1px solid var(--whatsapp);
    color: var(--whatsapp);
}

.btn-premium-whatsapp:hover {
    background: var(--whatsapp);
    color: var(--white);
    transform: translateY(-2px);
}

.slogan-highlight {
    background: var(--white);
    padding: 25px 20px;
    text-align: center;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary);
    font-weight: 600;
    border-bottom: 2px solid var(--accent);
}

/* SERVICES GRID & CARDS */
.services {
    background-color: var(--light);
}

.section-title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: 800;
}

.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--accent);
    margin: 15px auto 0 auto;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.05rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(38, 60, 48, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(38, 60, 48, 0.12);
    border-color: var(--accent);
}

.service-img-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
}

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

.service-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(38, 60, 48, 0.08);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 18px;
}

.service-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-list li {
    font-size: 0.9rem;
    color: var(--dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list li i {
    color: var(--accent);
    font-size: 0.85rem;
}

.service-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background-color: rgba(38, 60, 48, 0.05);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 6px;
    transition: var(--transition);
}

.service-card:hover .service-btn {
    background-color: var(--primary);
    color: var(--white);
}

.service-btn i {
    transition: transform 0.3s ease;
}

.service-btn:hover i {
    transform: translateX(4px);
}

/* ABOUT SECTION (KORRIGIERT) */
.about {
    background: var(--white);
    padding: 80px 20px;
    border-top: 1px solid rgba(38, 60, 48, 0.1);
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-content {
    flex: 1.2;
    min-width: 300px;
}

.about-content h2 {
    font-size: 2.4rem;
    margin-bottom: 25px;
    color: var(--primary);
    font-weight: 800;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-gray);
    font-size: 1.05rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--primary-light);
}

.benefit-item span {
    color: var(--accent);
    font-size: 1.3rem;
}

.about-image {
    flex: 0.8;
    min-width: 300px;
    width: 100%;
    animation: slideInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* GALERIE SECTION */
.gallery-section {
    background-color: var(--white);
    border-top: 1px solid rgba(38, 60, 48, 0.1);
}

.gallery-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(38, 60, 48, 0.12);
    height: 100%;
    transition: var(--transition);
}

.gallery-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 15px 35px rgba(197, 168, 128, 0.2);
}

.gallery-img-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-body {
    padding: 20px;
}

.gallery-body h4 {
    font-size: 1.15rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 8px;
}

.gallery-body p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* STANDORT & REVIEWS */
.reviews-section {
    background-color: var(--light);
}

.section-title-dark {
    color: var(--primary);
}

.map-wrapper {
    min-height: 340px;
    background-color: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
}

.review-card {
    background-color: #ffffff;
    border: 1px solid rgba(0,0,0,0.05) !important;
}

.stars {
    color: var(--accent);
}

.review-title {
    color: #1f2937;
}

.review-text {
    color: var(--text-gray);
}

.btn-review-green {
    background-color: var(--primary);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.btn-review-green:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    color: #ffffff;
}

.btn-review-gold {
    background-color: var(--accent);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.btn-review-gold:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    color: #ffffff;
}

/* KONTAKT */
.contact {
    padding: 80px 20px;
    background: var(--primary);
    color: var(--white);
    border-top: 2px solid var(--accent);
}

.contact h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.contact-sub {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-container {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 10px;
    display: inline-block;
    font-weight: 700;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.contact-item span:first-child {
    font-size: 1.5rem;
    color: var(--accent);
}

.contact-form {
    flex: 1.2;
    min-width: 300px;
    max-width: 550px;
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(197, 168, 128, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(197, 168, 128, 0.3);
    background: rgba(38, 60, 48, 0.4);
    color: var(--white);
    border-radius: 4px;
    font-size: 1rem;
    outline: none;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    background: var(--accent);
    color: var(--primary);
    padding: 14px;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
}

.submit-btn:hover {
    background: var(--accent-hover);
}

/* FOOTER */
footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 40px 20px;
    font-size: 14px;
}

footer a {
    color: var(--accent);
}

/* STICKY MOBILE NAVIGATION */
.sticky-mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    border-top: 1px solid rgba(197, 168, 128, 0.25);
    display: none;
    justify-content: space-around;
    padding: 12px 20px;
    z-index: 1001;
}

.sticky-mobile-nav .btn-sticky {
    flex: 1;
    margin: 0 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    min-height: 48px;
    text-transform: uppercase;
}

.sticky-mobile-nav .btn-phone {
    background: var(--accent);
    color: var(--primary);
}

.sticky-mobile-nav .btn-whatsapp {
    background: transparent;
    border: 1px solid var(--whatsapp);
    color: var(--whatsapp);
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #263c30;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 10000;
    display: none;
    max-width: 500px;
}

.cookie-banner h4 {
    margin-top: 0;
}

.cookie-banner p {
    font-size: 14px;
    color: #e0e0e0;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.cookie-actions button {
    background: #fff;
    color: #263c30;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.cookie-actions a {
    color: #fff;
    font-size: 14px;
    align-self: center;
    text-decoration: underline;
}

/* RESPONSIVE ANPASSUNGEN (HANDY) */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
        padding-bottom: 60px;
    }
    .hero-bg-image {
        min-height: 380px;
        padding: 50px 15px;
    }
    .hero-bg-img-element {
        object-position: 65% center;
    }
    .hero-bg-image h1 {
        font-size: 1.8rem;
    }
    .hero-bg-image h1 span {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 0;
    }
    .about-image {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        max-width: 90%;
    }
    .about-image img {
        margin: 0 auto;
    }
    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        border-radius: 8px;
        margin-top: 15px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    .sticky-mobile-nav {
        display: flex;
    }
    .gallery-img-wrapper {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        height: 48px;
    }
}