/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Common container style */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

/* Header styles */
header {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 100;
}

.language-selector {
    display: none;
}

/* Show language selector only on index pages */
.index-page .language-selector {
    display: flex;
    gap: 0.3rem;
    background-color: #f8f8f8;
    padding: 0.3rem;
    border-radius: 6px;
    border: 1px solid #eee;
    position: relative;
    z-index: 100;
}

.language-selector a {
    color: #666666;
    text-decoration: none;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.language-selector a:hover {
    background-color: #eee;
}

.language-selector a.active {
    background-color: #333;
    color: #fff;
}

h1 {
    font-size: 2.2rem;
    font-weight: 300;
    color: #666666;
    white-space: nowrap;
    flex: 1;
    margin-right: 2rem;
}

.logo {
    width: 150px;
    height: auto;
    object-fit: contain;
    aspect-ratio: 2/1;
}

/* Content styles */
main {
    padding: 2rem 0;
}

/* Hero image */
.hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

/* Section title */
.section-title {
    font-size: 1.8rem;
    font-weight: 300;
    color: #666666;
    margin-bottom: 2rem;
}

/* Introduction section */
.introduction {
    background-color: #fff;
}

.introduction p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #444;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background-color: #333;
    color: #fff;
}

.footer-content {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1rem;
}

.footer-content p {
    margin-bottom: 0;
}

.footer-logo {
    width: 100px;
    height: auto;
    filter: brightness(0) invert(1);
    display: block;
    margin-bottom: +4px;
}

/* Navigation styles */
nav {
    background-color: #f8f8f8;
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-container a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-container a:hover {
    background-color: #eee;
}

.nav-container a.active {
    background-color: #333;
    color: #fff;
}

/* Contact info styles */
.contact-info p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.contact-info strong {
    display: inline-block;
    min-width: 140px;
    color: #666666;
}

.contact-info a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #666666;
}

/* Protected information styles */
.protected-info {
    position: relative;
    cursor: pointer;
}

.protected-info .hidden-link {
    color: #999;
}

.protected-info:hover .hidden-link {
    display: none;
}

.protected-info:hover::after {
    content: attr(data-info);
    color: #333;
    text-decoration: none;
}

.protected-info:hover a {
    color: #333;
}

/* Gallery styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-item .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem;
    font-size: 0.9rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .caption {
    transform: translateY(0);
}

.content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.wildfleisch-image {
    max-width: 400px;
    margin: 0;
    display: block;
}

.wildfleisch-container {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.wildfleisch-text {
    flex: 1;
}

.wildfleisch-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #444;
    text-align: justify;
}

.wildfleisch-text p:last-child {
    margin-bottom: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .header-right {
        width: 100%;
        justify-content: center;
    }

    h1 {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .logo {
        width: 120px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .introduction p {
        font-size: 1rem;
    }

    .nav-container {
        gap: 0.5rem;
    }

    .nav-container a {
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }

    .gallery-item img {
        height: 200px;
    }

    .wildfleisch-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .wildfleisch-image {
        margin: 0 auto;
    }
}

.hero-section {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.hero-section .hero-image {
    width: 50%;
    height: auto;
    object-fit: cover;
}

.hero-section .hero-content {
    width: 50%;
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
    }
    
    .hero-section .hero-image,
    .hero-section .hero-content {
        width: 100%;
    }
} 