/* CSS-Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* Basis-Styling: Tiefes Schwarz */
body {
    font-family: 'Georgia', serif;
    background-color: #050505; /* Echtes Tiefschwarz */
    color: #ffffff;
    line-height: 1.4;
    display: flex;
    justify-content: center;
    padding: 10px;
}

.main-container {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    text-align: center;
    padding: 15px 0;
}

.logo {
    max-width: 50px;
    height: auto;
}

/* Die Karte: Sehr dunkles Anthrazit mit subtilem Gold-Rand */
.signup-card {
    background: linear-gradient(145deg, #121212, #0a0a0a);
    border: 1px solid rgba(212, 175, 55, 0.3); /* Halbdurchsichtiges Gold */
    border-radius: 12px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(212, 175, 55, 0.1); /* Tiefer Schatten + leichter Gold-Glow */
    display: flex;
    flex-direction: column;
}

.card-header {
    padding: 20px 20px 15px 20px;
    text-align: center;
}

/* Überschrift mit Gold-Textverlauf */
h1 {
    font-size: 26px;
    font-weight: normal;
    margin-bottom: 8px;
    /* Der Goldverlauf für den Text */
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subheadline {
    font-size: 14px;
    color: #e0e0e0;
    margin-bottom: 5px;
}

/* Foto-Bereich */
.photo-area {
    width: 100%;
    height: 170px; 
    /* PLATZHALTER: Link zu deinem Bild */
    background-image: url('https://sternenlieder.de/sternenpost/sternenpilger.webp'); 
    background-size: cover;
    background-position: center 40%;
    position: relative;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

/* Formular-Bereich: Nahtloser Übergang zum dunklen Design */
.form-container {
    width: 100%;
    background-color: #0a0a0a;
    padding: 20px;
}

.form-container input {
    box-sizing: border-box; /* Zwingt das Feld, innerhalb des Containers zu bleiben */
    width: 100%;
    padding: 14px;
    margin-bottom: 12px;
    border: 1px solid #333;
    border-radius: 6px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
}

.form-container input::placeholder {
    color: #888888;
}

.form-container input:focus {
    outline: none;
    border-color: #d4af37; /* Goldener Rand bei Klick */
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

/* Der Button: Metallischer Goldverlauf */
.form-container button {
    box-sizing: border-box; /* Zwingt den Button, innerhalb des Containers zu bleiben */
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
    color: #000000;
    border: 1px solid #ffdf73;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.form-container button:hover {
    background: linear-gradient(135deg, #f8e5a0 0%, #d4af37 100%); /* Heller beim Hover */
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-1px); /* Leichter Hebe-Effekt */
}

/* Footer */
footer {
    padding: 25px 10px;
    text-align: center;
    font-size: 14px;
    color: #888888;
}

.value-point {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-point::before {
    content: '✨';
    margin-right: 8px;
    filter: sepia(1) saturate(3) hue-rotate(5deg); /* Passt das Emoji farblich etwas in Richtung Gold an */
}