/* ============================================
   BELLONIE FOOTER - Styles
   ============================================ */

.bellonie-footer {
    background-color: #3A472A;
    padding: 80px 0 60px;
    color: #FFFFFF;
}

/* ============================================
   TOP SECTION - Logo & Description
   ============================================ */
.bellonie-footer__top {
    margin-bottom: 60px;
    max-width: 670px;
}

.bellonie-footer__logo {
    display: inline-block;
    margin-bottom: 20px;
}

.bellonie-footer__logo img {
    max-height: 50px;
    width: auto;
}

.bellonie-footer__description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ============================================
   LINKS SECTION - 4 Columns
   ============================================ */
.bellonie-footer__links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.bellonie-footer__column {
    min-width: 0;
}

.bellonie-footer__title {
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

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

.bellonie-footer__list li {
    margin-bottom: 12px;
}

.bellonie-footer__list li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bellonie-footer__list li a:hover {
    color: #C4A962;
}

/* ============================================
   NEWSLETTER COLUMN
   ============================================ */
.bellonie-footer__column--newsletter {
    max-width: 280px;
}

.bellonie-footer__newsletter-text {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.bellonie-footer__newsletter-form {
    margin-bottom: 30px;
}

.bellonie-footer__newsletter-input-wrap {
    display: flex;
    background-color: white;
    color: black;
    border-radius: 25px;
    padding: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bellonie-footer__newsletter-input-wrap input {
    flex: 1;

    border: none;
    color: black;
    font-size: 13px;
    outline: none;
}

.bellonie-footer__newsletter-input-wrap input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.bellonie-footer__newsletter-input-wrap button {
    ackground-color: #E5BD6F;
    color: black;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 8px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s 
ease;
    white-space: nowrap;
}

.bellonie-footer__newsletter-input-wrap button:hover {
    background: #C4A962;
    color: #3A472A;
}

/* ============================================
   SOCIAL LINKS
   ============================================ */
.bellonie-footer__social-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.bellonie-footer__social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
}

/* Styles par défaut pour les liens sociaux (icônes rondes) */
.bellonie-footer__social-links > a:not(.bellonie-footer__social-link-text) {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 38px;
    height: 38px;
    background: #C4A962;
    border-radius: 50%;
    color: #3A472A;
    font-size: 18px;
    transition: all 0.3s ease;
}

.bellonie-footer__social-links > a:not(.bellonie-footer__social-link-text):hover {
    background: #FFFFFF;
    transform: translateY(-3px);
}

/* Liens avec texte (Facebook et Instagram) - Un par ligne, texte blanc */
.bellonie-footer__social-links .bellonie-footer__social-link-text {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: auto !important;
    background: transparent !important;
    border-radius: 0 !important;
    color: #FFFFFF !important;
    font-size: 18px !important;
    padding: 0 !important;
    margin: 0 !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    line-height: 1.5 !important;
}

.bellonie-footer__social-links .bellonie-footer__social-link-text:hover {
    background: transparent !important;
    transform: none !important;
    color: #C4A962 !important;
}

.bellonie-footer__social-links .bellonie-footer__social-link-text i {
    font-size: 18px !important;
    color: #FFFFFF !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.bellonie-footer__social-links .bellonie-footer__social-link-text:hover i {
    color: #C4A962 !important;
}

.bellonie-footer__social-links .bellonie-footer__social-link-text span {
    font-weight: 500 !important;
    color: #FFFFFF !important;
    white-space: nowrap !important;
    font-size: 18px !important;
}

.bellonie-footer__social-links .bellonie-footer__social-link-text:hover span {
    color: #C4A962 !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
    .bellonie-footer__links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .bellonie-footer__column--newsletter {
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .bellonie-footer {
        padding: 50px 0 40px;
    }

    .bellonie-footer__top {
        margin-bottom: 40px;
    }

    .bellonie-footer__links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bellonie-footer__newsletter-input-wrap {
        flex-direction: column;
        border-radius: 12px;
    }

    .bellonie-footer__newsletter-input-wrap input {
        padding: 14px 16px;
        text-align: center;
    }

    .bellonie-footer__newsletter-input-wrap button {
        margin: 8px;
        padding: 12px 20px;
    }
}
