* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    list-style: none;
}

body {
    background-color: #fff;
}

/* NAVBAR */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    height: 70px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* LOGO */
.logo {
    background-color: white;
    z-index: 5;
    margin-top: 110px;
    padding: 10px;
}

.logo img {
    height: 150px;

}

/* LINKS */
.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: #c9a36a;
    bottom: -5px;
    left: 0;
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* BUTTON */
.btn-book {
    text-decoration: none;
    padding: 10px 22px;
    background-color: #111;
    color: #fff;
    border-radius: 30px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-book:hover {
    background-color: #c9a36a;
    color: #111;
}





/* TOP BAR */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 60px;
    background-color: #111;
    color: #fff;
    font-size: 14px;
}

/* LEFT */
.top-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-left i {
    margin-right: 5px;
    color: #c9a36a;
}

.separator {
    opacity: 0.5;
}

/* RIGHT (SOCIAL ICONS) */
.top-right {
    display: flex;
    gap: 18px;
}

.top-right a {
    color: #fff;
    font-size: 15px;
    transition: 0.3s;
}

.top-right a:hover {
    color: #c9a36a;
}




/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #111;
    border-radius: 3px;
}



/* CSS – HERO SLIDER */

/* HERO SLIDER */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slides {
    height: 100%;

}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

/* OVERLAY */
.overlay {
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.55); */
}

/* CONTENT */
.slide-content {
    position: absolute;
    inset: 0;
    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 60px;

    color: #fff;
}


.subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    color: #c9a36a;
}

.slide-content h1 {
    font-size: 64px;
    margin: 20px 0;
}

.slide-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #e0e0e0;
}

.btn-hero {
    display: inline-block;
    padding: 14px 32px;
    background: #c9a36a;
    color: #111;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-hero:hover {
    background: #fff;
}

/* DOTS */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 60px;
    display: flex;
    gap: 12px;
    z-index: 3;
}

.dot {
    width: 14px;
    height: 14px;
    border: 2px solid #fff;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #c9a36a;
    border-color: #c9a36a;
}







/* ABOUT SECTION */
.open-hours {
    padding: 120px 0;
    background: #fff;
    overflow: hidden;
}


.about-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

/* CENTER THE CONTAINER */
.about-container {
    display: flex;
    align-items: center;        /* vertical alignment */
    justify-content: center;    /* horizontal alignment of content */
    max-width: 1200px;          /* control width */
    margin: 0 auto;             /* center container on page */
    padding: 0 20px;            /* safe spacing on mobile */
    gap: 60px;                  /* space between image & content */
}




.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* IMAGE */
.about-image img {
    width: 400px;
    height: 550px;
    object-fit: cover;
    /* border-radius: 6px; */
}

/* CONTENT */
.about-content {
    max-width: 550px;
}

.about-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 6px 14px;
    background: #f5eee2;
    color: #c9a36a;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.about-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #111;
}

.about-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 40px;
    border-left: 1px solid #c9a36a;
    padding-left: 35px;
}

/* STATS */
.about-stats {
    display: flex;
    gap: 30px;
}

.stat-box {
    background: #f5eee2;
    padding: 30px 40px;
    text-align: center;
    min-width: 180px;
}

.stat-box h2 {
    font-size: 42px;
    color: #c9a36a;
    margin-bottom: 5px;
}

.stat-box span {
    font-size: 14px;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 1px;
}







.services {
    text-align: center;
    /* padding: 60px 20px; */
}

.services .title span {
    display: inline-block;
    padding: 6px 18px;
    background: #f5eee2;
    color: #c9a36a;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 5px;
}

.services .title h2 {
    margin: 20px 0 40px;
    font-size: 42px;
    font-weight: 800;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0px;
    margin: 0 auto;
}

.card {
    position: relative;
    overflow: hidden;
    height: 360px;
    cursor: pointer;
    /* border-bottom: 1px solid whitesmoke; */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: flex-end;
    /* IMPORTANT: content at bottom */
    padding: 30px 20px;
    transition: transform 0.5s ease;
}

.overlay-content {
    width: 100%;
    color: #fff;
}

.overlay h3 {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 700;
}

.overlay p {
    font-size: 14px;
    line-height: 1.4;
}

/* Button always at bottom of card */
/* NEW: button background strip */
.btn-background {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    /* adjust as you want */
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.btn {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    opacity: 0;
    padding: 10px 10px;
    background: #c9a36a;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: opacity 0.4s ease;
    width: 80%;
}

.card:hover img {
    transform: scale(1.1);
}

.card:hover .overlay {
    transform: translateY(-70px);
}

.card:hover .btn {
    opacity: 1;
}

/* show strip on hover */
.card:hover .btn-background {
    transform: translateY(0);
}


/* When hovering a card, move it up */
.card:hover {
    transform: translateY(-25px);
    /* adjust height */
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25); */
}

/* Optional: make neighbors stay in place */
.grid:hover .card {
    transform: translateY(0);
}

.grid:hover .card:hover {
    transform: translateY(-25px);
}










/* ===== SECTION ===== */
.appointment {
    position: relative;
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* margin-top: -60px; */
}

.appointment .image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.appointment .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.582);
    z-index: 2;
}


/* FORM BOX */
.form-box {
    position: relative;
    z-index: 3;
    width: 760px;
    padding: 40px 50px;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 3px;
    text-align: center;
}

.form-box h2 {
    color: #fff;
    font-size: 40px;
    margin-bottom: 40px;
    font-weight: 700;
}

/* ROWS */
.row {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
}



/* INPUTS */
.row input,
.row select {
    width: 100%;
    padding: 12px 15px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    outline: none;
}



/* BUTTON */
.appointment-btn {
    width: 100%;
    padding: 12px 15px;
    border: none;
    background: #c9a36a;
    color: #fff !important;
    font-weight: 700;
    cursor: pointer;
}











.section-container {
    /* background-color: #f7ebda; */
    padding: 40px;
    display: flex;
    justify-content: center;
}

.open-hours-container {
    width: 560px;
    padding: 28px 32px;
    background: #f7ebda;
    border-radius: 22px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    margin-left: -150px;
}

.open-hours-container .about-tag {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: #6b1206;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.open-hours-container h1 {
    margin-top: 18px;
    margin-bottom: 12px;
    font-size: 28px;
    color: #6b1206;
    font-weight: 800;
}

.open-hours-container p {
    margin-bottom: 22px;
    color: #6b1206;
    line-height: 1.6;
    font-size: 16px;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    background: rgba(255, 255, 255, 0.55);
    border-radius: 18px;
    padding: 12px 16px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #4a0e07;
}

.hours-list li span:first-child {
    flex: 1;
}

.hours-list li span:last-child {
    flex: 1;
    text-align: right;
    font-weight: 700;
}

















/* PRICING SECTION */
.pricing-section {
    position: relative;
    /* height: 550px; */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* margin-top: -60px; */
}

/* IMAGE BACKGROUND */
.pricing-section .image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.pricing-section .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */
.pricing-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2;
}

/* CONTAINER */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 3;
    max-width: 1300px;
    width: 100%;
    padding: 20px 50px;
    background: #f5eee2;
    border-radius: 3px;
    text-align: center;
}

/* CARD */
.pricing-card {
    background: #fff;
    padding: 40px 35px;
    text-align: center;
}


.pricing-card.featured {
    border: 2px solid #c9a36a;
}


/* PRICE HEADER */
.price {
    font-size: 56px;
    font-weight: 700;
    color: #111;
}

.per {
    font-size: 16px;
    color: #777;
}

.price-header h4 {
    margin-top: 10px;
    color: #c9a36a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* LIST */
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.pricing-card ul li {
    margin-bottom: 15px;
    color: #555;
}

/* BUTTON */
.price-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #c9a36a;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.price-btn:hover {
    background: #111;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .pricing-container {
        grid-template-columns: 1fr;
        padding: 40px 25px;
    }

    .open-hours-container {
        width: 750px;
    }
}









/* TESTIMONIAL STYLE & LAYOUT */


.testimonial-section {
    padding: 100px 0;
}


.testimonial-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    /* max-height: 500px; */
}


.testimonial-image img {
    width: 100%;
    max-height: 620px;
    overflow: hidden;
    object-fit: cover;
}

.testimonial-tag {
    display: inline-block;
    margin-bottom: 10px;
    color: #c9a36a;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.testimonial-content h2 {
    font-size: 40px;
    margin-bottom: 30px;
}

.testimonial-slider {
    position: relative;
    min-height: 220px;
}

.testimonial-slide {
    display: none;
    animation: fade 0.6s ease-in-out;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.client-info img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    margin: 0;
}

.client-info span {
    font-size: 14px;
    color: #777;
}

.stars {
    color: #c9a36a;
    font-size: 18px;
    margin: 10px 0;
}

.testimonial-slide p {
    color: #666;
    line-height: 1.6;
}

/* CONTROLS */
.testimonial-controls {
    margin-top: 25px;
}

.testimonial-controls button {
    width: 45px;
    height: 45px;
    border: none;
    background: #c9a36a;
    color: #fff;
    margin-right: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.testimonial-controls button:hover {
    background: #111;
}

/* ========================= */
/* TESTIMONIAL – MOBILE */
/* ========================= */

@media (max-width: 900px) {

    .testimonial-section {
        padding: 70px 20px;
    }

    .testimonial-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonial-image img {
        max-height: 350px;
        border-radius: 12px;
    }

    .testimonial-content {
        text-align: center;
    }

    .testimonial-tag {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .testimonial-content h2 {
        font-size: 30px;
        margin-bottom: 25px;
    }

    .client-info {
        justify-content: center;
        text-align: left;
    }

    .testimonial-slider {
        min-height: auto;
    }

    .testimonial-slide p {
        font-size: 15px;
    }

    .testimonial-controls {
        margin-top: 30px;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 480px) {

    .testimonial-section {
        padding: 60px 15px;
    }

    .testimonial-content h2 {
        font-size: 26px;
    }

    .testimonial-slide p {
        font-size: 14px;
        line-height: 1.7;
    }

    .testimonial-controls button {
        width: 40px;
        height: 40px;
    }
}











.footer {
    background: #111;
    color: #ccc;
    font-size: 15px;
}


.footer-container {
    /* max-width: 1400px; */
    margin: auto;
    padding: 80px 80px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

/* BRAND */
.footer-brand h2 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 20px;
}

.footer-brand h2 span {
    color: #c9a36a;
}

.footer-brand p {
    line-height: 1.7;
    margin-bottom: 20px;
}

/* CONTACT */
.footer-contact li {
    list-style: none;
    margin-bottom: 12px;
}

.footer-contact i {
    color: #c9a36a;
    margin-right: 10px;
}

/* SOCIALS */
.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: #c9a36a;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.footer-socials a:hover {
    background: #fff;
}

/* COLUMNS */
.footer-col h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 25px;
}

.footer-links li {
    list-style: none;
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a::before {
    content: "›";
    margin-right: 8px;
    color: #c9a36a;
}

.footer-links a:hover {
    color: #c9a36a;
}

/* NEWSLETTER */
.newsletter {
    display: flex;
    margin-top: 15px;
}

.newsletter input {
    flex: 1;
    padding: 14px;
    border: none;
    outline: none;
}

.newsletter button {
    padding: 14px 22px;
    border: none;
    background: #c9a36a;
    color: #111;
    cursor: pointer;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid #333;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.footer-bottom span {
    color: #c9a36a;
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 80px 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}



















/* MOBILE NAV */
.nav-mobile {
    display: none;
    z-index: 100;
}

/* ========================= */
/* TABLET & MOBILE */
/* ========================= */
@media (max-width: 1024px) {

    .navbar {
        padding: 20px 30px;
    }

    .nav-links,
    .nav-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-mobile {
        position: absolute;
        top: 15%;
        left: 0;
        width: 100%;
        background: #fff;
        border-top: 1px solid gray;
        padding: 30px;
        display: none;
        flex-direction: column;
        gap: 25px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    }

    .nav-mobile.active {
        display: flex;
    }

    .nav-mobile .nav-links {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .nav-mobile .nav-links a {
        font-size: 18px;
    }

    .mobile-btn {
        align-self: flex-start;
    }

    /* TOP BAR MOBILE */
    .top-bar {
        padding: 8px 30px;
        font-size: 12px;
    }

    .top-left span:last-child {
        display: none;
        /* cache l'email */
    }
}

/* ========================= */
/* SMALL MOBILE */
/* ========================= */
@media (max-width: 600px) {

    .top-right {
        gap: 12px;
    }

    .logo img {
        height: 40px;
    }

    .logo {
        margin-top: 0px;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 42px;
    }

    .slide-content {
        max-width: 90%;
        padding: 0 20px;
    }

    .slider-dots {
        left: 30px;
    }
}



@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        padding: 0 20px;
        gap: 40px;
        text-align: center;
    }

    .about-content {
        max-width: 100%;
        text-align: center;
    }

    .about-image img {
        width: 100%;
        max-width: 350px;
        height: auto;
        margin-bottom: 30px;
    }


    .about-stats {
        justify-content: center
    }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .form-box {
        width: 90%;
        padding: 35px 30px;
    }

    .form-box h2 {
        font-size: 34px;
        margin-bottom: 30px;
    }

    .row {
        display: flex;
        gap: 20px;
        width: 100%;
    }

    .row input {
        flex: 1;
        min-width: 0;
        box-sizing: border-box;
    }


}

@media (max-width: 768px) {
    .appointment {
        height: auto;
        padding: 40px 0;
    }

    .form-box {
        width: 90%;
        padding: 30px 25px;
    }

    .form-box h2 {
        font-size: 30px;
        margin-bottom: 25px;
    }

    .row {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .form-box {
        width: 95%;
        padding: 25px 20px;
    }

    .form-box h2 {
        font-size: 26px;
    }

    .row input,
    .row select {
        padding: 12px 12px;
    }
}