/* Footer */
.footer {
    background: #f4eee7;
    color:  #322a2b;
    padding: 50px 80px 20px;
}

/* New footer hero section */
.footer-hero {
    background:  #322a2b;
    color: #f4eee7;
    padding: 60px 80px;
    margin: -50px -80px 50px;
}

.footer-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-hero h2 {
    font-size: 2.5em;
    font-weight: 400;
    margin: 0;
    width: 60%;
    color: #ddd!important;
}

.footer-hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-reserve, .btn-all-services {
    padding: 10px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.2em;
}

.btn-reserve {
    background: #f4eee7;
    color:  #322a2b;
    border: 3px solid #f4eee7;
}

.btn-all-services {
    background: transparent;
    color: #f4eee7;
    border: 3px solid #f4eee7;
}

.btn-reserve:hover {
    background: #e6d9c8;
    border-color: #e6d9c8;
}

.btn-all-services:hover {
    background: rgba(244, 238, 231, 0.1);
}

.footer-newsletter {
    /* margin-bottom: 20%; */
    border-right: 2px solid;
    padding-right: 30px;
    height: 400px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-newsletter h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    width: 70%;
}

.footer-newsletter p {
    font-size: 18px;
    margin-bottom: 8%;
}

.newsletter-form {
    display: flex;
    margin: 15px 0;
    flex-direction: row;
}

.newsletter-form input {
    flex: 1;
    padding: 17px 25px;
    border: 2px solid  #322a2b;
    border-radius: 30px 0 0 30px;
    outline: none;
    font-size: 15px;
}

.newsletter-form button {
    padding: 17px 28px;
    border: none;
    background:  #322a2b;
    color: #fff;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    font-size: 15px;
}

.footer-line {
    border: none;
    border-top: 1px solid #ddd;
    /* thin grey line */
    margin: 30px 0;
}

.social-icons {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.social-icons a {
    margin-right: 15px;
    color:  #322a2b;
    font-size: 1.7em;
}

.footer-links h3 {
    font-size: 2em;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color:  #322a2b;
    text-decoration: none;
    gap: 20px;
    display: flex;
    font-size: 18px;
    align-content: center;
    align-items: center;
}

.footer-links ul li a:hover {
    color: #9A7B4F;
}

.footer-bottom {
    border-top: 2px solid #ddd;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-size: 20px;
    font-weight: bold;
}
@media (max-width: 768px) { 
    .footer {
        width: -webkit-fill-available;
    }
    .footer-top {
        display: flex;
        flex-direction: column;
    }
    .footer-newsletter {
        border-right: none;
        margin-bottom: 24px;
    }
    
    .footer-hero-content {
        flex-direction: column;
        width: -webkit-fill-available;
        gap: 37px;
    }

    .senses-flex {
        grid-template-columns: 1fr 1fr;
        display: grid;
    }
    .footer-hero-buttons {
        display: flex;
        gap: 20px;
        width: max-content;
    }
    
    .footer-hero h2 {
        width: -webkit-fill-available;
    }
    
    .newsletter-form button {
        padding: 17px 17px;
    }
    .newsletter-form input {
        flex: 1;
        padding: 11px 14px;
        border: 2px solid #322a2b;
        border-radius: 30px 0 0 30px;
        outline: none;
        font-size: 13px;
    }
    
}