/* Allgemeine Seite - goldenes Buch Look */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(rgba(255,248,220,0.6), rgba(255,248,220,0.6)),
                url('goldenes_buch_bg.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #333;
    max-width: 700px;
    margin: 20px auto;
    padding: 20px;
    line-height: 1.6;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Überschriften */
h1, h2 {
    text-align: center;
    color: #8B6D3B; /* goldenes Braun für Überschriften */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Formular */
form {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 25px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

/* Name-Feld und Textarea einheitlich */
input[type="text"]#name, textarea {
    width: 100%;
    padding: 12px 15px;
    margin-top: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
    background: #fff8e1; /* sanftes Creme für Felder */
}

/* Fokus-Effekt */
input[type="text"]:focus, textarea:focus {
    border-color: #d4a017; /* goldener Akzent */
    box-shadow: 0 0 6px rgba(212,160,23,0.4);
    outline: none;
}

/* Button */
button {
    width: 100%;
    padding: 12px;
    background: #d4a017; /* goldfarben */
    color: #fff;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #b88912; /* dunkleres Gold beim Hover */
}

/* Gästebucheinträge */
.entry {
    background: linear-gradient(145deg, #fff8e1, #fff1c4); /* sanftes Golden-Creme */
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    word-wrap: break-word;
    transition: transform 0.2s, box-shadow 0.2s;
}

.entry:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.entry strong {
    color: #8B6D3B;
    display: inline-block;
}

/* TinyMCE */
textarea {
    display: none; /* bleibt so, da TinyMCE das ersetzt */
}

/* Responsive */
@media (max-width: 500px) {
    body {
        padding: 15px;
    }

    form, .entry {
        padding: 12px 15px;
    }
}
