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

:root {
    --primary-color: #2C2C2C;
    --accent-color: #B8322F;
    --bg-light: #F8F8F8;
    --bg-dark: #1A1A1A;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Source Serif Pro', serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

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

/* Hero Section - Perfekt wie es ist */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: -1;
}

.hero-nav {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 2rem 0;
    z-index: 10;
}

.nav-items {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.hero-nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.hero-nav-link:hover {
    color: rgba(255, 255, 255, 1);
}

.hero-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: width 0.3s ease;
}

.hero-nav-link:hover::after {
    width: 100%;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    z-index: 1;
}

.hero-main {
    animation: fadeInUp 1.5s ease-out;
}

.hero-logo {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 8px;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-logo span {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 12px;
    display: block;
}

.hero-divider {
    width: 100px;
    height: 2px;
    background: var(--white);
    margin: 2rem auto;
    opacity: 0.8;
}

.hero-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.hero-year {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    letter-spacing: 3px;
    opacity: 0.7;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    opacity: 0.7;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Section Intro - Gemeinsamer Stil */
.section-intro {
    margin-bottom: 4rem;
}

.section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--accent-color);
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--accent-color);
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--white);
}

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

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

.about-text {
    padding-right: 2rem;
}

.lead {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-visual {
    position: relative;
}

.about-image {
    width: 100%;
    filter: grayscale(20%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 3rem 2rem 2rem;
    color: var(--white);
}

.caption-title {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.caption-subtitle {
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.4;
}

/* Collection Section */
.collection {
    padding: 120px 0;
    background: var(--bg-dark);
    color: var(--white);
}

.section-intro.dark .section-label {
    color: var(--white);
    opacity: 0.7;
}

.section-intro.dark .section-title {
    color: var(--white);
}

.section-intro.dark .title-underline {
    background: var(--white);
}

.collection-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 5rem;
}

.highlight-item {
    text-align: center;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.highlight-item.featured {
    border-color: var(--accent-color);
    background: rgba(184, 50, 47, 0.1);
}

.highlight-number {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
}

.highlight-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.highlight-item p {
    opacity: 0.7;
    line-height: 1.6;
}

.collection-quote {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.collection-quote blockquote {
    font-size: 1.8rem;
    font-style: italic;
    opacity: 0.8;
}

/* History Section */
.history {
    position: relative;
    padding: 0;
    background: var(--bg-light);
}

.history-visual {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.history-image-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    height: 100%;
}

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

.history-img.main {
    filter: sepia(30%);
}

.history-img.secondary {
    filter: sepia(50%);
}

.history-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, var(--bg-light), transparent);
}

.history-content {
    padding: 80px 0 120px;
    margin-top: -100px;
    position: relative;
    z-index: 2;
}

.section-intro.light .section-label {
    color: var(--accent-color);
}

.timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    text-align: center;
    flex: 1;
    padding: 2rem;
}

.timeline-year {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
}

.timeline-item.featured .timeline-year {
    color: var(--accent-color);
}

.timeline-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    color: var(--text-light);
}

.timeline-connector {
    width: 100px;
    height: 2px;
    background: var(--accent-color);
    opacity: 0.3;
}

/* Visit Section */
.visit {
    padding: 120px 0;
    background: var(--white);
}

.visit-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.info-main {
    background: var(--bg-light);
    padding: 3rem;
}

.opening-hours h3 {
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.hours-display {
    text-align: center;
    margin-bottom: 2rem;
}

.day {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.time {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.special-note {
    text-align: center;
    font-style: italic;
    color: var(--text-light);
}

.info-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.location h3,
.combinations h3 {
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

address {
    font-style: normal;
    line-height: 1.8;
    color: var(--text-light);
}

.location-detail {
    font-size: 0.9rem;
    font-style: italic;
}

.combinations ul {
    list-style: none;
}

.combinations li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.combinations li:last-child {
    border-bottom: none;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--primary-color);
    color: var(--white);
}

.contact-wrapper {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-info {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-top: 2rem;
}

.contact-info strong {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-color);
}

/* Footer */
.footer {
    background: #111;
    color: var(--white);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p,
.footer-info p {
    opacity: 0.6;
    font-size: 0.9rem;
}

.footer-info {
    text-align: right;
}

/* Impressum */
.impressum {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.impressum h4 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 2px;
}

.impressum-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.impressum-item {
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.6;
}

.impressum-item strong {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.impressum-item a {
    color: var(--white);
    opacity: 0.8;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.impressum-item a:hover {
    opacity: 1;
}

/* Responsive Design - Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .about-content {
        gap: 3rem;
    }
    
    .collection-highlights {
        gap: 2rem;
    }
    
    .history-image-grid {
        grid-template-columns: 1fr;
    }
    
    .history-img.secondary {
        display: none;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    /* General */
    .container {
        padding: 0 20px;
    }
    
    /* Hero Section Mobile */
    .hero {
        height: 100vh;
        min-height: 600px;
    }
    
    .hero-nav {
        padding: 1rem 0;
    }
    
    .nav-items {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 20px;
    }
    
    .hero-nav-link {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    
    .hero-logo {
        font-size: 2.2rem;
        letter-spacing: 4px;
    }
    
    .hero-logo span {
        font-size: 2.8rem;
        letter-spacing: 6px;
    }
    
    .hero-tagline {
        font-size: 1rem;
        letter-spacing: 3px;
    }
    
    .hero-year {
        font-size: 0.9rem;
    }
    
    .scroll-indicator {
        bottom: 2rem;
    }
    
    /* Section Titles Mobile */
    .section-intro {
        margin-bottom: 3rem;
    }
    
    .section-label {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .title-underline {
        width: 60px;
        height: 3px;
    }
    
    /* About Section Mobile */
    .about {
        padding: 80px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .lead {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .about-text p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .about-visual {
        margin-top: 2rem;
    }
    
    .caption-title {
        font-size: 1rem;
    }
    
    .caption-subtitle {
        font-size: 0.8rem;
    }
    
    /* Collection Section Mobile */
    .collection {
        padding: 80px 0;
    }
    
    .collection-highlights {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .highlight-item {
        padding: 2rem 1.5rem;
    }
    
    .highlight-number {
        font-size: 3rem;
    }
    
    .highlight-item h3 {
        font-size: 1.1rem;
    }
    
    .highlight-item p {
        font-size: 0.9rem;
    }
    
    .collection-quote {
        margin-top: 3rem;
        padding: 0 20px;
    }
    
    .collection-quote blockquote {
        font-size: 1.3rem;
    }
    
    /* History Section Mobile */
    .history-visual {
        height: 40vh;
        min-height: 300px;
    }
    
    .history-content {
        padding: 60px 0 80px;
        margin-top: -60px;
    }
    
    .timeline {
        flex-direction: column;
        gap: 0;
    }
    
    .timeline-item {
        padding: 1.5rem;
    }
    
    .timeline-year {
        font-size: 2.5rem;
    }
    
    .timeline-item h4 {
        font-size: 1.1rem;
    }
    
    .timeline-item p {
        font-size: 0.9rem;
    }
    
    .timeline-connector {
        width: 2px;
        height: 40px;
        margin: 0 auto;
    }
    
    /* Visit Section Mobile */
    .visit {
        padding: 80px 0;
    }
    
    .visit-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .info-main {
        padding: 2rem;
    }
    
    .hours-display {
        margin-bottom: 1.5rem;
    }
    
    .day {
        font-size: 1rem;
    }
    
    .time {
        font-size: 2rem;
    }
    
    .info-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location h3,
    .combinations h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    /* Contact Section Mobile */
    .contact {
        padding: 80px 0;
    }
    
    .contact-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .contact-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .contact-info {
        font-size: 1.1rem;
    }
    
    .action-link {
        padding: 1rem 2rem;
        font-size: 0.9rem;
        text-align: center;
        justify-content: center;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 2rem 0;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-brand h3 {
        font-size: 1.3rem;
    }
    
    .footer-brand p,
    .footer-info p {
        font-size: 0.85rem;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .impressum {
        margin-top: 2rem;
        padding-top: 2rem;
    }
    
    .impressum h4 {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .impressum-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .impressum-item {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        font-size: 0.85rem;
    }
    
    .impressum-item:last-child {
        border-bottom: none;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .hero-logo {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }
    
    .hero-logo span {
        font-size: 2.2rem;
        letter-spacing: 4px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .highlight-number {
        font-size: 2.5rem;
    }
    
    .timeline-year {
        font-size: 2rem;
    }
    
    .contact-title {
        font-size: 1.8rem;
    }
}