:root {
    --primary-blue: #39868e;
    --dark-bg: #1a1a1a;
    --text-dark: #333;
    --text-light: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

@font-face {
    font-family: 'WastedVindey';
    src: url('fonts/wasted-vindey/Wasted-Vindey.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'WastedVindey', sans-serif;
    padding-top: 115px;
}


/* Header Styles */
.header {
    background: var(--primary-blue);
    padding: 1rem;
    position: fixed;
    width: 100%;
    height: 15%;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    text-decoration: none;
    color: var(--text-dark);
}

.logo { 
    font-size: 2.5rem;
    font-weight: bold;
}

.logo-subtitle {
    font-size: 1.2rem;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* Navigation Styles */
.nav-menu {
    background: var(--primary-blue);
}

.nav-item {
    display: block;
    padding: 1rem;
    color: var(--text-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.nav-item:hover {
    background-color: rgba(0,0,0,0.1);
}

/* Hero Section Styles */
.hero {
    height: 100vh;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: 3rem;
    color: var(--text-dark);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* Team Section Styles */
.team-section {
    padding: 2rem;
    background: var(--text-light);
}

.team-image {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: block;
}

/* Contact Section Styles */
.contact-section {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 3rem 2rem;
}

.contact-heading {
    color: var(--primary-blue);
    margin-bottom: 2rem;
    text-align: center;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info p {
    margin: 1rem 0;
    line-height: 1.6;
}

/* Map Section Styles */
.map-section {
    height: 300px;
    background: #eee;
    margin-top: 2rem;
}

/* Properties Section Styles */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.property-card {
    background: var(--text-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.property-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.property-info {
    padding: 1rem;
}

/* Services Section Styles */
.services-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.service-item {
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--text-light);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: block;
    }
}

.clipped-image {
    width: 40%;
    height: auto;
    clip-path: inset(30% 0 30% 0); /* Schneidet obere und untere 30% weg */
}

.a {
    fill: white;
}

.w3-slideshow {
    width:300px;
    margin:auto;
}

.slideshow-container {
    position: relative;
    max-width: 600px;
    margin: auto;
}
.slides {
    display: none;
    width: 100%;
}
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    padding: 10px;
    cursor: pointer;
    border: none;
}
.prev { left: 0; }
.next { right: 0; }