/* Custom styles for the amenities */

.amenities ul {
    list-style-type: none; /* Removes bullets */
    padding: 0;
    margin: 0;
}

.amenities ul li {
    margin-bottom: 10px; /* Adds spacing between items */
    display: flex;
    align-items: center;
}

.amenities ul li i {
    margin-right: 10px; /* Adds space between icon and text */
}

/* Custom styles for the elfsight reviews */

.reviews {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Custom styles for the icons */

.mdi {
    color: #4caf50; /* Example color matching theme */
    font-size: 1.5rem;
    margin-right: 10px;
}

.mdi:hover {
    color: #388e3c; /* Darker green on hover */
}

/* Custom styles for pricing */

.pricing .button-wrapper {
    text-align: center; /* Centers the button wrapper */
}

/* Subtle heritage link */
.subtle-heritage {
    text-align: center;
    padding: 10px;
    font-size: 0.95em;
    color: #666;
}

.subtle-heritage a {
    color: #52a373;
    text-decoration: none;
    border-bottom: 1px dotted #52a373;
}

.subtle-heritage a:hover {
    border-bottom: 1px solid #52a373;
}

/* Small badges - not overwhelming */
.trust-badge {
    display: inline-block;
    padding: 3px 10px;
    font-size: 0.85em;
    border-radius: 15px;
    margin: 2px;
}

.badge-eco {
    background: #52a373;
    color: white;
}

.badge-heritage {
    background: #f0f0f0;
    color: #666;
}

/* Timeline for histoire page only */
.timeline {
    margin: 40px 0;
}

.timeline-item {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-item .date {
    color: #52a373;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

/* Small text in footer */
footer .small {
    font-size: 0.9em;
}

footer .small a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dotted;
}

footer .small a:hover {
    border-bottom: 1px solid;
}

.pricing ul {
    list-style-type: none;
    padding: 0;
}

.pricing ul li {
    margin-bottom: 10px;
}

.pricing .button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #4caf50;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.pricing .button:hover {
    background-color: #388e3c;
}


/* Custom styles for the slideshow */

.slideshow-container {
    max-width: 100%;
    position: relative;
    margin: auto;
}

.mySlides {
    display: none;
}

.demo {
    cursor: pointer;
    opacity: 0.6;
}

.demo:hover {
    opacity: 1;
}

.slideshow-container .w3-black p {
    margin-bottom: 0em;
}

/* Footer optimization - reduce excessive padding on desktop */
#footer {
    padding: 3em 5em 4em 5em; /* Reduced from 5em 5em 10em 5em */
}

/* Maintain responsive adjustments */
@media screen and (max-width: 1680px) {
    #footer {
        padding: 3em 4em; /* Slightly reduced from 4em */
    }
}

@media screen and (max-width: 980px) {
    #footer {
        padding: 3em 1.5em; /* Keep mobile-friendly padding */
    }
}

@media screen and (max-width: 736px) {
    #footer {
        padding: 2.5em 1.5em; /* Slightly reduced for mobile */
    }
}
