/* --- Variablen für einheitliches Design --- */
:root {
    --bg-dark: #121212;
    --bg-darker: #0a0a0a;
    --gold: #C5A059;
    --gold-hover: #e0b86b;
    --text-light: #f4f4f4;
    --box-border: #332a18;
}

/* --- Basis Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

/* --- Premium Aufzählung --- */
.premium-liste {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}
  
.premium-liste li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
    font-weight: 400;
    color: #e0e0e0;
}

.premium-liste li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 18px;
    line-height: 1;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    text-align: center;
}

h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    text-align: left;
}

/* --- Navigation --- */
.navbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    background-color: #141414;
    border-bottom: 1px solid var(--box-border);
    position: relative;
    height: 90px;
}

.logo {
    margin-top: 5px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    height: 80px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--gold);
    margin: 5px 0;
}

/* --- Formular Statusmeldungen --- */
.alert-success,
.alert-error {
    max-width: 600px;
    margin: 0 auto 20px auto;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.alert-success {
    background-color: rgba(76, 175, 80, 0.05);
    border: 1px solid #4CAF50;
    color: #81c784;
}

.alert-error {
    background-color: rgba(244, 67, 54, 0.05);
    border: 1px solid #F44336;
    color: #e57373;
}

/* --- Hero Banner --- */
.hero {
    background: url('images/banner.webp') 52.5% 20% / cover no-repeat;
    height: 75vh;
    display: flex;
    align-items: flex-end; 
    justify-content: center;
    text-align: center;
    padding: 0; 
}

.hero h1 {
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero h1 span {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero p {
    margin-bottom: 30px;
    font-size: 1.0rem;
    color: #e0e0e0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    padding-bottom: 20px; 
}

/* --- Buttons --- */
.btn-gold {
    display: inline-block;
    background: linear-gradient(135deg, #a68446, #d4b572);
    color: #121212;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #d4b572, #e0b86b);
    transform: translateY(-2px);
}

.btn-gold-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 15px;
    width: 100%;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-gold-outline:hover {
    background: var(--gold);
    color: #121212;
}

/* --- Sektionen Allgemein --- */
section {
    padding: 60px 20px;
}

section h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* --- Leistungen (Grid) --- */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-box {
    border: 1px solid var(--gold);
    padding: 30px 20px;
    text-align: left;
    background-color: var(--bg-dark);
    border-radius: 4px;
}

.service-box .icon {
    height: 80px;
    margin-bottom: 15px;
}

.service-box h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.service-box p {
    font-size: 0.9rem;
    color: #ccc;
}

.service-box .service-subtitle {
    margin-bottom: 30px;
    font-style: italic;
    color: #a0a0a0;
}

.service-box .service-overview-title {
    margin-top: 25px;
    margin-bottom: 15px;
}

/* --- NEU: Mehr / Weniger Text ausklappen --- */
.read-more-state {
    display: none; /* Versteckt die Checkbox */
}

.read-more-wrap {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
    margin-top: 0;
}

/* Wenn Checkbox aktiv -> fahre Box auf */
.read-more-state:checked ~ .read-more-wrap {
    max-height: 800px; /* Ausreichend Platz für Text & Liste */
    opacity: 1;
    margin-top: 15px;
}

.read-more-trigger {
    text-align: right;
    margin-top: 15px;
}

.read-more-label {
    display: inline-block;
    color: var(--gold);
    cursor: pointer;
    font-weight: bold;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.read-more-label:hover {
    color: var(--gold-hover);
}

/* Standard-Text im Button */
.read-more-label::after {
    content: "Mehr lesen...";
}

/* Text ändert sich, wenn Box ausgeklappt ist */
.read-more-state:checked ~ .read-more-trigger .read-more-label::after {
    content: "Weniger...";
}
/* --- Ende Mehr/Weniger --- */


/* --- Vorher / Nachher --- */
.galerie-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.image-box {
    border: 1px solid var(--gold);
    position: relative;
    border-radius: 4px;
    padding: 6px;
}

.image-box img {
    width: 100%;
    display: block;
    border-radius: 3px;
}

.caption {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(18, 18, 18, 0.85);
    border: 1px solid var(--gold);
    padding: 5px 15px;
    font-size: 0.8rem;
    color: var(--gold);
    white-space: nowrap;
}

/* --- Kontaktformular --- */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    color: var(--gold);
    font-family: inherit;
    border-radius: 4px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #777;
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--bg-darker);
    border-top: 1px solid var(--box-border);
    font-size: 0.85rem;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.social-icons {
    margin: 20px 0;
    font-size: 1.5rem;
}

.social-icons span {
    margin: 0 10px;
    cursor: pointer;
}

.copyright {
    color: #666;
    margin-top: 20px;
}

/* --- Media Queries für Desktop --- */
@media (min-width: 768px) {
    .hero {
        background: url('images/banner.webp') 51% 20% / cover no-repeat;
        height: 80vh;
    }
    .hero h1 {
        font-size: 1.6rem;
    }
    .hero p {
        font-size: 0.9rem;
    }
    .galerie-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .image-box {
        width: calc(50% - 10px);
    }
}