* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
}

.logo {
    width: 10vw;
    mix-blend-mode: screen; /* Makes white disappear */
    vertical-align: middle;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: white;
    background-image: url('images-640/forest-4916669_640.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

header {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2e 100%);
    color: white;
    padding: 0.5rem 0;
    position: sticky;
    margin: 0;
    top: 0;
    z-index: 1000;
}

.intro {
    background: url('photos/house.jpg');
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: ivory;
}

.intro-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.intro-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-button {
    padding: 1rem 2.5rem;
    background: #f4d03f;
    color: #333;
    text-decoration: none;
    vertical-align: middle;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

a {
    color: #f4d03f;
    text-decoration: underline;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: ivory;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: ivory;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    color: #2d5016;
}

.feature-link {
    color: #2d5016;
    text-decoration: underline;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.season-card {
    background: ivory;
    color: #2d5016;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.season-card h3 {
    font-size: 1.8rem;
    margin: 1rem 0;
}

.interior {
    background: linear-gradient(135deg, #4a7c2e 0%, #2d5016 100%);
    color: ivory;
}

.interior-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.datenschutz {
    background: linear-gradient(135deg, #4a7c2e 0%, #2d5016 100%);
    color: ivory;
}

.highlight {
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-info {
    margin-top: 2rem;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .intro-content h1 {
        font-size: 2.5rem;
    }
}

.gallery {
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s;
    aspect-ratio: 4/3;
}

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

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(45,80,22,0.9));
    padding: 1rem;
}

#map {
    margin-top: 2rem;
    height: 50vh;
    width: 100%;
}
