/* Styles pour la section Disponibilités */

.disponibilites-section {
    background-color: #e0b77c;
    background-image: linear-gradient(135deg, #e0b77c, #d6a05e);
    padding: 150px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #ffffff;
    min-height: 400px;
}

.disponibilites-title {
    font-family: 'Tan Pearl', serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 60px;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.disponibilites-title .spacing {
    display: block;
    height: 15px;
}

.disponibilites-decorative {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: auto;
    opacity: 1;
    z-index: 1;
}

.disponibilites-btn {
    display: inline-flex;
    align-items: center;
    font-family: 'Inter Tight', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    background-color: transparent;
    border: 1px solid #ffffff;
    border-radius: 50px;
    padding: 12px 24px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.disponibilites-btn span {
    margin-right: 15px;
}

.disponibilites-btn img {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.disponibilites-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.disponibilites-btn:hover img {
    transform: translateX(5px);
}

/* Styles pour le footer */
.footer {
    background-color: #f8f5ef;
    padding: 60px 0 30px;
    color: #0b2026;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social a.social-icon img {
    width: 28px;
    height: 28px;
}

.footer-social a:hover img {
    opacity: 0.8;
}

.footer-nav h4, .footer-contact h4 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #0b2026;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-nav ul li a {
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    color: #0b2026;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: #d6a05e;
}

.footer-contact p {
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-contact a {
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    color: #0b2026;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #d6a05e;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(11, 32, 38, 0.1);
    font-family: 'Inter Tight', sans-serif;
    font-size: 12px;
    color: #0b2026;
}

.footer-bottom a {
    color: #0b2026;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #d6a05e;
}

.cristallerie-logo {
    max-width: 100%;
    height: auto;
    margin: 80px auto 30px;
    display: block;
}

@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-nav, .footer-contact {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-bottom a {
        margin: 0 10px;
    }
}
