/* 🎨 Google Material Icons */
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined');

/* Material Icons Base Styles */
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  vertical-align: middle;
}

/* Icon Sizes */
.material-icons.small { font-size: 18px; }
.material-icons.medium { font-size: 24px; }
.material-icons.large { font-size: 36px; }
.material-icons.xl { font-size: 48px; }

/* Wedding Venue Booking System - Main Styles */
/* Mobile First Design */

/* CSS Custom Properties */
:root {
    /* Farben werden dynamisch von PHP gesetzt, hier Fallback-Werte */
    --primary-color: #e74c3c;
    --primary-hover: #c0392b;
    --primary-light: #fadbd8;
    
    /* Sekundärfarben */
    --secondary-color: #2c3e50;
    --secondary-light: #34495e;
    
    /* Neutrale Farben */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #495057;
    --border-color: #dee2e6;
    
    /* Status Farben */
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --error-color: #e74c3c;
    --info-color: #3498db;
    
    /* Abstände */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    
    /* Schriftgrößen */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    
    /* Border Radius */
    --border-radius: 6px;
    --border-radius-lg: 12px;
    --border-radius-xl: 20px;
    
    /* Schatten */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
    
    /* Transitionen */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

/* Reset und Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

p {
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-hover);
}

/* Layout Komponenten */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.section-title p {
    font-size: 1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
}

.btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
    text-decoration: none;
    color: var(--white);
}

.btn-secondary {
    background: var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-light);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo:hover {
    color: var(--primary-hover);
}

/* Burger Menu */
.burger-menu {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.burger-line {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.burger-menu.open .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.open .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.open .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation - ERWEITERT MIT LOGO */
.nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    padding: 0;
    transition: right 0.3s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.nav.open {
    right: 0;
}

/* Mobile Menu Logo Section - NEU */
.nav-logo-section {
    padding: 30px 30px 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    gap: 0.5rem;
}

.nav-logo img {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    /* Logo in weiß für dunklen Hintergrund */
    filter: brightness(0) invert(1);
}

.nav-logo-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo-text .material-icons {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Mobile Menu Navigation Links */
.nav-links {
    padding: 20px 30px;
    flex: 1;
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

.nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

.nav a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 0;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--primary-color);
}

/* Hero Section - KORRIGIERT */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('https://images.unsplash.com/photo-1519167758481-83f29c8ae8d4?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero-content {
    padding: 0 20px;
    max-width: 90%;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: var(--white);
}

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

/* About Section */
.about {
    background: var(--light-gray);
}

.about-grid {
    display: block;
    margin-top: var(--spacing-xl);
}

.about-text, 
.about-image {
    padding: 0 20px;
    margin-bottom: 30px;
}

.about-text h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.about-text p {
    margin-bottom: 15px;
    color: #555;
    font-size: 0.95rem;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.capacity-info {
    margin-top: 15px;
    padding: 12px;
    background: rgba(231, 76, 60, 0.1);
    border-left: 3px solid var(--primary-color);
    border-radius: 5px;
    font-size: 0.9rem;
}

/* Features Section */
.features {
    padding: var(--spacing-2xl) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 20px;
    margin-top: var(--spacing-xl);
}

.feature {
    text-align: center;
    padding: 25px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.feature p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Inquiry Form Section */
.inquiry {
    background: var(--light-gray);
}

.inquiry-form {
    max-width: 100%;
    margin: var(--spacing-xl) 20px 0;
    background: var(--white);
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

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

.form-section h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #555;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Contact Section */
.contact {
    padding: var(--spacing-2xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 20px;
    margin-top: var(--spacing-xl);
}

.contact-item {
    text-align: center;
    padding: 25px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.contact-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.contact-item p {
    color: #555;
    font-size: 0.9rem;
    margin: 0;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

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

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

.footer-content {
    padding: 0 20px;
}

.footer-links {
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Messages */
.message-toast {
    position: fixed;
    top: 70px;
    left: 15px;
    right: 15px;
    padding: 15px;
    border-radius: 8px;
    color: var(--white);
    font-weight: 500;
    z-index: 1000;
    transition: opacity 0.3s ease;
    font-size: 0.9rem;
}

.message-toast.success {
    background: var(--success-color);
}

.message-toast.error {
    background: var(--error-color);
}

.message-toast.info {
    background: var(--info-color);
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--border-color);
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error States */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: var(--error-color);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.error-message {
    color: var(--error-color);
    font-size: var(--font-size-sm);
    margin-top: var(--spacing-xs);
}

/* Success States */
.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: var(--success-color);
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

/* 1. HERO OVERLAY FÜR BESSERE LESBARKEIT */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* 2. VIDEO-BUTTON AN BESTEHENDE BUTTON-STYLES ANPASSEN */
.video-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 25px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px; /* Gleiche Abrundung wie .btn */
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
}

.video-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
    text-decoration: none;
    color: var(--white);
}

.video-btn .material-icons {
    font-size: 1.25rem;
}

/* 3. ABOUT SECTION LAYOUT */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: var(--spacing-xl);
}

.about-text {
    max-width: none;
}

.about-media {
    position: relative;
}

.video-link {
    margin: 1.5rem 0;
}

/* 4. MASONRY GALERIE */
.about-masonry-gallery {
    columns: 2;
    column-gap: 1rem;
}

.about-gallery-item {
    position: relative;
    margin-bottom: 1rem;
    break-inside: avoid;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--light-gray);
}

.about-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.about-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.about-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-gallery-item:hover .about-gallery-overlay {
    opacity: 1;
}

.about-gallery-overlay .material-icons {
    color: white;
    font-size: 2rem;
}

/* 5. LIGHTBOX */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.9);
}

.lightbox.active {
    display: flex !important;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    cursor: pointer;
    z-index: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    z-index: 3;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    z-index: 3;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.2);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-counter {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.9rem;
    background: rgba(0,0,0,0.5);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    z-index: 3;
}

/* TABLET BREAKPOINT */
@media (min-width: 768px) {
    .container {
        padding: 0 30px;
    }
    
    .hero {
        background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                          url('https://images.unsplash.com/photo-1519167758481-83f29c8ae8d4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .inquiry-form {
        margin: var(--spacing-xl) auto 0;
        max-width: 700px;
        padding: 35px;
    }
    
    .footer-links {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }
    
    .message-toast {
        left: auto;
        right: 20px;
        max-width: 400px;
    }
}

/* DESKTOP BREAKPOINT */
@media (min-width: 1024px) {
    .header-content {
        padding: 0 30px;
    }
    
    .burger-menu {
        display: none;
    }
    
    .nav {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        right: 0;
        display: flex;
        flex-direction: row;
        gap: 30px;
    }
    
    /* Desktop Navigation - Logo Section ausblenden */
    .nav-logo-section {
        display: none;
    }
    
    .nav-links {
        padding: 0;
        display: flex;
        gap: 30px;
    }
    
    .nav a {
        display: inline;
        color: #333;
        padding: 0;
        border: none;
        font-size: 1rem;
    }
    
    .nav a:hover {
        color: var(--primary-color);
    }
    
    .nav-overlay {
        display: none;
    }
    
    .hero {
        background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                          url('https://images.unsplash.com/photo-1519167758481-83f29c8ae8d4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .inquiry-form {
        max-width: 800px;
        padding: 40px;
    }
}

/* MOBILE RESPONSIVE ANPASSUNGEN */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-masonry-gallery {
        columns: 2;
        column-gap: 0.5rem;
    }

    .about-gallery-item {
        margin-bottom: 0.5rem;
    }

    .video-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }

    .lightbox-nav {
        top: auto;
        bottom: 80px;
        transform: none;
        font-size: 1.5rem;
        padding: 0.75rem;
    }

    .lightbox-prev {
        left: 20px;
    }

    .lightbox-next {
        right: 20px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
    }

    .lightbox-counter {
        bottom: 20px;
    }

    .hero {
        background-attachment: scroll; /* Bessere Performance auf Mobile */
    }
    
    /* Mobile Menu Logo Anpassungen */
    .nav-logo img {
        max-width: 85%;
        height: auto;
    }
    }
    
    .nav-logo-text {
        font-size: 1.1rem;
    }
    
    .nav-logo-text .material-icons {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .about-masonry-gallery {
        columns: 1;
    }

    .video-link {
        margin: 1rem 0;
    }

    .video-btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem;
    }
    
    .nav {
        width: 100%;
    }
    
    .nav-logo-section {
        padding: 25px 20px 15px 20px;
    }
    
    .nav-links {
        padding: 15px 20px;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .hero {
        background-attachment: scroll;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #c41e3a;
        --secondary-color: #000000;
        --border-color: #000000;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        border-width: 3px;
    }
}

/* Focus Styles */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}