
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

body { 
    font-family: Arial, sans-serif; 
    margin: 0; 
    padding: 0; 
    background: radial-gradient(circle at 50% 20%, #1a1a1a 0%, #050505 60%, #000000 100%);
    background-attachment: fixed; 
    color: #e0e0e0; 
}

header { 
    position: sticky; 
    top: 0; 
    background: transparent; 
    z-index: 1000; 
}

/* Die Linie unter der Navigation hauchdünn und elegant */
nav {
    max-width: 1000px; 
    margin: 0 auto; 
    padding: 15px 0; 
    border-bottom: 1px solid rgba(197, 160, 89, 0.3); 
    text-align: center;
}

/* Hamburger Menü Button */
.menu-toggle {
    display: none;
    color: #C5A059;
    font-size: 24px;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-weight: normal; 
    padding: 5px 15px;
}

.nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-links a { 
    font-family: Arial, sans-serif; 
    color: #F5F0E6; 
    text-decoration: none; 
    margin: 0 15px; 
    font-weight: bold; 
    font-size: 16px; 
    transition: color 0.3s;
}
.nav-links a:hover { 
    color: #C5A059; 
}

/* Media Query für Handys und Tablets */
@media (max-width: 850px) {
    nav {
        padding: 10px 20px;
        text-align: left;
    }
    .menu-toggle {
        display: block; 
    }
    .nav-links {
        display: none; 
        flex-direction: column;
        width: 100%;
        padding-top: 15px;
    }
    .nav-links.show {
        display: flex; 
    }
    .nav-links a {
        margin: 10px 0;
        padding: 10px 0;
        border-bottom: 1px solid rgba(197, 160, 89, 0.1);
        display: block;
    }
}

/* Der große Begrüßungs-Banner */
.hero { 
    background: transparent; 
    color: #fff; 
    text-align: center; 
    padding: 0 20px 80px; 
}
.hero-content {
    max-width: 1000px; 
    margin: 0 auto; 
}
.hero-content img {
    width: 100%; 
    height: auto; 
    margin-bottom: 35px; /* Der neue 0,5cm Abstand bleibt! */
    display: block;
    /* WIEDER ZURÜCK: Der originale, perfekte weiche Übergang! */
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 45%, rgba(0,0,0,0) 75%);
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 45%, rgba(0,0,0,0) 75%);
}

/* Schriftarten für die Begrüßung */
.script-font {
    font-family: 'Great Vibes', cursive;
}
.welcome-title {
    margin-top: 40px; 
    font-size: 60px; 
    margin-bottom: 10px;
    font-weight: normal;
    color: #C5A059; 
    text-shadow: 2px 2px 0px #7a5f22, 4px 4px 5px rgba(0,0,0,0.9);
}
.welcome-subtitle {
    font-size: 38px; 
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.6;
    color: #e0e0e0; 
    text-shadow: 1px 1px 0px #666, 3px 3px 4px rgba(0,0,0,0.8);
}
.welcome-slogan {
    display: block;
    margin-top: 25px;
    font-size: 44px;
    color: #C5A059; 
    text-shadow: 2px 2px 0px #7a5f22, 4px 4px 5px rgba(0,0,0,0.9);
}
.welcome-signature {
    display: block;
    text-align: right;
    margin-top: 15px;
    margin-right: 15%;
    font-size: 44px;
    color: #C5A059;
    text-shadow: 1px 1px 0px #7a5f22, 2px 2px 3px rgba(0,0,0,0.8);
}

/* Kacheln-Raster */
.container { 
    max-width: 1000px; 
    margin: 20px auto 50px; 
    padding: 0 20px; 
}
.grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
}

@media (max-width: 850px) {
    .grid {
        grid-template-columns: 1fr;
    }
}

.card { 
    background: #121212; 
    border-radius: 8px; 
    overflow: hidden; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.8); 
    text-align: center; 
    padding-bottom: 25px; 
    transition: transform 0.3s;
    border: 1px solid #222; 
}
.card:hover {
    transform: translateY(-5px);
    border-color: #C5A059; 
}
.card-img { 
    background: #0a0a0a; 
    height: 180px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #C5A059; 
    font-size: 14px;
    border-bottom: 1px solid #222;
}
.card h3 { 
    margin: 20px 0 10px; 
    color: #ffffff;
}
.card p { 
    padding: 0 15px; 
    color: #aaaaaa; 
    font-size: 15px;
    line-height: 1.5;
}

/* Buttons */
.btn { 
    display: inline-block; 
    padding: 12px 30px; 
    background: #050505; 
    color: #C5A059; 
    border: 1px solid #7a5f22; 
    font-size: 18px; 
    font-weight: bold;
    font-family: Arial, sans-serif;
    text-decoration: none; 
    border-radius: 4px; 
    margin-top: 15px; 
    text-shadow: 1px 1px 0px #4a3a14, 2px 2px 3px rgba(0,0,0,0.8); 
    transition: all 0.3s;
    cursor: pointer;
}
.btn:hover {
    background: #111111; 
    border-color: #C5A059; 
    transform: scale(1.05); 
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.2); 
}

/* Footer */
footer { 
    background: transparent; 
    color: #888888; 
    text-align: center; 
    padding: 30px 20px; 
    margin-top: 60px; 
}
footer a { 
    color: #888888; 
    text-decoration: none; 
    margin: 0 10px; 
    transition: color 0.3s;
}
footer a:hover { 
    color: #C5A059; 
}

/* Pop-up */
.popup { 
    position: fixed; 
    bottom: -200px; 
    right: 20px; 
    background: #1e1e1e; 
    border: 1px solid #333; 
    border-left: 1px solid #C5A059; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.5); 
    padding: 20px; 
    width: 280px; 
    transition: bottom 0.6s cubic-bezier(0.25, 0.8, 0.25, 1); 
    z-index: 2000; 
    border-radius: 8px; 
    color: #eee;
}
.popup.show { bottom: 20px; }
.popup-close { float: right; cursor: pointer; color: #888; font-weight: bold; }
.popup-close:hover { color: #fff; }
.popup h4 { margin-top: 0; margin-bottom: 10px; color: #C5A059; }

/* Text-Seiten */
.text-container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}
.text-box {
    background: rgba(15, 15, 15, 0.9); 
    border-radius: 8px;
    padding: 40px;
    border: 1px solid #222;
    box-shadow: 0 10px 20px rgba(0,0,0,0.8);
}
.text-box h1, .text-box h2, .text-box h3 {
    color: #C5A059; 
    margin-top: 30px;
    border-bottom: 1px solid #222;
    padding-bottom: 10px;
    text-shadow: 1px 1px 0px #7a5f22, 2px 2px 3px rgba(0,0,0,0.8);
}
.text-box h1 { margin-top: 0; font-size: 32px; }
.text-box p, .text-box ul {
    color: #F5F0E6; 
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 15px;
}
.text-box strong { color: #C5A059; }

/* Kontakt-Formular */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}
.contact-form input, .contact-form textarea {
    background: #0a0a0a;
    border: 1px solid #333;
    color: #F5F0E6;
    padding: 15px;
    font-size: 16px;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    transition: border-color 0.3s;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #C5A059;
}
.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}