/* === CSS VARIABLES === */
        :root {
            --color-sandstein: #F5F1EB;
            --color-weiss: #FAFAFA;
            --color-main-blau: #4A90E2;
            --color-weinberg-gruen: #87A96B;
            --color-tiepolo-gold: #F4D03F;
            --color-text-dunkel: #2C3E50;
            --color-text-grau: #7F8C8D;
            
            --font-primary: 'Inter', sans-serif;
            --font-accent: 'Playfair Display', serif;
            
            --spacing-xs: 0.5rem;
            --spacing-sm: 1rem;
            --spacing-md: 2rem;
            --spacing-lg: 4rem;
            --spacing-xl: 6rem;
            
            --border-radius: 12px;
            --border-radius-lg: 24px;
            --transition: all 0.3s ease;
            --box-shadow: 0 10px 40px rgba(44, 62, 80, 0.1);
        }

        /* === RESET & BASE === */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-primary);
            color: var(--color-text-dunkel);
            line-height: 1.6;
            background-color: var(--color-sandstein);
        }

        /* === UTILITIES === */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--spacing-sm);
        }

        .section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: var(--spacing-xl) 0;
        }

        .section--medium {
            min-height: 75vh;
        }

        .btn {
            display: inline-block;
            padding: var(--spacing-sm) var(--spacing-md);
            background: var(--color-tiepolo-gold);
            color: var(--color-text-dunkel);
            text-decoration: none;
            border-radius: var(--border-radius);
            font-weight: 500;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn:hover {
            background: #F1C30F;
            transform: translateY(-2px);
            box-shadow: var(--box-shadow);
        }

        .btn--secondary {
            background: var(--color-main-blau);
            color: white;
        }

        .btn--secondary:hover {
            background: #357ABD;
        }

        /* === NAVIGATION === */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(250, 250, 250, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: var(--transition);
        }

        .nav__container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: var(--spacing-sm) var(--spacing-sm);
        }

        .nav__logo {
            font-family: var(--font-accent);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-main-blau);
            text-decoration: none;
        }

        .nav__menu {
            display: flex;
            list-style: none;
            gap: var(--spacing-md);
        }

        .nav__link {
            color: var(--color-text-dunkel);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .nav__link:hover {
            color: var(--color-main-blau);
        }

        .nav__link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-main-blau);
            transition: var(--transition);
        }

        .nav__link:hover::after {
            width: 100%;
        }

        /* === HERO SECTION === */
        .hero {
            background: linear-gradient(135deg, var(--color-sandstein) 0%, var(--color-weiss) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: -10%;
            width: 40%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,20 Q50,5 80,20 Q90,50 80,80 Q50,95 20,80 Q10,50 20,20" fill="none" stroke="%23F4D03F" stroke-width="0.5" opacity="0.3"/></svg>') repeat;
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        .hero__content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            z-index: 2;
            position: relative;
        }

        .hero__title {
            font-family: var(--font-accent);
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: var(--spacing-sm);
            color: var(--color-text-dunkel);
        }

        .hero__subtitle {
            font-size: clamp(1.1rem, 2vw, 1.5rem);
            color: var(--color-text-grau);
            margin-bottom: var(--spacing-lg);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero__cta {
            display: flex;
            gap: var(--spacing-sm);
            justify-content: center;
            flex-wrap: wrap;
        }

        /* === GRID LAYOUTS === */
        .grid {
            display: grid;
            gap: var(--spacing-md);
        }

        .grid--3col {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }

        .grid--2col {
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        }

        .hero__address {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            padding: var(--spacing-sm) var(--spacing-md);
            margin-top: var(--spacing-lg);
            display: inline-block;
            border: 1px solid rgba(74, 144, 226, 0.2);
        }

        .hero__address-label {
            font-size: 0.85rem;
            color: var(--color-text-grau);
            margin-bottom: 0.25rem;
            display: block;
        }

        .hero__address-text {
            font-weight: 600;
            color: var(--color-text-dunkel);
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* === CARDS === */
        .card {
            background: var(--color-weiss);
            border-radius: var(--border-radius-lg);
            padding: var(--spacing-md);
            transition: var(--transition);
            border: 1px solid rgba(74, 144, 226, 0.1);
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: var(--box-shadow);
        }

        .card__icon {
            width: 60px;
            height: 60px;
            background: var(--color-main-blau);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: var(--spacing-sm);
            color: white;
            font-size: 1.5rem;
        }

        .card__title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: var(--spacing-xs);
            color: var(--color-text-dunkel);
        }

        .card__text {
            color: var(--color-text-grau);
            line-height: 1.6;
        }

        /* === SECTIONS === */
        .section__header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto var(--spacing-lg);
        }

        .section__title {
            font-family: var(--font-accent);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            margin-bottom: var(--spacing-sm);
            color: var(--color-text-dunkel);
        }

        .section__subtitle {
            font-size: 1.1rem;
            color: var(--color-text-grau);
            max-width: 500px;
            margin: 0 auto;
        }

        .about {
            background: var(--color-weiss);
        }

        .features {
            background: var(--color-sandstein);
        }

        .location {
            background: linear-gradient(135deg, var(--color-main-blau) 0%, #357ABD 100%);
            color: white;
        }

        .location .section__title,
        .location .section__subtitle {
            color: white;
        }

        .location .card {
            background: rgba(255, 255, 255, 0.95);
        }

        .community {
            background: var(--color-weiss);
        }

        .contact {
            background: var(--color-sandstein);
        }

        /* === TESTIMONIALS === */
        .testimonial {
            background: var(--color-weiss);
            border-radius: var(--border-radius-lg);
            padding: var(--spacing-md);
            text-align: center;
            position: relative;
            border-left: 4px solid var(--color-weinberg-gruen);
        }

        .testimonial__quote {
            font-style: italic;
            font-size: 1.1rem;
            margin-bottom: var(--spacing-sm);
            color: var(--color-text-grau);
        }

        .testimonial__author {
            font-weight: 700;
            color: var(--color-text-dunkel);
        }

        .testimonial__role {
            font-size: 0.9rem;
            color: var(--color-text-grau);
        }

        /* === IMAGE GALLERY === */
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--spacing-sm);
            margin-top: var(--spacing-lg);
        }

        .gallery__item {
            position: relative;
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            aspect-ratio: 4/3;
            cursor: pointer;
            transition: var(--transition);
        }

        .gallery__item:hover {
            transform: translateY(-5px);
            box-shadow: var(--box-shadow);
        }

        .gallery__image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .gallery__item:hover .gallery__image {
            transform: scale(1.05);
        }

        .gallery__overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            color: white;
            padding: var(--spacing-sm);
            transform: translateY(100%);
            transition: var(--transition);
        }

        .gallery__item:hover .gallery__overlay {
            transform: translateY(0);
        }

        .gallery__title {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .gallery__description {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Hero Hintergrund für Hofgarten-Bild */
        .hero--with-image {
            background: linear-gradient(rgba(74, 144, 226, 0.8), rgba(53, 122, 189, 0.8)), 
                        url('[HOFGARTEN_BILD_URL]') center/cover no-repeat;
            color: white;
        }

        .hero--with-image .hero__title,
        .hero--with-image .hero__subtitle {
            color: white;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        /* Responsive Anpassungen für Galerie */
        @media (max-width: 768px) {
            .gallery {
                grid-template-columns: 1fr;
                gap: var(--spacing-sm);
            }
            
            .gallery__item {
                aspect-ratio: 16/9;
            }
        }

        /* === FORM === */
        .form {
            background: var(--color-weiss);
            border-radius: var(--border-radius-lg);
            padding: var(--spacing-md);
            max-width: 500px;
            margin: 0 auto;
        }

        .form__group {
            margin-bottom: var(--spacing-sm);
        }

        .form__label {
            display: block;
            margin-bottom: var(--spacing-xs);
            font-weight: 500;
            color: var(--color-text-dunkel);
        }

        .form__input {
            width: 100%;
            padding: var(--spacing-sm);
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
        }

        .form__input:focus {
            outline: none;
            border-color: var(--color-main-blau);
            box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
        }

        .form__textarea {
            min-height: 120px;
            resize: vertical;
        }

        /* === RESPONSIVE === */
        @media (max-width: 768px) {
            .nav__menu {
                display: none;
            }
            
            .hero__cta {
                flex-direction: column;
                align-items: center;
            }
            
            .hero__address {
                margin-top: var(--spacing-sm);
                text-align: center;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }
            
            .grid--3col {
                grid-template-columns: 1fr;
            }
            
            .grid--2col {
                grid-template-columns: 1fr;
            }
            
            .section {
                padding: var(--spacing-md) 0;
            }
        }

        /* === ANIMATIONS === */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }