﻿/* Add here all your CSS customizations */

/* WWiinntteerr SZZiimmmmeerr TTyyppeenn */
.features-box {
    background-color: #f6f8f7;
    border-radius: 8px;
    padding: 20px 25px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .features-list li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 12px;
        font-size: 18px;
        color: #333;
        line-height: 1.4;
    }

        .features-list li::before {
            content: "✔";
            position: absolute;
            left: 0;
            top: 0;
            color: #4a7c59; /* dezentes Grün */
            font-weight: bold;
        }


/* Preis */
.room-price {
    text-align: center;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    padding: 10px;
}

.price-from {
    display: block;
    font-size: 14px;
    color: #666;
}

.price-value {
    display: block;
    font-size: 28px;
    font-weight: bold;
    color: #2f3e46;
    margin: 5px 0;
}

.price-unit {
    font-size: 14px;
    color: #666;
}

/* Button */
.room-action {
    text-align: center;
}

.btn-request {
    display: inline-block;
    padding: 12px 22px;
    background-color: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

    .btn-request:hover {
        background-color: #3d664a;
    }

.price-note {
    margin-top: 12px;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.room-photos-text {
    margin-top: 8px;
    font-size: 18px;
    color: #555;
    line-height: 1.5;
}

    .room-photos-text a.house-link {
        color: #4a7c59;
        font-weight: 500;
        text-decoration: none;
    }

        .room-photos-text a.house-link:hover {
            color: #2f3e46;
            text-decoration: underline;
        }

/* Responsive */
@media (max-width: 768px) {
    .room-offer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .room-price {
        border: none;
        margin: 15px 0;
    }
}

.room_anfrage_container {
    display: flex;
    justify-content: center; /* horizontal zentrieren */
    align-items: center; /* vertikal zentrieren */
    min-height: 100vh; /* volle Höhe des Viewports */
    padding: 20px;
    box-sizing: border-box;
    background-color: #f5f5f5; /* optional: Hintergrundfarbe */
}


.room-request-form {
    background-color: #f6f8f7;
    border-radius: 8px;
    padding: 20px;
    max-width: 500px;
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

    .room-request-form h3 {
        color: #2f3e46;
        margin-bottom: 15px;
    }

    .room-request-form label {
        display: block;
        margin-top: 10px;
        font-weight: 500;
    }

    .room-request-form input,
    .room-request-form select,
    .room-request-form textarea {
        width: 100%;
        padding: 8px 10px;
        margin-top: 5px;
        border: 1px solid #ccc;
        border-radius: 4px;
        box-sizing: border-box;
    }

    .room-btn-submit {
        margin-top: 15px;
        padding: 12px 20px;
        background-color: #4a7c59;
        color: #fff;
        border: none;
        border-radius: 6px;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .room-btn-submit:hover {
        background-color: #3d664a;
    }


    .btn-guestbook {
        display: inline-block;
        padding: 14px 28px;
        background-color: #4a7c59;
        color: #ffffff;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        border-radius: 30px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        transition: all 0.3s ease;
    }

    .btn-guestbook:hover {
        background-color: #3d664a;
        transform: translateY(-2px);
        box-shadow: 0 6px 14px rgba(0,0,0,0.2);
    }

