/* ===============================
   MEGA-MENÜ - Desktop & Mobile
   =============================== */

/* Dropdown Container */
.navbar .dropdown-menu {
    background-color: #fffaf4 !important; /* helles Creme */
    border: 1px solid #f0e6d6 !important; /* goldene Umrandung */
    border-radius: 14px !important;
    box-shadow: 0 6px 25px rgba(0,0,0,0.15) !important;
    padding: 12px;
}

/* Einzelne Karten in Dropdown */
.navbar .dropdown-menu li {
    background-color: #ffffff !important;
    border: 1px solid #f0e6d6 !important;
    border-radius: 12px !important;
    padding: 18px 16px;
    margin: 6px 0;
    list-style: none;
    transition: all 0.3s ease;
}

/* Links in den Karten */
.navbar .dropdown-menu li a {
    color: #6f4f2d !important; /* dunkles Braun */
    font-weight: 600;
    font-family: 'Georgia', serif;
    text-decoration: none;
}

.navbar .dropdown-menu li a:hover {
    color: #b28c44 !important; /* edles Gold */
}

/* Hover-Effekt Karten */
.navbar .dropdown-menu li:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.2);
    border-color: #b28c44 !important;
}

/* Mega-Menü Überschriften */
.navbar .dropdown-menu h4 {
    color: #b28c44 !important;
    font-family: 'Georgia', serif;
    font-weight: 700;
    margin-bottom: 10px;
}

/* ===============================
   HEADER & LOGO
   =============================== */
.site-header {
    background-color: #fffaf4;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 12px 0;
}

.site-header .logo img {
    max-height: 65px;
}

/* ===============================
   BUTTONS
   =============================== */
.btn-reserve, .btn-submit {
    background-color: #b28c44 !important;
    color: #fff !important;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-reserve:hover, .btn-submit:hover {
    background-color: #8c6b30 !important;
    transform: scale(1.05);
}

/* ===============================
   BACK TO TOP BUTTON
   =============================== */
#backToTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    border: none;
    outline: none;
    background-color: #b28c44;
    cursor: pointer;
    padding: 14px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    transition: background-color 0.3s, transform 0.2s, opacity 0.3s;
    text-align: center;
}

#backToTop:hover {
    background-color: #8c6b30;
    transform: scale(1.1);
}

#backToTop img {
    display: block;
    margin: auto;
}

/* ===============================
   INFO-BOXEN & KONTAKT
   =============================== */
.info-section {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    text-align: center;
}

.info-section > div {
    min-width: 200px;
    max-width: 250px;
    background-color: #fffaf4;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.info-section h3 {
    margin-bottom: 10px;
    font-family: 'Georgia', serif;
    color: #b28c44;
}

.info-section p {
    color: #555;
    font-size: 0.95rem;
}

/* ===============================
   HOVER GALLERY
   =============================== */
.hover-gallery .hover-image {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 14px;
    margin: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hover-gallery .hover-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
}

.hover-gallery .hover-image .hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.4s;
}

.hover-gallery .hover-image:hover .hover {
    opacity: 1;
}

.hover-gallery .hover-title {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

/* ===============================
   MOBILE OPTIMIERUNG
   =============================== */
@media (max-width: 991px) {
    .navbar .dropdown-menu {
        position: static !important;
        box-shadow: none !important;
        border: none !important;
        background-color: #fffaf4 !important;
    }

    .navbar .dropdown-menu li {
        margin: 4px 0;
    }
}
