/* CSS für felisharight.de - Komplettpaket */

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #1a1a1a; 
    color: #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    text-align: center;
    padding: 40px 20px;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: border-box;
}

.container {
    background: #111a15; 
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.08);
    border-top: 3px solid #d4af37; 
    max-width: 700px;
    width: 100%;
}

.text-left {
    text-align: left;
}

h1 {
    font-size: 2.2rem;
    color: #d4af37; 
    margin-bottom: 25px;
    letter-spacing: 2px;
    font-weight: 300;
    text-transform: uppercase;
}

h2 {
    font-size: 1.3rem;
    color: #d4af37;
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: 400;
    border-bottom: 1px solid #22332a;
    padding-bottom: 5px;
}

p {
    font-size: 1.05rem;
    color: #b3b3b3;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 300;
}

/* Hinweis-Box für die andere Seite */
.info-box {
    background-color: #16241d;
    border-left: 3px solid #d4af37;
    padding: 20px;
    margin: 30px 0;
    border-radius: 4px;
}
.info-box p {
    font-size: 0.95rem;
    margin: 0;
}

.contact-info {
    font-size: 1rem;
    padding-top: 25px;
    border-top: 1px solid #22332a;
    margin-top: 30px;
}

a {
    color: #8c3b53; 
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

a:hover {
    color: #d4af37; 
}

.highlight-link {
    color: #d4af37;
    font-weight: bold;
    text-decoration: underline;
}

/* Footer für die Rechtstexte */
.mini-footer {
    margin-top: 40px;
    font-size: 0.85rem;
    color: #666;
}
.mini-footer a {
    color: #666;
    margin: 0 8px;
}
.mini-footer a:hover {
    color: #d4af37;
}