/* === Features Section (Backup Dezember 2025) === */

/* Content Sections Basics */
.content-section {
    position: relative;
    padding: 4rem 0;
    background: transparent;
    margin-bottom: 2rem;
    z-index: 10;
}

.content-section:first-child {
    margin-top: 0;
}

/* === Global Typography Protection for HTML Blocks === */
.content-section p,
.content-section span,
.content-section li {
    font-weight: 400 !important;
    color: #1f2937 !important;
    /* Dark Gray for better readability */
}

.content-section strong,
.content-section b {
    font-weight: 700 !important;
    color: #1a4d6d !important;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.section-header {
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #1a4d6d;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-intro {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.text-center {
    text-align: center;
}

/* Subsection Titles */
.subsection-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    color: #1a4d6d;
    margin-bottom: 2.5rem;
    text-align: center;
}

/* Quick Facts Grid */
.quick-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.fact-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(91, 163, 199, 0.3);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.fact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(91, 163, 199, 0.15) 0%, rgba(26, 77, 109, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.fact-card:hover::before {
    opacity: 1;
}

.fact-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 60px rgba(26, 77, 109, 0.25);
    border-color: rgba(91, 163, 199, 0.6);
}

.fact-card>* {
    position: relative;
    z-index: 1;
}

.fact-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #2b7a9e;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.fact-unit {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a4d6d;
    margin-bottom: 0.75rem;
}

.fact-label {
    font-size: 0.95rem;
    color: #4b5563;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Rooms Section */
.rooms-section {
    margin-bottom: 5rem;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

@media (max-width: 768px) {
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.room-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(91, 163, 199, 0.3);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.room-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(91, 163, 199, 0.1) 0%, rgba(26, 77, 109, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.room-card:hover::before {
    opacity: 1;
}

.room-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(26, 77, 109, 0.25);
    border-color: rgba(91, 163, 199, 0.6);
}

.room-card>* {
    position: relative;
    z-index: 1;
}

.room-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(91, 163, 199, 0.2);
}

.room-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.room-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a4d6d;
    margin: 0;
    flex: 1;
}

.room-floor {
    font-size: 0.85rem;
    color: #4b5563;
    background: rgba(91, 163, 199, 0.15);
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    font-weight: 500;
}

.room-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.room-features li {
    font-size: 0.95rem;
    color: #374151;
    padding-left: 1.5rem;
    position: relative;
}

.room-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2b7a9e;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Suitable For Section */
.suitable-section {
    margin-bottom: 5rem;
}

.suitable-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.suitable-grid-center {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

/* Kacheln haben die exakt gleiche Breite wie im 5er Grid oben */
.suitable-grid-center .suitable-card {
    flex: 0 1 calc((100% - 8rem) / 5);
    min-width: 200px;
}

@media (max-width: 992px) {

    .suitable-grid,
    .suitable-grid-center {
        grid-template-columns: repeat(2, 1fr);
    }

    .suitable-grid-center .suitable-card:first-child {
        grid-column: auto;
    }
}

@media (max-width: 576px) {

    .suitable-grid,
    .suitable-grid-center {
        grid-template-columns: 1fr;
    }
}

.suitable-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(91, 163, 199, 0.3);
    border-radius: 1.25rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.suitable-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(91, 163, 199, 0.08) 0%, rgba(26, 77, 109, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.suitable-card:hover::before {
    opacity: 1;
}

.suitable-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(26, 77, 109, 0.2);
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(91, 163, 199, 0.5);
}

.suitable-card>* {
    position: relative;
    z-index: 1;
}

.suitable-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.suitable-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a4d6d;
}

/* === Distance Cards === */
.distance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.distance-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(91, 163, 199, 0.3);
    border-radius: 1.25rem;
    transition: all 0.3s ease;
}

.distance-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(26, 77, 109, 0.2);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(91, 163, 199, 0.5);
}

.distance-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.distance-info {
    flex: 1;
}

.distance-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2b7a9e;
    margin-bottom: 0.25rem;
}

.distance-label {
    font-size: 0.95rem;
    color: #4b5563;
}

/* === Location Highlights === */
.location-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.location-highlight {
    padding: 3rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(91, 163, 199, 0.3);
    border-radius: 1.5rem;
}

.highlight-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.location-highlight h4 {
    font-size: 1.5rem;
    font-weight: 700 !important;
    color: #1a4d6d;
    margin-bottom: 1rem;
}

.location-highlight p {
    font-size: 1.1rem;
    font-weight: 400 !important;
    line-height: 1.7;
    color: #1f2937 !important;
    /* gray-800 für besseren Kontrast */
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .distance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .distance-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .distance-grid {
        grid-template-columns: 1fr;
    }
}

/* === Pricing Section === */
.pricing-content {
    display: grid;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-main {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 1.5rem;
    border: 2px solid rgba(91, 163, 199, 0.3);
}

.pricing-main h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    color: #1a4d6d;
    margin-bottom: 2rem;
}

.pricing-terms {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem;
}

.pricing-term {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(91, 163, 199, 0.08);
    border-radius: 1rem;
}

.term-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.term-info {
    display: flex;
    flex-direction: column;
}

.term-info strong {
    font-size: 1.15rem;
    font-weight: 700 !important;
    color: #1a4d6d;
    margin-bottom: 0.25rem;
}

.term-info span {
    font-size: 1rem;
    font-weight: 400 !important;
    color: #374151 !important;
    /* Dunkleres Grau */
}

.pricing-extras {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.extras-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 2px solid rgba(91, 163, 199, 0.3);
}

.extras-card h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: #1a4d6d;
    margin-bottom: 1.5rem;
}

.tax-period {
    font-size: 0.95rem;
    color: #2b7a9e;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.extras-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(91, 163, 199, 0.15);
}

.extras-list li:last-child {
    border-bottom: none;
}

.extra-name {
    font-size: 0.9rem;
    font-weight: 400 !important;
    color: #1f2937 !important;
}

.extra-price {
    font-weight: 500 !important;
    color: #2b7a9e;
    font-size: 0.9rem;
}

.tax-note {
    font-size: 0.9rem;
    font-weight: 400 !important;
    color: #374151 !important;
    font-style: italic;
    margin-top: 1rem;
}

/* Responsive Overrides Pricing */
@media (max-width: 768px) {
    .pricing-terms {
        grid-template-columns: 1fr !important;
    }

    .pricing-extras {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .pricing-main {
        padding: 2rem;
    }
    .extras-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .pricing-main {
        padding: 1.5rem;
    }
    .extras-card {
        padding: 1.5rem;
    }
    .pricing-term {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 1.25rem;
    }
}

/* === Reviews Section === */
.rating-overview {
    display: grid !important;
    grid-template-columns: 1fr 2fr !important;
    gap: 4rem;
    margin-bottom: 5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 1.5rem;
    border: 2px solid rgba(91, 163, 199, 0.3);
}

.rating-main {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(91, 163, 199, 0.15) 0%, rgba(26, 77, 109, 0.15) 100%);
    border-radius: 1rem;
}

.rating-score {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 5rem;
    font-weight: 700;
    color: #2b7a9e;
    line-height: 1;
    margin-bottom: 1rem;
}

.rating-stars {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.rating-count {
    font-size: 1.1rem;
    color: #4b5563;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rating-item {
    display: grid;
    grid-template-columns: 140px 1fr 60px;
    align-items: center;
    gap: 1.5rem;
}

.rating-category {
    font-size: 1.05rem;
    color: #374151;
    font-weight: 600;
}

.rating-bar {
    height: 12px;
    background: rgba(91, 163, 199, 0.15);
    border-radius: 6px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, #2b7a9e 0%, #1a4d6d 100%);
    border-radius: 6px;
    transition: width 1s ease;
}

.rating-value {
    font-weight: 700;
    color: #2b7a9e;
    font-size: 1.1rem;
    text-align: right;
}

.reviews-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2.5rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-radius: 1.5rem;
    border: 2px solid rgba(91, 163, 199, 0.3);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-stars {
    font-size: 1.25rem;
}

.review-date {
    font-size: 0.9rem;
    color: #4b5563;
}

.review-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: #1a4d6d;
    margin: 0;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #374151;
    font-style: italic;
}

.review-author {
    font-size: 0.95rem;
    color: #4b5563;
}

.host-response {
    background: rgba(91, 163, 199, 0.08);
    border-left: 4px solid #2b7a9e;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

.response-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.host-response p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #374151;
    margin: 0;
}

/* Responsive Overrides Reviews */
@media (max-width: 992px) {
    .rating-overview {
        grid-template-columns: 1fr !important;
        gap: 3rem;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr !important;
    }

    .rating-item {
        grid-template-columns: 100px 1fr 50px;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .rating-overview {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .rating-score {
        font-size: 3.5rem;
    }

    .rating-overview {
        padding: 1.5rem;
        gap: 2rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    .rating-item {
        grid-template-columns: 90px 1fr 40px;
        gap: 0.75rem;
    }
}

/* === WooCommerce Restyle (Strictly Scoped) === */
.elementor-widget-woocommerce-my-account .woocommerce,
.elementor-widget-woocommerce-checkout-page .woocommerce,
.elementor-widget-woocommerce-cart .woocommerce {
    background: #ffffff !important;
    padding: 3rem !important;
    border-radius: 1.5rem !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.woocommerce form .form-row label {
    color: #1a4d6d !important;
    font-weight: 600;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none !important;
    padding: 0 !important;
    background: rgba(91, 163, 199, 0.08);
    /* light blue accent */
    border-radius: 1rem;
    overflow: hidden;
    margin: 0 !important;
}

.woocommerce-MyAccount-navigation ul li {
    border-bottom: 1px solid rgba(91, 163, 199, 0.15) !important;
    padding: 0 !important;
}

.woocommerce-MyAccount-navigation ul li:last-child {
    border-bottom: none !important;
}

.woocommerce-MyAccount-navigation ul li a {
    display: block !important;
    padding: 1rem 1.5rem !important;
    color: #1a4d6d !important;
    text-decoration: none !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-MyAccount-navigation ul li.is-active a {
    background: #2b7a9e !important;
    color: #ffffff !important;
}

.woocommerce-MyAccount-content {
    background: transparent !important;
    padding-left: 2rem;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    background: #ffffff !important;
    border: 1px solid rgba(91, 163, 199, 0.4) !important;
    border-radius: 0.5rem !important;
    padding: 0.8rem 1rem !important;
    color: #374151 !important;
    width: 100% !important;
    box-shadow: none !important;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    border-color: #2b7a9e !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(43, 122, 158, 0.2) !important;
}

.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button {
    background: linear-gradient(135deg, #2b7a9e 0%, #1a4d6d 100%) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 1rem 2rem !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    cursor: pointer !important;
    text-transform: none !important;
}

.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(26, 77, 109, 0.3) !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #1a4d6d 0%, #2b7a9e 100%) !important;
}

.woocommerce-MyAccount-content p {
    color: #4b5563 !important;
    font-size: 1.05rem !important;
}

.woocommerce legend,
.woocommerce h3,
.woocommerce h1,
.woocommerce h2 {
    color: #1a4d6d !important;
    font-weight: 700 !important;
}

@media (max-width: 768px) {

    .elementor-widget-woocommerce-my-account .woocommerce,
    .elementor-widget-woocommerce-checkout-page .woocommerce,
    .elementor-widget-woocommerce-cart .woocommerce {
        padding: 1.5rem !important;
    }

    .woocommerce-MyAccount-content {
        padding-left: 0 !important;
        margin-top: 2rem !important;
    }
}

/* Page Background Fix for WooCommerce Pages */
body.woocommerce-page,
body.woocommerce-account,
body.woocommerce-checkout,
body.woocommerce-cart {
    background-color: var(--off-white) !important;
}


/* Address Fields Fix in Account Dashboard */
.woocommerce-Address-title {
    margin-bottom: 1.5rem !important;
}

.woocommerce-Address-title h3 {
    font-size: 1.5rem !important;
    display: inline-block !important;
}

.woocommerce-Address-title a.edit {
    display: inline-block !important;
    margin-left: 1rem !important;
    font-size: 1rem !important;
}

/* Hide Shipping Address entirely */
.u-column2.col-2.woocommerce-Address {
    display: none !important;
}

/* Expand Billing Address to full width */
.u-column1.col-1.woocommerce-Address {
    width: 100% !important;
    max-width: 600px !important;
}

/* === Protect Elementor Footer from WooCommerce Core Styles === */
/* Prevent WooCommerce from coloring the Copyright "D-KI-Webagentur" link blue */
footer.elementor-location-footer a,
footer.site-footer a,
.elementor-location-footer .elementor-widget-text-editor a {
    color: #374151 !important;
    /* Dark Gray / Black */
    transition: color 0.3s ease;
}

footer.elementor-location-footer a:hover,
footer.site-footer a:hover,
.elementor-location-footer .elementor-widget-text-editor a:hover {
    color: #1a4d6d !important;
    /* Keep original hover effect */
}

/* Hide Shipping Address entirely */
.u-column2.col-2.woocommerce-Address {
    display: none !important;
}

/* Expand Billing Address to full width */
.u-column1.col-1.woocommerce-Address {
    width: 100% !important;
    max-width: 600px !important;
}