.elementor-38 .elementor-element.elementor-element-55ccc2b{--display:flex;}.elementor-38 .elementor-element.elementor-element-55ccc2b.e-con{--flex-grow:0;--flex-shrink:0;}@media(min-width:768px){.elementor-38 .elementor-element.elementor-element-55ccc2b{--width:78.157%;}}/* Start custom CSS for container, class: .elementor-element-55ccc2b *//* Grunddesign */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #cbcbcb;
}

header {
    background: #333;
    color: #fff;
    padding: 1rem;
    text-align: center;
    background: url("Bilder/Istanbul2_72.jpg") center/cover no-repeat;
    color: white;
    padding: 40px 20px;
    position: relative;
}
/* GRAUER BLOCK für Logo + Text */
.logo-area {
    position: relative;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(50, 50, 50, 0.9); /* grauer Hintergrund */
    padding: 15px 25px;
    border-radius: 10px;

    width: fit-content;
    margin: 0 auto; /* zentriert den Block */
}
/* Navigation */
nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    background: #444;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    display: block;
}
nav ul li a:hover{
    background:#a72f2f;
    color:white;
}

/* Flexbox Layout für den Inhalt */
.hero-flex {
    display: flex;
    flex-wrap: wrap; /* Wichtig für Handy-Ansicht */
    gap: 20px;
    padding: 20px;
}

.video-placeholder {
    flex: 2; /* Nimmt mehr Platz ein */
    background: #ddd;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #999;
}

.image-gallery {
    flex: 1; /* Nimmt weniger Platz ein */
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.slider-placeholder {
    background: #ccc;
    height: 100px;
    text-align: center;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: white;
    margin-top: 20px;
}
.carousel {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none; /* WICHTIG */
}

.slide.active {
    display: block; /* nur ein Bild sichtbar */
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.prev { left: 10px; }
.next { right: 10px; }/* End custom CSS */