.image-container {
    position: relative;
    z-index: 1;
    text-align: center;
    border-radius: 0;
    overflow: hidden;
    height: 50vh;
    background-image: url("../assets/Sunsetvalley_bahnhof.png");
    background-attachment: fixed;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 500px;
}


.centered-image {
    width: 10%;
    height: auto;
    height: 50vh;
    object-fit: cover;
    filter: brightness(0.9);
    user-select: none;


}




.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);

}

.hero-text h1 {
    color: var(--background);
    font-size: 3rem;
    margin: 0;
}



/* Menu Cards Styles */
.menu-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-card {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

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

.menu-card a {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.card-content {
    height: 100%;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    position: relative;
    z-index: 1;
}

.menu-card:nth-child(1) {
    background: var(--primary);
}

.menu-card:nth-child(2) {
    background: var(--secondary);
}

.menu-card:nth-child(3) {
    background: var(--accent);
}

.menu-card:nth-child(4) {
    background: var(--linearPrimarySecondary);
}

.menu-card h3 {
    color: var(--background);
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    width: 100%;
}

.menu-card h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background-color: var(--background);
    border-radius: 2px;
}

.menu-card p {
    color: var(--background);
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.9;
    max-width: 90%;
}

.menu-card::before {
    content: '';
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f5f9fa' opacity='0.6'%3E%3Cpath d='M5 3l3.5 3L5 9V3zm14 0v6l-3.5-3L19 3zM5 21l3.5-3L5 15v6zm14 0v-6l-3.5 3 3.5 3z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .menu-cards-container {
        padding: 30px 15px;
    }

    .menu-card {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
        height: 180px;
    }

    .menu-card h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .menu-cards-container {
        padding: 20px 10px;
        gap: 15px;
    }

    .menu-card {
        flex: 0 0 calc(50% - 7.5px);
        max-width: calc(50% - 7.5px);
        height: 150px;
    }

    .menu-card h3 {
        font-size: 1.2rem;
    }

    .menu-card p {
        font-size: 0.9rem;
    }
}

/* Filler Content Sections */
.section-header {
    text-align: center;
    margin: 60px 0 40px;
}

.section-header h2 {
    color: var(--text);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--linearPrimaryAccent);
    margin: 0 auto;
    border-radius: 2px;
}

/* Highlights Section */
.highlights-section {
    padding: 20px;
    margin-bottom: 60px;
}

.highlights-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.highlight-card {
    flex: 1 1 300px;
    max-width: 350px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding-bottom: 20px;
    transition: transform 0.3s ease;
}

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

.highlight-image {
    height: 180px;
    overflow: hidden;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.highlight-card:hover .highlight-image img {
    transform: scale(1.1);
}

.highlight-card h4 {
    margin: 20px 20px 15px;
    color: var(--text);
}

.highlight-content {
    padding: 0 20px;
    margin: 0 0 20px;
    color: #333;
    line-height: 1.5;
    font-size: 0.95rem;
}

.highlight-link {
    display: inline-block;
    margin: 0 20px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.highlight-link:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.highlight-link:hover {
    color: var(--accent);
}

.highlight-link:hover:after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Removing unused placeholder styles */
.placeholder-text,
.text-line,
.placeholder-image {
    display: none;
}

/* Stats Section */
.stats-section {
    background-color: #f8f8f8;
    padding: 40px 20px 60px;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stats-disclaimer {
    text-align: center;
    max-width: 800px;
    margin: 30px auto 0;
}

.stats-disclaimer p {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.stat-item {
    flex: 1 1 200px;
    max-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(var(--primary) 0% 70%, #e9e9e9 70% 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.stat-inner-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text);
}

.stat-item h3 {
    color: var(--text);
    margin: 0 0 5px 0;
    font-size: 1.4rem;
}

.stat-item p {
    color: #666;
    margin: 0;
    font-size: 1rem;
}

/* Info Section */
.info-section {
    padding: 60px 20px;
}

.info-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-text {
    flex: 1 1 400px;
}

.info-text h2 {
    color: var(--text);
    margin-bottom: 25px;
}

.info-graphic {
    flex: 1 1 400px;
    min-height: 200px;
    max-width: 100%;
    margin: 0 auto;
}

.station-image {
    width: 100%;
    height: 100%;
    min-height: 200px;
    max-height: 400px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.station-image:hover img {
    transform: scale(1.05);
}

.station-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../images/station.jpg') center/cover no-repeat;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.station-image:hover::before {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .stat-circle {
        width: 100px;
        height: 100px;
    }

    .stat-inner-circle {
        width: 75px;
        height: 75px;
    }

    .stat-number {
        font-size: 1rem;
    }

    .info-graphic {
        min-height: 180px;
    }
    
    .station-image {
        min-height: 180px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }

    .highlight-card {
        max-width: 100%;
    }

    .info-text h2 {
        text-align: center;
    }

    .info-graphic {
        min-height: 150px;
    }
    
    .station-image {
        min-height: 150px;
    }
}