/* Dog Communication - Modern & Elegant Website Styles */
/* Weiß-grünes Design mit modernen Elementen */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600&display=swap');

:root {
    /* Farbpalette - Weiß und Grün */
    --primary-color: #5a6b4a;
    --primary-dark: #4a5a3a;
    --primary-light: #7a8b6a;
    --primary-lighter: #9aaa8a;
    --accent-green: #8b9a7a;
    
    /* Neutrale Farben */
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --text-muted: #9a9a9a;
    
    /* Hintergründe */
    --bg-white: #ffffff;
    --bg-off-white: #fafafa;
    --bg-light: #f5f7f4;
    --bg-cream: #f9f9f6;
    --bg-green-tint: rgba(90, 107, 74, 0.03);
    
    /* Borders & Shadows */
    --border-light: rgba(90, 107, 74, 0.1);
    --border-medium: rgba(90, 107, 74, 0.2);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 12px 40px rgba(0, 0, 0, 0.12);
    
    /* Übergänge */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Radii */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50%;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-medium);
    background-color: var(--bg-white);
    font-weight: 400;
    overflow-x: hidden;
}

/* Header & Navigation - Modern Sticky Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 var(--border-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

header.scrolled {
    box-shadow: var(--shadow-soft);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    max-width: 180px;
    height: auto;
    transition: var(--transition-fast);
}

.logo:hover {
    transform: scale(1.02);
}

/* Navigation - Modern und clean */
nav {
    background: transparent;
    border-top: none;
    margin-left: auto;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-menu {
    display: flex;
    justify-content: flex-end;
    flex-wrap: nowrap;
    list-style: none;
    gap: 5px;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 10px 18px;
    color: var(--text-medium);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-fast);
    border-radius: var(--radius-sm);
    letter-spacing: 0.3px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    background: var(--bg-green-tint);
}

/* Dropdown - Modern mit Animation */
.dropdown {
    position: relative;
}

.dropdown-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    min-width: 280px;
    box-shadow: var(--shadow-medium);
    border-radius: var(--radius-md);
    z-index: 1001;
    padding: 12px 0;
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: white;
    border-left: 1px solid var(--border-light);
    border-top: 1px solid var(--border-light);
}

.dropdown-content a {
    padding: 12px 24px;
    border-bottom: none;
    font-size: 13px;
    transition: var(--transition-fast);
}

.dropdown-content a:hover {
    background: var(--bg-green-tint);
    padding-left: 28px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
    padding: 10px;
    transition: var(--transition-fast);
}

.menu-toggle:hover {
    transform: scale(1.1);
}

/* Hero Section - Modern mit Gradient Overlay */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 120px 40px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

/* Hero mit Hintergrundbild */
.hero.hero-with-image {
    background: linear-gradient(rgba(90, 107, 74, 0.7), rgba(74, 88, 61, 0.8)), url('../images/bild1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
    background-size: 60px 60px;
    opacity: 0.5;
}

.hero.hero-with-image::before {
    display: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 120%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero.hero-with-image::after {
    display: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero .location {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Buttons - Modern mit Hover Effekten */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-size: 15px;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Section Styles - Modern mit viel Weißraum */
section {
    padding: 100px 40px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 60px;
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Grid - Moderne Cards mit Soft Shadows */
.services-section {
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border-light);
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 30px;
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* About Section - Modernes Layout */
.about-section {
    background: var(--bg-light);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-medium), transparent);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-lg);
    z-index: 0;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    position: relative;
    z-index: 1;
    transition: var(--transition-smooth);
}

.about-image:hover img {
    transform: translate(-5px, -5px);
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-size: 2.2rem;
    font-weight: 400;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-text p:last-of-type {
    font-style: italic;
    color: var(--primary-color);
    margin-top: 25px;
    font-weight: 500;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    text-align: center;
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.team-member img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
    border: 4px solid transparent;
    background: linear-gradient(var(--bg-white), var(--bg-white)) padding-box,
                linear-gradient(135deg, var(--primary-color), var(--primary-light)) border-box;
    transition: var(--transition-smooth);
}

.team-member:hover img {
    transform: scale(1.05);
}

.team-member h3 {
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 1.4rem;
    font-weight: 600;
}

.team-member .role {
    color: var(--primary-color);
    font-size: 0.95rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.team-member p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Features List */
.features-list {
    list-style: none;
    margin: 30px 0;
}

.features-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    color: var(--text-medium);
    font-size: 1.05rem;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    width: 24px;
    height: 24px;
    background: var(--bg-green-tint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pricing Table - Modern */
.pricing-section {
    background: var(--bg-white);
}

.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 40px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
}

.pricing-table th,
.pricing-table td {
    padding: 22px 30px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.pricing-table th {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr {
    transition: var(--transition-fast);
}

.pricing-table tr:hover {
    background: var(--bg-green-tint);
}

.pricing-table td:first-child {
    font-weight: 500;
    color: var(--text-dark);
}

.pricing-table td:last-child {
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
    font-size: 1.1rem;
}

/* Gallery - Modern Grid */
.gallery-section {
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: var(--shadow-soft);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(90,107,74,0.8) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

/* Contact Section */
.contact-section {
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 400;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-info-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 5px;
    width: 45px;
    height: 45px;
    background: var(--bg-green-tint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item div strong {
    display: block;
    margin-bottom: 5px;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-info-item div p,
.contact-info-item div a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-info-item div a:hover {
    color: var(--primary-color);
}

/* Contact Form - Modern */
.contact-form {
    background: var(--bg-white);
    padding: 45px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 15px;
    transition: var(--transition-fast);
    font-family: inherit;
    background: var(--bg-off-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(90, 107, 74, 0.1);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

/* Footer - Modern */
footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 70px 40px 30px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light), var(--accent-green), var(--primary-light));
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.footer-column h4 {
    margin-bottom: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: rgba(255,255,255,0.5);
}

.footer-column p,
.footer-column a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    line-height: 1.9;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: white;
    padding-left: 5px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.15);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-smooth);
    backdrop-filter: blur(4px);
}

.social-links a:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Cookie Banner - Modern */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.1);
    z-index: 9999;
    padding: 30px 40px;
    display: none;
    border-top: 1px solid var(--border-light);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h3 {
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
}

.cookie-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 800px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.cookie-btn-accept {
    background: var(--primary-color);
    color: white;
}

.cookie-btn-accept:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(90, 107, 74, 0.3);
}

.cookie-btn-decline {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border-light);
}

.cookie-btn-decline:hover {
    background: var(--border-light);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-btn-settings:hover {
    color: var(--primary-dark);
}

/* Cookie Settings Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: var(--bg-white);
    max-width: 550px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-strong);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.cookie-modal-header h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 600;
}

.cookie-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition-fast);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.cookie-close:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option-info h4 {
    color: var(--text-dark);
    margin-bottom: 6px;
    font-weight: 600;
}

.cookie-option-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Toggle Switch - Modern */
.toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ddd;
    border-radius: 28px;
    transition: var(--transition-fast);
}

.toggle-slider::before {
    content: "";
    position: absolute;
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: var(--transition-fast);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--primary-color);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(24px);
}

.toggle-switch input:disabled + .toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Admin Panel Styles */
.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-cream) 100%);
}

.admin-login-box {
    background: var(--bg-white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    width: 100%;
    max-width: 420px;
    border: 1px solid var(--border-light);
}

.admin-login-box h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 35px;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
}

.admin-panel {
    display: none;
    min-height: 100vh;
}

.admin-panel.show {
    display: block;
}

.admin-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-header h1 {
    font-size: 1.5rem;
    font-weight: 500;
}

.admin-nav {
    background: var(--primary-dark);
    padding: 0 40px;
}

.admin-nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
}

.admin-nav a {
    display: block;
    padding: 14px 24px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition-fast);
    font-weight: 500;
}

.admin-nav a:hover,
.admin-nav a.active {
    color: white;
    background: rgba(255,255,255,0.1);
}

.admin-content {
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.admin-section {
    display: none;
}

.admin-section.active {
    display: block;
}

.admin-section h2 {
    color: var(--text-dark);
    margin-bottom: 30px;
    font-size: 1.6rem;
    font-weight: 600;
}

/* Image Upload */
.image-upload-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.image-upload-item {
    border: 2px dashed var(--border-medium);
    border-radius: var(--radius-md);
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-off-white);
}

.image-upload-item:hover {
    border-color: var(--primary-color);
    background: var(--bg-green-tint);
}

.image-upload-item.has-image {
    border-style: solid;
    border-color: var(--primary-color);
    background: var(--bg-white);
}

.image-upload-item img {
    max-width: 100%;
    max-height: 150px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.image-upload-item .upload-placeholder {
    color: var(--text-muted);
}

.image-upload-item .upload-placeholder i {
    font-size: 45px;
    margin-bottom: 15px;
    display: block;
    color: var(--primary-light);
}

.image-upload-item input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.image-upload-item .remove-image {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #e74c3c;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    font-size: 18px;
    transition: var(--transition-fast);
}

.image-upload-item .remove-image:hover {
    background: #c0392b;
    transform: scale(1.1);
}

.image-upload-item.has-image .remove-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Admin Cards */
.admin-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
}

.admin-card h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Content Editor */
.content-editor {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid var(--border-light);
}

.content-editor label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600;
}

.content-editor textarea {
    width: 100%;
    min-height: 180px;
    padding: 15px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 14px;
    resize: vertical;
    background: var(--bg-off-white);
    transition: var(--transition-fast);
}

.content-editor textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--bg-white);
}

/* Save Button */
.save-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 14px 35px;
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.save-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(90, 107, 74, 0.3);
}

/* Alert Messages */
.alert {
    padding: 18px 25px;
    border-radius: var(--radius-sm);
    margin-bottom: 25px;
    font-weight: 500;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Testimonials - Modern */
.testimonials {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-cream) 100%);
    padding: 100px 40px;
    position: relative;
}

.testimonials::before {
    content: '"';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Playfair Display', serif;
    font-size: 150px;
    color: var(--primary-color);
    opacity: 0.08;
    line-height: 1;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    position: relative;
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonial-card p {
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.testimonial-card .author {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-card .author::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

/* Info Cards - Modern */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.info-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--border-medium);
}

.info-card i {
    font-size: 45px;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.info-card:hover i {
    transform: scale(1.1);
}

.info-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.25rem;
    font-weight: 600;
}

.info-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Opening Hours */
.opening-hours {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-md);
    margin-top: 25px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
}

.opening-hours-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
}

.opening-hours-row:last-child {
    border-bottom: none;
}

.opening-hours-row .day {
    color: var(--text-dark);
    font-weight: 600;
}

.opening-hours-row .time {
    color: var(--text-light);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 100px 40px 60px;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
    background-size: 60px 60px;
    opacity: 0.5;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.page-header p {
    opacity: 0.9;
    font-size: 1.15rem;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

/* Content Section */
.content-section {
    padding: 80px 40px;
}

.content-section.bg-light {
    background: var(--bg-light);
}

.content-block {
    max-width: 850px;
    margin: 0 auto;
}

.content-block h2 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 400;
    font-size: 2rem;
}

.content-block h3 {
    color: var(--text-dark);
    margin: 35px 0 18px;
    font-weight: 600;
    font-size: 1.3rem;
}

.content-block p {
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.content-block ul {
    margin: 20px 0;
    padding-left: 30px;
}

.content-block ul li {
    color: var(--text-medium);
    margin-bottom: 12px;
    line-height: 1.7;
}

/* Legal Pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

.legal-content h1 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 400;
    font-size: 2.5rem;
}

.legal-content h2 {
    color: var(--text-dark);
    margin: 40px 0 20px;
    font-weight: 600;
    font-size: 1.4rem;
}

.legal-content p {
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 18px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content ul li {
    color: var(--text-medium);
    margin-bottom: 10px;
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.news-item {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.news-date {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.news-item h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.news-item p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.news-pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.news-pdf-link:hover {
    color: var(--primary-dark);
}

.news-pdf-link i {
    font-size: 1.2rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Responsive - Mobile First */
@media (max-width: 1024px) {
    .header-top {
        padding: 15px 30px;
    }
    
    .nav-container {
        padding: 0 30px;
    }
    
    section {
        padding: 80px 30px;
    }
    
    .hero {
        padding: 160px 30px 100px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .about-content {
        gap: 50px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .header-top {
        position: relative;
        padding: 15px 20px;
    }
    
    .logo {
        max-width: 160px;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: var(--shadow-medium);
    }
    
    nav.show {
        display: block;
    }
    
    .nav-menu {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 15px 0;
        gap: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        padding: 15px 25px;
        border-bottom: 1px solid var(--border-light);
    }
    
    .dropdown-content {
        position: static;
        box-shadow: none;
        display: none;
        padding-left: 20px;
        transform: none;
        opacity: 1;
        visibility: visible;
        border: none;
        background: var(--bg-off-white);
    }
    
    .dropdown-content::before {
        display: none;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .hero {
        margin-top: 80px;
        padding: 100px 20px 80px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
    
    section {
        padding: 60px 20px;
    }
    
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image::before {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 1.9rem;
    }
    
    .services-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 30px;
    }
    
    .pricing-table {
        font-size: 0.9rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 15px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 130px 20px 60px;
        margin-top: 80px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .cookie-banner {
        padding: 25px 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .admin-login-box {
        padding: 35px 25px;
        margin: 20px;
    }
    
    .admin-header {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .admin-nav ul {
        flex-wrap: wrap;
    }
    
    .admin-content {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.9rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .service-card-content {
        padding: 20px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .team-member {
        padding: 30px 20px;
    }
}

/* News Grid auf Startseite */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.news-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Admin Image Manager - Neue Styles */
.image-manager-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.image-manager-item:hover {
    border-color: var(--primary-color);
}

.current-image-preview {
    width: 120px;
    height: 80px;
    background: #e9ecef;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.current-image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 0.8rem;
    text-align: center;
    padding: 10px;
}

.no-image-placeholder i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.image-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.image-info strong {
    color: var(--text-dark);
    font-size: 1rem;
}

.image-info .image-path {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-family: monospace;
}

.image-actions {
    display: flex;
    gap: 10px;
}

.btn-small {
    padding: 8px 15px;
    font-size: 0.85rem;
}

.btn-secondary {
    background: #6c757d;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-secondary:hover {
    background: #5a6268;
}

/* Gallery Grid Admin */
.gallery-grid-admin {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-item-admin {
    text-align: center;
}

.gallery-preview {
    width: 100%;
    aspect-ratio: 4/3;
    background: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 2rem;
}

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

.gallery-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

/* News Items Styling */
.news-item-admin {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.news-item-content {
    flex: 1;
}

.news-item-content .news-date {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.news-item-content h4 {
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.news-item-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.news-item-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn-danger {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-danger:hover {
    background: #c0392b;
}

/* Info Box */
.info-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.info-box h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-box p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.5;
}
