/* Reset und Basis-Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #f8f9fa;
    letter-spacing: 0.3px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.header-image {
    width: 100%;
    height: auto;
    display: block;
}

header h1 {
    font-size: 3.8em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.tagline {
    font-size: 1.4em;
    font-weight: 300;
    opacity: 0.95;
    letter-spacing: 2px;
    font-family: 'Segoe UI', sans-serif;
}

/* Einleitung */
.intro {
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    padding: 70px 0;
    text-align: center;
}

.intro h2 {
    font-size: 2.8em;
    color: #d35400;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(211, 84, 0, 0.1);
    font-weight: 300;
    letter-spacing: 2px;
}

.intro p {
    font-size: 1.15em;
    max-width: 800px;
    margin: 0 auto 20px;
    color: #555;
    line-height: 1.9;
    font-family: 'Segoe UI', sans-serif;
}

/* Info-Bereiche */
.info-section {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    padding: 60px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-item {
    background: white;
    padding: 35px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.info-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #d35400;
}

.info-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.info-item h3 {
    font-size: 1.4em;
    color: #d35400;
    margin-bottom: 12px;
    font-weight: 400;
    letter-spacing: 1px;
}

.info-item p {
    color: #666;
    line-height: 1.7;
    font-family: 'Segoe UI', sans-serif;
}

/* Kinoprogramm */
.programm {
    padding: 70px 0;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.programm-header {
    text-align: center;
    margin-bottom: 50px;
}

.programm-header .section-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
}

.programm h2 {
    font-size: 2.8em;
    color: #d35400;
    text-shadow: 1px 1px 2px rgba(211, 84, 0, 0.1);
    font-weight: 300;
    letter-spacing: 2px;
}

.filme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.film-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.film-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: #d35400;
}

.film-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.film-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.film-card:hover .film-image img {
    transform: scale(1.05);
}

.film-info {
    padding: 25px;
}

.film-info h3 {
    font-size: 1.6em;
    color: #2c3e50;
    margin-bottom: 18px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.film-info .datum,
.film-info .uhrzeit {
    font-size: 1em;
    color: #d35400;
    margin-bottom: 10px;
    font-weight: 500;
    font-family: 'Segoe UI', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9em;
}

.film-info .beschreibung {
    color: #666;
    margin-top: 15px;
    line-height: 1.6;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
    padding: 50px 0 25px;
    border-top: 3px solid #d35400;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 1.2em;
    margin-bottom: 18px;
    color: #d35400;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-section p {
    margin-bottom: 10px;
    color: #ecf0f1;
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.95em;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5em;
    }

    .intro h2,
    .programm h2 {
        font-size: 2em;
    }

    .filme-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
