* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Barlow", sans-serif;
    letter-spacing: 0.09rem;
    overflow-x: hidden;
}

header {
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background 0.3s, backdrop-filter 0.3s;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}


header {
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background 0.3s, backdrop-filter 0.3s;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    margin: 0 auto;
}

.logo img {
    height: 100px;
    display: block;
}

.phone {
    font-size: 14px;
    color: #6D5952;
}

.book {
    border-radius: 50px;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    background-color: #6D5952;
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.header-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    padding: 10px 0;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.header-nav a {
    text-decoration: none;
    color: #6D5952;
    font-size: 16px;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    white-space: nowrap;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #fff;
    border-top: 1px solid #ddd;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 99;
}

.mobile-menu a {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    text-decoration: none;
    color: #6D5952;
}

.mentions-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

h1,
h2 {
    color: #6D5952;
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

h2 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1rem;
}




.footer-contact {
    position: relative;
    background-color: #f3e6d5;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 3rem 2rem;
    flex-wrap: wrap;
    color: #000;

}

.footer-contact-content {
    position: relative;
    z-index: 2;
    max-width: 400px;
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.footer-contact-info li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-contact-info i {
    font-size: 1.4rem;
    margin-right: 0.8rem;
    color: #50403a;
}

.footer-contact-socials {
    list-style: none;
    display: flex;
    gap: 1.2rem;
    padding: 0;
    margin: 0;
    color: #50403a;
}

.footer-contact-socials li {
    font-size: 1.4rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.footer-contact-socials li:hover {
    transform: scale(1.2);
}

/* Background Image */
.footer-contact-background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 45%;
    background-image: url('./img/footer-img.jpeg');
    background-size: cover;
    background-position: center;
    z-index: 1;

}

.footer-contact-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.footer-contact-links li a {
    color: #6D5952;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s, text-decoration 0.3s;
}

.footer-contact-links li a:hover {
    color: #090909;
    text-decoration: underline;
}


.footer-contact-background::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    /* Adjust opacity here */
    z-index: 2;
}



.footer-contact-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.footer-contact-links li a {
    color: #6D5952;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s, text-decoration 0.3s;
}

.footer-contact-links li a:hover {
    color: #090909;
    text-decoration: underline;
}



/* Responsive */
@media (max-width: 768px) {
    .header-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .phone.desktop-only {
        display: none;
    }

    .hero-section {
        padding: 0;
    }





    .mentions-container {
        padding: 1rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    .footer-contact {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-contact-background {
        position: static;
        width: 100%;
        height: 250px;
        margin-top: 2rem;
        background-position: center top;
    }


}