/********** CSS **********/
:root {
    --primary: #ad9679;
    --secondary: #464545;
    --light: #F5F5F5;
    --dark: #cab396;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .btn:hover {
    color: #FFFFFF !important;
    background: var(--primary) !important;
}


/*** Header ***/
.header-carousel .carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(22, 22, 22, .7);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 15px;
    transition: .5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: #FFFFFF;
    border-radius: 5px;
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(22, 22, 22, .7), rgba(22, 22, 22, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service ***/
.service-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-item {
    border-color: rgba(0, 0, 0, .03) !important;
}

.service-item .btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 38px;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-inner {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.portfolio-inner img {
    transition: .5s;
}

.portfolio-inner:hover img {
    transform: scale(1.1);
}

.portfolio-inner .portfolio-text {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -50px;
    opacity: 0;
    transition: .5s;
}

.portfolio-inner:hover .portfolio-text {
    bottom: 0;
    opacity: 1;
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .team-social {
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 22, 22, .7);
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 1;
}

.team-item .team-social .btn {
    opacity: 0;
}

.team-item:hover .team-social .btn {
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    border-radius: 60px;
    opacity: .4;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}








/* --- SOULDESIGN BRANDING BEIGE --- */

/* 1. Die obere Leiste (wo Los Angeles steht) */
.top-header {
    background-color: #3c3c39 !important;
}

/* 2. Das Logo "DIGITAL ART" */
.navbar-brand span, .navbar-brand {
    color: #cab396 !important;
}

/* 3. Die 3 Infoboxen (Wir überschreiben das spezifische Purple) */
.bg-purple, 
.features-box.bg-purple, 
.service-box.bg-purple {
    background-color: #cab396 !important;
}

/* 4. Die Grafiken/Icons im "About Us" Bereich */
.about-box .icon i, 
.about-box i,
.text-purple {
    color: #cab396 !important;
}

/* 5. Happy Clients & Zahlen */
.counter-box h2, 
.counter-box .count-number {
    color: #cab396 !important;
}

/* 6. Alle lila Buttons */
.btn-purple {
    background-color: #cab396 !important;
    border-color: #cab396 !important;
    color: #ffffff !important;
}

/* 7. Die lila Trennlinien (hr) */
hr.purple-line, .hr-purple {
    border-top: 2px solid #cab396 !important;
}

/* 8. Footer Rettung (Creme/Beige) */
#footer, .footer-section {
    background-color: #fffaf0 !important;
    color: #45423E !important;
}






/* --- SOULDESIGN LANDING TYPOGRAPHIE-UPGRADE --- */

/* 1. Die Hauptüberschriften (H1, H2) - Luftig & Edel */
h1, .display-1, .display-2, .display-5 {
    font-size: 2.2rem !important;
    font-weight: 300 !important;
    letter-spacing: 4px !important;
    text-transform: uppercase;
    color: #5D4037 !important;
    line-height: 1.4;
}

h2, .display-6 {
    font-size: 1.6rem !important;
    font-weight: 300 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase;
    color: #5D4037 !important;
}

/* 2. Die Akzent-Überschriften (H3, H4, H5) - Gold & Klar */
h3, h4 {
    font-size: 1.1rem !important;
    font-weight: 400 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase;
    color: #cab396 !important;
}

h5 {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    color: #a08e78 !important;
}

/* 3. Der Fließtext - Klein, aber fein lesbar */
p, span, li {
    font-size: 0.92rem !important; /* Etwas kleiner für den Magazin-Look */
    line-height: 1.8 !important;   /* Mehr Zeilenabstand lässt den Text "atmen" */
    color: #5D4037 !important;
    font-weight: 300;
}

/* 4. Buttons - Zierlich und schick */
.btn {
    font-size: 0.8rem !important;
    letter-spacing: 2px !important;
    text-transform: uppercase;
    padding: 12px 30px !important;
    border-radius: 50px !important; /* Sanfte Kurven */
}




/* Slider-Höhe auf 500px begrenzen */


<style>
    

    /* 1. TYPOGRAFIE (Elegant & Braun) */
    html body h1, html body .display-5 {
        font-size: 2.2rem !important;
        letter-spacing: 4px !important;
        font-weight: 300 !important;
        text-transform: uppercase !important;
        color: #5D4037 !important;
        line-height: 1.4 !important;
    }

    html body p, html body span {
        font-size: 0.95rem !important;
        line-height: 1.8 !important;
        color: #5D4037 !important;
    }

    /* 2. SLIDER (Photoshop-Banner Edition) */
    .header-carousel, .header-carousel .owl-carousel-item {
        height: 500px !important;
        min-height: 500px !important;
        background-color: #ffffff !important;
    }

    .header-carousel .owl-carousel-item img {
        width: 100% !important;
        height: 500px !important;
        object-fit: cover !important;
        object-position: left center !important;
    }

    /* Entfernt den dunklen Schleier über dem Bild */
    .header-carousel .carousel-inner {
        background: transparent !important;
    }

    /* Schiebt den Slogan nach rechts auf die freie Fläche */
    .header-carousel .carousel-caption {
        text-align: left !important;
        left: 55% !important; 
        width: 40% !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }

    /* 3. FARBEN (Beige-Gold statt Lila) */
    .bg-primary, .btn-primary, .top-header {
        background-color: #cab396 !important;
        border-color: #cab396 !important;
    }

    .text-primary, .navbar-brand, .navbar-brand span {
        color: #cab396 !important;
    }

    /* 4. FOOTER (Creme) */
    footer, #footer {
        background-color: #fffaf0 !important;
        color: #5D4037 !important;
    }

    /* 5. BOXEN-SCHATTEN (Edel-Effekt) */
    .row.align-items-center.shadow-sm {
        box-shadow: 0 20px 50px rgba(202, 179, 150, 0.15) !important;
    }
</style>




/* --- DER KOMPLETTE SOULDESIGN SLIDER-CODE --- */

/* 1. Grundgerüst & Höhe */
.header-carousel, 
.header-carousel .owl-carousel-item,
.carousel-inner {
    height: 500px !important;
    min-height: 500px !important;
    background-color: #ffffff !important;
    background: transparent !important;
    overflow: hidden;
}

/* 2. Tempo & Bewegung (Sanftes Schieben) */
.carousel-item {
    transition: transform 1.5s ease-in-out !important;
}

/* 3. Bild-Position (1cm / 40px vom linken Rand, bündig unter Logo) */
.header-carousel .owl-carousel-item img {
    width: 548px !important;
    height: 500px !important;
    object-fit: cover !important;
    position: absolute !important;
    top: 0 !important;
    left: 40px !important; 
}

/* 4. Text-Position (Sicherer Abstand zum Bild) */
.header-carousel .carousel-caption {
    text-align: left !important;
    left: 620px !important; 
    right: 5% !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    padding: 0 !important;
}

/* 5. Navigations-Punkte (Gold-Beige statt Lila) */
.carousel-indicators [button] {
    background-color: #cab396 !important;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(70%) sepia(20%) saturate(500%) hue-rotate(330deg) !important;
}






/* --- DAS KOMPLETTE SOULDESIGN FINALE --- */

/* 1. GRUNDFARBEN & TYPOGRAFIE */
html body h1, html body .display-5 { font-size: 2.0rem !important; 
letter-spacing: 4px !important; color: #5D4037 !important; 
text-transform: uppercase !important; font-weight: 300 !important; }
html body h2, html body .display-6 { font-size: 1.5rem !important; 
letter-spacing: 3px !important; color: #5D4037 !important; 
text-transform: uppercase !important; font-weight: 300 !important; }
html body h4, html body h3 { font-size: 1.05rem !important; 
letter-spacing: 2px !important; 
color: #cab396 !important; text-transform: uppercase !important; }
html body p { font-size: 0.92rem !important; 
line-height: 1.8 !important; color: #5D4037 !important; 
font-weight: 300 !important; }

/* 2. LILA-KILLER (FARBEN) */
.bg-primary, .btn-primary, .top-header, .btn-sm-square.bg-primary 
{ background-color: #cab396 !important; border-color: #cab396 !important; }
.text-primary, .navbar-brand, .navbar-brand span { color: #cab396 !important; }
.btn-primary { border-radius: 50px !important; font-size: 0.75rem !important; 
letter-spacing: 2px !important; }





/* 3. SLIDER POSITIONIERUNG - MIT HINTERGRUND-FIX */
.header-carousel, .carousel-inner, .carousel-item { 
    height: 500px !important; 
    min-height: 500px !important; 
    /* background: #fff !important; <-- Diese Zeile wurde entfernt/geändert */
    overflow: hidden; 
}

/* Bild-Container: Fixiert das Bild links mit 40px Abstand */
.col-lg-auto.p-0 {
    width: 588px !important; 
    position: relative !important;
    height: 500px !important;
    background: transparent !important; /* Wichtig, damit das Hintergrundbild durchscheint */
}

.header-carousel .owl-carousel-item img { 
    position: absolute !important;
    left: 40px !important; 
    width: 548px !important; 
    height: 500px !important; 
    object-fit: cover !important; 
    top: 0 !important;
    z-index: 2; /* Bild der Queen liegt über dem Hintergrund */
}

/* Textbereich: Zentriert im Restplatz */
.carousel-item .col-lg {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important; 
    align-items: center !important;
    height: 500px !important;
    text-align: center !important;
    background: transparent !important;
}

/* Weißer Text & Zentrierung */
.carousel-item h1, .carousel-item h5, .carousel-item p {
    color: #ffffff !important;
    text-align: center !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Mobil-Fix bleibt gleich */
@media (max-width: 991px) {
    .col-lg-auto.p-0 { width: 100% !important; }
    .header-carousel .owl-carousel-item img { left: 0 !important; width: 100% !important; }
    .carousel-item .col-lg {
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 5 !important;
        background: rgba(0,0,0,0.3) !important;
        pointer-events: none !important;
    }
    .carousel-item .col-lg a.btn { pointer-events: auto !important; }
    .carousel-control-prev, .carousel-control-next { z-index: 10 !important; }
}





/* --- TOPBAR FÜR 51PX LOGO --- */
.top-bar-container {
    background-color: #3c3c39 !important;
    height: 70px !important; /* Erhöht auf 70px für das 51px Logo */
    display: flex;
    align-items: center;
    padding: 0 40px !important; /* Fluchtlinie zum Hauptlogo */
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    height: 70px;
}

/* Das Logo-Symbol mit exakt 51px */
.top-bar-icon {
    height: 51px !important; 
    width: auto !important;
    margin-right: 20px;
    display: block;
}

/* Texte vertikal mittig ausrichten */
.top-bar-left span, 
.top-bar-right a, 
.top-bar-right i {
    color: #ffffff !important;
    font-size: 1rem; /* Etwas präsenter für die 70px Leiste */
    text-decoration: none;
    line-height: 70px; /* Zentriert den Text vertikal zur Leistenhöhe */
}






/* 1. Die allgemeine Regel für alle Slider-H1 (als Basis) */
.carousel-item h1 {
    font-weight: 300 !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
}

/* 2. Speziell für den COMING SOON Slider (Riesig) */
.display-coming-soon {
    font-size: 4.5rem !important; /* Hier die gewünschte Riesengröße */
    white-space: nowrap !important;
    line-height: 1.1 !important;
    letter-spacing: 5px !important;
}

/* 3. Speziell für den STANDARD Slider (Normal/Elegant) */
.display-standard {
    font-size: 2.2rem !important; /* Hier die normale Größe */
    line-height: 1.3 !important;
    letter-spacing: 2px !important;
}

/* Mobil-Anpassung */
@media (max-width: 991px) {
    .display-coming-soon {
        font-size: 2.2rem !important;
        white-space: normal !important;
    }
    .display-standard {
        font-size: 1.8rem !important;
    }
}

.carousel-item h5 {
    color: #736833 !important; /* Dein Gold-Beige */
    letter-spacing: 3px !important;
    font-weight: 400 !important;
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
	
	
	
	
	
	
}

/* 2. Der dunkle Fließtext unter der Überschrift */
.carousel-item p {
    color: #433523 !important; /* Dein dunkler Braunton */
    font-size: 0.95rem !important;
    line-height: 1.8 !important;
    font-weight: 300 !important;
    max-width: 600px; /* Damit der Text nicht zu breit läuft */
    margin-left: auto;
    margin-right: auto;
}

/* 3. Die h1 Überschriften (bleiben weiß für den Kontrast) */
.carousel-item h1 {
    color: #ffffff !important;
    font-weight: 300 !important;
    text-transform: uppercase !important;
}




/* AURA LICHT - */
 
/* --- 1. GEISTER-STOPP (Löscht doppelte Texte/Logos) --- */
.carousel-caption, 
.carousel-item::after, 
.carousel-item::before {
    display: none !important;
    content: none !important;
}

/* --- 2. DAS LICHT (Deine kraftvollen Kugeln) --- */
.aura-licht { 
    position: relative; 
    overflow: hidden; 
}

.power-licht {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    filter: blur(20px);
    z-index: 5;
    pointer-events: none;
    opacity: 0.8;
}

.l1 { top: 10%; animation: fegen1 8s infinite linear; }
.l2 { top: 50%; animation: fegen2 10s infinite linear; }

@keyframes fegen1 {
    0% { left: -400px; }
    100% { left: 100%; }
}
@keyframes fegen2 {
    0% { right: -400px; }
    100% { right: 100%; }
}

/* --- 3. FIX FÜR LOGO & TEXT --- */
.aura-licht .container {
    position: relative;
    z-index: 20; /* Liegt über dem Licht */
}

/* Stellt sicher, dass dein manuelles Logo sichtbar bleibt */
.aura-licht img[style*="width: 150px"] {
    display: block !important;
	
		
}



/* --- Souldesign Portfolio Breitband-Look --- */

.portfolio-row-wide {
    display: flex !important;
    flex-wrap: wrap;
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(202, 179, 150, 0.1); /* Hauchdünner Rand für mehr Definition */
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 60px; /* Abstand zwischen den Projekten */
    margin-top: 20px;    /* Platz nach oben, damit man den Schatten sieht */
    align-items: stretch;
    
    /* Die Schattenkante - weich und hochwertig in deinem Gold-Beige-Ton */
    box-shadow: 0 15px 45px rgba(202, 179, 150, 0.2); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Kleiner Effekt: Beim Drüberfahren hebt sich die Box leicht an */
.portfolio-row-wide:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 55px rgba(202, 179, 150, 0.25);
}

.portfolio-row-wide.reverse {
    flex-direction: row-reverse !important;
}

.wide-image-part {
    flex: 0 0 65% !important;
    max-width: 65% !important;
    /* Ändere min-height in height um und nutze !important */
    height: 380px !important; 
    overflow: hidden;
}


.wide-image-part img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.95;
    transition: transform 1.5s ease;
}

.wide-text-part {
    flex: 0 0 35% !important;
    max-width: 35% !important;
    padding: 3vw !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

/* Typografie */
.label-bento { font-size: 0.65rem; letter-spacing: 3px; color: #cab396; text-transform: uppercase; margin-bottom: 0.5rem; display: block; }
.h4-bento { color: #5D4037; font-weight: 300; font-size: 1.5rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem; display: block; }
.p-bento { color: #a08e78; font-size: 0.85rem; line-height: 1.6; font-weight: 300; letter-spacing: 0.3px; margin: 0; }

@media (max-width: 991px) {
    .portfolio-row-wide, .portfolio-row-wide.reverse { flex-direction: column !important; }
    .wide-image-part, .wide-text-part { flex: 0 0 100% !important; max-width: 100% !important; }
    .wide-image-part { min-height: 300px; height: 300px; }
    .wide-text-part { padding: 2.5rem 1.5rem !important; }
}



strong, b { font-weight: bold !important; }
em { font-style: italic !important; }


















