/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #121212;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/Kirche_Licht.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.75); /* Slightly darker overlay for better contrast */
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header styles */
header {
    padding: 20px 0;
}

.logo {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.logo img {
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

/* Main content */
main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px 0;
}

.coming-soon-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    padding: 0 20px;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2c3e50);
    margin: 0 auto 40px;
    border-radius: 2px;
}

h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: #3498db;
    margin-bottom: 50px;
    text-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
}

/* Services preview */
.services-preview {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.service-item {
    padding: 15px;
    background: rgba(53, 73, 94, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    flex: 1;
    max-width: 260px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.service-item:hover {
    transform: translateY(-5px);
    background: rgba(53, 73, 94, 0.8);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.service-item h3 {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
    margin: 0;
    word-wrap: break-word;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 20px;
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.contact h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
}

.contact p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.7;
    word-wrap: break-word;
}

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

.contact a:hover {
    color: #2980b9;
}

.legal {
    padding-top: 20px;
    margin-top: 10px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    word-wrap: break-word;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .coming-soon-content {
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .countdown {
        font-size: 1.4rem;
    }
    
    .services-preview {
        flex-direction: column;
        align-items: center;
    }
    
    .service-item {
        max-width: 100%;
        width: 80%;
        margin-bottom: 15px;
    }
    
    .contact p {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .coming-soon-content {
        padding: 25px 15px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .logo img {
        max-width: 180px;
    }
    
    .contact p {
        font-size: 0.8rem;
    }
    
    .legal p {
        font-size: 0.75rem;
        padding: 0 10px;
    }
} 