/* Über uns Page - PROFESSIONELLES MODERN DESIGN */

/* Body Override */
body.about-page {
    background: linear-gradient(135deg, #2D1F1A 0%, #3D2B1F 100%);
    color: #F5E6D3;
    overflow-x: hidden;
}

/* Hero Section mit Parallax Effect */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(58, 44, 35, 0.8) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-tagline {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: #2D1F1A;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.hero-description {
    font-size: 1.3rem;
    color: #F5E6D3;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #F5E6D3;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Story Section */
.story-section {
    padding: 8rem 0;
    background: transparent;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.chef-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    border-radius: 50%;
    opacity: 0.8;
    z-index: -1;
}

.story-header {
    margin-bottom: 2rem;
}

.story-subtitle {
    display: block;
    color: #D4AF37;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

.story-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #F5E6D3;
    font-weight: 700;
    line-height: 1.2;
}

.story-description p {
    font-size: 1.1rem;
    color: #E4CFA3;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.credentials {
    margin-top: 2rem;
}

.credential {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    border-left: 4px solid #D4AF37;
}

.credential-icon {
    font-size: 1.5rem;
}

.credential-text {
    color: #F5E6D3;
    font-weight: 500;
}

/* Values Section */
.values-section {
    padding: 8rem 0;
    background: rgba(45, 31, 26, 0.5);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #F5E6D3;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-description {
    font-size: 1.1rem;
    color: #E4CFA3;
    opacity: 0.9;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: rgba(245, 230, 211, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: #D4AF37;
}

.value-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.value-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.value-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #F5E6D3;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-description {
    color: #E4CFA3;
    line-height: 1.6;
    opacity: 0.9;
}

/* Timeline Section */
.timeline-section {
    padding: 8rem 0;
    background: transparent;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #D4AF37, rgba(212, 175, 55, 0.3));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 80px;
}

.timeline-marker {
    position: absolute;
    left: 20px;
    top: 10px;
    width: 20px;
    height: 20px;
    background: #D4AF37;
    border-radius: 50%;
    border: 4px solid #2D1F1A;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

.timeline-year {
    display: inline-block;
    background: #D4AF37;
    color: #2D1F1A;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #F5E6D3;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-description {
    color: #E4CFA3;
    line-height: 1.6;
    opacity: 0.9;
}

/* Quote Section */
.quote-section {
    padding: 8rem 0;
    background: rgba(45, 31, 26, 0.8);
    text-align: center;
}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
}

.main-quote {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-style: italic;
    color: #F5E6D3;
    line-height: 1.6;
    margin-bottom: 3rem;
    position: relative;
}

.main-quote::before,
.main-quote::after {
    content: '"';
    font-size: 4rem;
    color: #D4AF37;
    opacity: 0.5;
}

.quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #D4AF37;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-name {
    display: block;
    color: #F5E6D3;
    font-weight: 600;
    font-size: 1.1rem;
}

.author-title {
    display: block;
    color: #E4CFA3;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-marker {
        left: 5px;
    }
    
    .main-quote {
        font-size: 1.5rem;
    }
    
    .quote-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-info {
        text-align: center;
    }
}