@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Playfair+Display:wght@500;600&display=swap');

:root {
    --font-body: 'Manrope', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --color-rose: #B76E79;
    --color-sage: #6F7D6A;
    --color-text: #2B2B2B;
    --color-muted: #555;
    --color-cream: #F7F3EE;
    --color-border: #d8d1c8;
}

html {
    scroll-behavior: smooth;
}

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

html,
body {
    min-height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--color-text);
    background: var(--color-cream);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.site-main {
    flex: 1;
}

.footer {
    margin-top: auto;
}

body.menu-open {
    overflow: hidden;
}

button,
input,
select,
textarea {
    font: inherit;
}

/* NAVBAR */

.navbar {
    width: 100%;
    padding: 25px 8%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    position: fixed;
    top: 0;

    z-index: 1000;

    backdrop-filter: blur(10px);

    background: rgba(247,243,238,0.9);
}

.logo a {
    text-decoration: none;

    font-size: 2rem;

    font-family: var(--font-heading);

    color: #B76E79;

    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    gap: 40px;

    list-style: none;
}

.nav-links a {
    text-decoration: none;

    color: #2B2B2B;

    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #B76E79;
}

.active-link {
    color: #B76E79 !important;
}

.hamburger {
    display: none;

    font-size: 2rem;

    cursor: pointer;
}

/* HERO */

.hero {
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 0 20px;

    background:
        linear-gradient(rgba(247,243,238,0.6),
        rgba(247,243,238,0.6)),
        url("../images/hero.fe8eaf8a7826.jpg");

    background-size: cover;
    background-position: center 19%;
}

.hero-content h1 {
    font-size: 4rem;

    letter-spacing: 8px;

    font-family: var(--font-heading);

    color: #6F7D6A;

    margin-bottom: 40px;

}

.hero-content h2 {
    font-size: 2.5rem;

    font-family: var(--font-heading);

    color: #6F7D6A;

    margin-bottom: 20px;
}

.hero-content p {
    text-align: center;
    font-size: 1.2rem;

    line-height: 1.6;

    margin-bottom: 40px;
    margin-top: 30px;

}

.hero-btn {
    padding: 15px 35px;

    background: #B76E79;

    color: white;

    text-decoration: none;

    border-radius: 50px;

    display: inline-block;

    transition: 0.3s ease;
}

.hero-btn:hover {
    opacity: 0.9;
}

.hero .hero-btn {
    margin-top: 16px;
}

/* SECTIONS */

.section {
    padding: 120px 10%;
}

.section-title {
    text-align: center;

    font-size: 3rem;

    margin-bottom: 60px;

    color: #6F7D6A;

    font-family: var(--font-heading);
}

/* ABOUT */

.about {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;

    gap: 40px;

    align-items: center;
}

.about-text h2 {
    font-size: 3rem;

    margin-bottom: 30px;

    color: #6F7D6A;

    font-family: var(--font-heading);
}

.about-text p {
    line-height: 1.8;

    margin-bottom: 20px;
}

.about-image {
    max-width: 380px;

    margin-left: 0;
    margin-right: 80px;
}

.about-image img {
    width: 100%;
    height: 520px;

    border-radius: 28px;

    object-fit: cover;
    object-position: center top;

    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* ABOUT MOBILE */

@media (max-width: 900px) {

    .about {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .about-image {
        max-width: 360px;

        margin: 0 auto;
    }

    .about-image img {
        height: 460px;
    }
}

@media (max-width: 500px) {

    .about-image {
        max-width: 300px;
    }

    .about-image img {
        height: 390px;
    }
}

/* GALLERY */

.gallery {
    padding: 100px 0;
}

.gallery-grid {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.gallery-card {
    position: relative;

    overflow: hidden;

    border-radius: 28px;

    background: white;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.gallery-card img {
    width: 100%;
    height: 280px;

    display: block;

    object-fit: cover;
    object-position: center;

    cursor: pointer;

    transition:
        transform 0.5s ease,
        filter 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.04);
}

.gallery-card::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.15),
            transparent
        );

    opacity: 0;

    pointer-events: none;

    transition: opacity 0.3s ease;
}

.gallery-card:hover::after {
    opacity: 1;
}

.lightbox {
    display: none;

    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.9);

    z-index: 9999;

    justify-content: center;
    align-items: center;

    cursor: pointer;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;

    border-radius: 12px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1000px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-card img {
        height: 300px;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        padding: 0 7%;
    }

    .gallery-card img {
        height: 320px;
    }
}


/* REFERENCES */

#references {
    text-align: center;
}

#references .reference-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
    text-align: left;
}

#references .reference-more {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 45px;
}

.reference-stars {
    color: #B76E79;

    font-size: 1.25rem;
    letter-spacing: 3px;

    margin-bottom: 10px;
}

.review-service {
    display: inline-block;

    margin-bottom: 18px;

    padding: 7px 14px;

    border-radius: 999px;

    background: #F7F3EE;

    color: #6F7D6A;

    font-size: 0.9rem;
    font-weight: 600;
}

.reference-card p {
    margin-bottom: 22px;

    color: #2B2B2B;
}

.reference-card span {
    display: block;

    margin-top: 18px;

    color: #B76E79;

    font-weight: 500;
}

@media (max-width: 900px) {
    .reference-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 600px) {
    #references {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .reference-card {
        width: 100%;
        max-width: 340px;

        margin: 0 auto;

        padding: 28px 24px;

        text-align: center;
    }

    .reference-more {
        margin-top: 35px;
    }
}


/* CONTACT */

.contact {
    text-align: center;
}

.contact h2 {
    font-size: 3rem;

    margin-bottom: 30px;

    color: #6F7D6A;

    font-family: var(--font-heading);
}

/* FOOTER */

.footer {
    padding: 40px 0;

    text-align: center;

    background: #E7E2D8;
}

/* PAGE HEADER */

.page-header {
    min-height: 220px;
    height: auto;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #E7E2D8;

    margin-top: 90px;
    padding: 60px 20px;
}

.page-header h1 {
    font-size: 3rem;

    color: #6F7D6A;

    font-family: var(--font-heading);
}


/* SERVICES */

.service-category {
    margin-bottom: 100px;
}

.service-category h2 {
    margin-bottom: 40px;

    font-size: 2.2rem;

    color: #6F7D6A;

    font-family: var(--font-heading);
}

.luxury-card {
    padding-bottom: 26px;
    margin-bottom: 26px;
    border-bottom: 2px solid rgba(183, 110, 121, 0.18);
}

.luxury-card p {
    margin: 20px 0;

    line-height: 1.8;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
    color: #B76E79;

    font-weight: 600;
}




/* PRICING */

.pricing {
    max-width: 900px;

    margin: auto;
}

.price-item {
    display: flex;
    justify-content: space-between;

    padding: 30px 0;

    border-bottom: 2px solid rgba(183, 110, 121, 0.18);
}

.price-item h3 {
    margin-bottom: 6px;
}

.price-item .service-meta,
.price-item .service-duration {
    margin-top: 8px;
}

/* CTA */

.contact-cta {
    text-align: center;

    background: #E7E2D8;

    padding: 80px 40px;

    border-radius: 30px;
}

.contact-cta h2 {
    margin-bottom: 20px;

    font-size: 3rem;

    color: #6F7D6A;

    font-family: var(--font-heading);
}

.contact-cta p {
    margin-bottom: 40px;
}

/* ANIMATION */

.fade-in {
    opacity: 0;

    transform: translateY(30px);

    transition: all 1s ease;
}

.fade-in.show {
    opacity: 1;

    transform: translateY(0);
}


/* BOOKING */

.hidden {
    display: none !important;
}

.booking-success-section {
    padding-top: 70px;
}

.booking-section {
    max-width: 900px;
    margin: auto;
}

.booking-box {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.04);
}

.booking-box h2 {
    font-size: 2.5rem;
    color: #6F7D6A;
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.booking-note {
    line-height: 1.8;
    margin-bottom: 40px;
}

.booking-filter,
.booking-form {
    display: grid;
    gap: 18px;
    margin-bottom: 40px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.booking-filter label,
.booking-form label {
    font-weight: 500;
    color: #6F7D6A;
}

.booking-filter input,
.booking-filter select,
.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d8d1c8;
    border-radius: 14px;
    background: #F7F3EE;
    font-family: var(--font-body);
}

.booking-filter button {
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    background: #6F7D6A;
    color: white;
    cursor: pointer;
}

.errorlist {
    list-style: none;
    color: #B76E79;
    font-size: 0.9rem;
}

.booking-form button[type="submit"] {
    display: block;
    margin: 2rem auto 0;
    padding: 15px 36px;
}

@media (max-width: 600px) {
    .booking-box {
        padding: 30px 22px;
        border-radius: 22px;
    }

    .booking-box h2 {
        font-size: 2rem;
    }
}

@media (max-width: 420px) {
    .booking-box {
        padding: 26px 18px;
    }
}

@media (max-width: 360px) {
    .booking-box {
        padding: 24px 14px;
    }
}

/* CALENDAR */

.hidden-date-input {
    display: none;
}

.service-info {
    display: block;
    padding: 18px 22px;
    background: #F7F3EE;
    border: 1px solid #d8d1c8;
    border-radius: 18px;
    line-height: 1.7;
    color: #6F7D6A;
}

.calendar-box {
    background: #F7F3EE;
    border-radius: 24px;
    padding: 25px;
    border: 1px solid #d8d1c8;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.calendar-header h3 {
    font-family: var(--font-heading);
    color: #6F7D6A;
    font-size: 2rem;
}

.calendar-header button {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: white;
    color: #B76E79;
    font-size: 2rem;
    cursor: pointer;
}

.calendar-weekdays,
.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.calendar-weekdays span {
    text-align: center;
    color: #6F7D6A;
    font-weight: 500;
    font-size: 0.9rem;
}

.calendar-day {
    aspect-ratio: 1 / 1;
    border: none;
    border-radius: 16px;
    background: white;
    color: #2B2B2B;
    cursor: pointer;
    font-family: var(--font-body);
    transition: 0.25s ease;
}

.calendar-day:hover {
    color: #B76E79;
    transform: translateY(-2px);
}

.calendar-day.selected {
    background: #B76E79;
    color: white;
}

.calendar-day.disabled {
    background: #e0d8cf;
    color: #aaa;
    cursor: not-allowed;
}

.calendar-day.empty {
    background: transparent;
    cursor: default;
}

#id_selected_time {
    display: none;
}

.time-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.time-button {
    padding: 16px 20px;
    border: 1px solid #d8d1c8;
    border-radius: 18px;
    background: #F7F3EE;
    color: #2B2B2B;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: 0.25s ease;
}

.time-button:hover {
    border-color: #B76E79;
    color: #B76E79;
    transform: translateY(-2px);
}

.time-button.selected {
    background: #B76E79;
    color: white;
    border-color: #B76E79;
}

.booking-success-box {
    max-width: 750px;
    margin: auto;

    background: white;

    padding: 20px 60px 40px;

    border-radius: 30px;

    text-align: center;

    box-shadow: 0 5px 25px rgba(0,0,0,0.04);
}

.booking-success-box h2 {
    font-size: 2.2rem;

    color: #6F7D6A;

    font-family: var(--font-heading);

    margin-bottom: 16px;
}

.booking-success-note {
    margin-top: 0;
    margin-bottom: 40px;

    color: #6F7D6A;

    font-size: 1.05rem;

    font-weight: 500;
}

.success-summary {
    margin: 30px 0;
    display: grid;
    gap: 14px;
    text-align: left;
}

.success-summary div {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    border-bottom: 1px solid #d8d1c8;

    padding-bottom: 10px;
}

.success-summary strong {
    color: #6F7D6A;
}

.success-summary span {
    color: #B76E79;
}

@media (max-width: 700px) {
    .calendar-box {
        padding: 18px;
    }

    .calendar-header h3 {
        font-size: 1.5rem;
    }

    .calendar-weekdays,
    .calendar-days {
        gap: 6px;
    }

    .calendar-day {
        border-radius: 12px;
        font-size: 0.9rem;
    }

    .time-buttons {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-success-box {
        padding: 35px 25px;
    }

    .booking-success-box h2 {
        font-size: 2.2rem;
    }

    .success-summary div {
        flex-direction: column;
        gap: 5px;
    }
}

/* PRICING CATEGORIES */

.pricing-category {
    margin-bottom: 80px;
}

.pricing-category h2 {
    margin-bottom: 30px;
    font-size: 2.3rem;
    color: #6F7D6A;
    font-family: var(--font-heading);
}

.price-item span {
    color: #B76E79;
    font-weight: 600;
    white-space: nowrap;
}

/* ===================================
   INSTAGRAM SECTION
=================================== */

.instagram-section {
    padding: 100px 8%;
}

.instagram-card {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 70px;
    align-items: center;

    padding: 55px 65px;

    border: 1px solid rgba(183, 110, 121, 0.18);
    border-radius: 32px;

    background: rgba(255, 255, 255, 0.35);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
}

.instagram-text {
    max-width: 560px;
}

.instagram-text h2 {
    margin-bottom: 25px;

    color: #6F7D6A;

    font-size: 3.2rem;
    line-height: 1.15;

    font-family: var(--font-heading);
}

.instagram-text p {
    max-width: 500px;

    margin-bottom: 35px;

    color: #555;

    font-size: 1.05rem;
    line-height: 1.8;
}

.instagram-button-wrapper {
    display: flex;
    justify-content: center;

    max-width: 500px;
}

.instagram-btn,
.instagram-btn:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 16px 34px;

    background: #B76E79;
    color: white;

    border-radius: 999px;

    text-decoration: none;

    font-weight: 600;
    font-size: 1rem;

    box-shadow: 0 10px 25px rgba(183, 110, 121, 0.18);

    transition: 0.3s ease;
}

.instagram-btn:hover {
    transform: translateY(-3px);

    background: #a85f6a;

    color: white;

    box-shadow: 0 14px 30px rgba(183, 110, 121, 0.28);
}

.instagram-image {
    max-width: 420px;
    margin-left: auto;
}

.instagram-image img {
    width: 100%;

    display: block;

    border-radius: 26px;

    object-fit: cover;
    object-position: center;

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);

    transition: 0.35s ease;
}

.instagram-image:hover img {
    transform: translateY(-6px);
}


/* ==========================
   TABLET
========================== */

@media (max-width: 900px) {

    .navbar {
        padding: 18px 6%;
    }

    .logo a {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }

    .hamburger {
        display: block;
        z-index: 2000;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;

        width: 75%;
        height: 100vh;

        background: #F7F3EE;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        gap: 35px;

        transition: 0.4s ease;

        box-shadow: -10px 0 30px rgba(0,0,0,0.06);
    }

    .nav-links.active {
        right: 0;
    }

    .about {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-image {
        margin: 0 auto;
    }

    .reference-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .instagram-card {
        grid-template-columns: 1fr;

        gap: 40px;

        padding: 45px 30px;

        text-align: center;
    }

    .instagram-text {
        max-width: 100%;

        text-align: center;
    }

    .instagram-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .instagram-button-wrapper {
        justify-content: center;
        max-width: 100%;
    }

    .instagram-image {
        margin: 0 auto;
    }
}


/* ==========================
   MOBILE
========================== */

@media (max-width: 600px) {

    .logo a {
        font-size: 1.65rem;
    }

    .hero {
        min-height: 100vh;

        padding: 140px 22px 80px;

        background-position: center top;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 1.7rem;

        line-height: 1.2;

        letter-spacing: 2px;

        margin-bottom: 18px;
    }

    .hero-content h2 {
        font-size: 1.35rem;

        line-height: 1.2;

        margin-bottom: 16px;
    }

    .hero-content p {
        max-width: 320px;

        margin: 0 auto 28px;

        font-size: 0.95rem;

        line-height: 1.65;
    }

    .hero-btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .reference-card {
        max-width: 320px;

        margin: 0 auto;

        text-align: center;
    }

    .instagram-section {
        padding: 70px 6%;
    }

    .instagram-card {
        max-width: 340px;

        margin: 0 auto;

        display: flex;
        flex-direction: column;
        align-items: center;

        padding: 34px 22px;

        border-radius: 26px;

        text-align: center;

        overflow: hidden;
    }

    .instagram-text {
        width: 100%;
        max-width: 100%;

        text-align: center;
    }

    .instagram-text h2 {
        max-width: 280px;

        margin: 0 auto 20px;

        font-size: 1.8rem;
        line-height: 1.15;

        text-align: center;
    }

    .instagram-text p {
        max-width: 280px;

        margin: 0 auto 28px;

        font-size: 0.95rem;
        line-height: 1.65;

        text-align: center;
    }

    .instagram-button-wrapper {
        width: 100%;

        display: flex;
        justify-content: center;

        margin-bottom: 28px;
    }

    .instagram-btn,
    .instagram-btn:visited,
    .instagram-btn:hover,
    .instagram-btn:active {
        width: 100%;
        max-width: 270px;

        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;

        padding: 14px 18px;

        background: #B76E79;
        color: white;

        border-radius: 999px;

        text-decoration: none;

        font-weight: 600;
        font-size: 0.9rem;
    }

    .instagram-image {
        width: 100%;
        max-width: 280px;

        margin: 0 auto;
    }

    .instagram-image img {
        width: 100%;
        max-height: 280px;

        display: block;

        border-radius: 22px;

        object-fit: cover;
        object-position: center;
    }
}


/* ==========================
   SMALL MOBILE
========================== */

@media (max-width: 420px) {

    .logo a {
        font-size: 1.55rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .hero-content h2 {
        font-size: 1.2rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .instagram-card {
        max-width: 310px;
    }

    .instagram-text h2 {
        font-size: 1.55rem;
    }
}

/* ===================================
   DASHBOARD
=================================== */

.dashboard-header {
    background: #EAE5DD;

    min-height: 180px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 130px 20px 50px;
}

.dashboard-header h1 {
    font-size: 3.2rem;

    color: #6F7D6A;

    font-family: var(--font-heading);
}

/* DASHBOARD BTN */

.dashboard-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 20px;

    border-radius: 24px;

    text-decoration: none;

    font-weight: 600;
    font-size: 1rem;

    transition: all 0.25s ease;

}

.dashboard-btn.cancel {
    background: #6F7D6A;
    color: white;
}

.dashboard-btn:hover {
    background: #5f6d5a;
    transform: translateY(-3px);
}

/* CONTAINER */

.dashboard-section {
    max-width: 1200px;

    margin: 60px auto;

    padding: 0 20px;
}

/* TOP SUMMARY */

.dashboard-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));

    gap: 24px;

    margin-bottom: 70px;
}

.dashboard-subtitle {
    margin-top: 70px;
}

.dashboard-stat {
    background: white;

    border-radius: 24px;

    padding: 28px 32px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.dashboard-stat span {
    display: block;

    color: #6F7D6A;

    font-weight: 600;

    margin-bottom: 10px;
}

.dashboard-stat strong {
    font-size: 2.3rem;

    color: #B76E79;

    font-family: var(--font-heading);
}

.dashboard-action-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    text-decoration: none;

    background: #6F7D6A;
    color: white;

    border-radius: 24px;

    font-weight: 600;
    font-size: 1rem;

    transition: 0.3s ease;
}

.dashboard-action-card:hover {
    background: #5f6d5a;

    transform: translateY(-3px);
}

.dashboard-action-card span {
    font-size: 1.4rem;
}

/* SECTION HEADINGS */

.dashboard-section h2 {
    margin-bottom: 25px;

    color: #6F7D6A;

    font-size: 2.4rem;

    font-family: var(--font-heading);
}

/* RESERVATION CARD */

.appointment-card {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 30px;

    background: white;

    padding: 30px;

    border-radius: 24px;

    margin-bottom: 25px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.appointment-info h3 {
    color: #B76E79;

    margin-bottom: 12px;
}

.appointment-info p {
    margin-bottom: 8px;
}

/* BUTTONS */

.appointment-actions {
    display: flex;
    gap: 16px;
}

.btn-confirm,
.btn-cancel {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 120px;
    height: 54px;

    border-radius: 999px;

    text-decoration: none;

    color: white;

    font-weight: 600;

    transition: 0.3s ease;
}

.btn-confirm {
    background: #6F7D6A;
}

.btn-confirm:hover {
    background: #5f6d5a;
}

.btn-cancel {
    background: #B76E79;
}

.btn-cancel:hover {
    background: #a85f6a;
}

/* EMPTY MESSAGE */

.empty-message {
    color: #666;
}

/* MOBILE */

@media (max-width: 800px) {

    .dashboard-header h1 {
        font-size: 2.4rem;
    }

    .dashboard-summary {
        grid-template-columns: 1fr;
    }

    .dashboard-stat,
    .dashboard-action-card {
        text-align: center;
    }

    .appointment-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .appointment-actions {
        width: 100%;

        flex-direction: column;
    }

    .btn-confirm,
    .btn-cancel {
        width: 100%;
    }

    .dashboard-section h2 {
        font-size: 2rem;
    }
}

/* CLIENT DETAIL */

.client-card {
    background: white;
    padding: 35px;
    border-radius: 24px;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.client-card h2 {
    color: #6F7D6A;
    font-size: 2.4rem;
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.client-card p {
    margin-bottom: 10px;
}

.client-notes-form {
    margin-bottom: 70px;
}

.small-action {
    display: inline-flex;
    width: fit-content;
    padding: 14px 24px;
    margin-bottom: 35px;
}

.appointment-info h3 a {
    color: #B76E79;
    text-decoration: none;
}

.appointment-info h3 a:hover {
    text-decoration: underline;
}

/* CLIENT LIST */

.client-search-form {
    display: flex;
    gap: 15px;

    margin: 35px 0 40px;
}

.client-search-form input {
    flex: 1;

    padding: 15px 18px;

    border: 1px solid #d8d1c8;
    border-radius: 16px;

    background: white;

    font-family: var(--font-body);
}

.client-list {
    display: grid;
    gap: 18px;
}

.client-list-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;

    background: white;

    padding: 28px 32px;

    border-radius: 24px;

    text-decoration: none;

    box-shadow: 0 10px 25px rgba(0,0,0,0.04);

    transition: 0.25s ease;
}

.client-list-card:hover {
    transform: translateY(-2px);
}

.client-list-card h3 {
    margin-bottom: 10px;

    color: #B76E79;
}

.client-list-card p {
    margin-bottom: 6px;

    color: #555;
}

.client-list-card span {
    color: #6F7D6A;

    font-weight: 600;

    white-space: nowrap;
}

@media (max-width: 800px) {

    .dashboard-summary {
        grid-template-columns: 1fr;
    }

    .client-search-form {
        flex-direction: column;
    }

    .client-list-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* CLIENT STATS */

.client-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);

    gap: 18px;

    margin-bottom: 45px;
}

.client-stat {
    background: white;

    padding: 24px 22px;

    border-radius: 22px;

    box-shadow: 0 8px 22px rgba(0,0,0,0.04);
}

.client-stat span {
    display: block;

    margin-bottom: 10px;

    color: #6F7D6A;

    font-weight: 600;

    font-size: 0.9rem;
}

.client-stat strong {
    color: #B76E79;

    font-size: 1.5rem;

    font-family: var(--font-heading);
}

@media (max-width: 900px) {

    .client-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {

    .client-stats {
        grid-template-columns: 1fr;
    }
}

/* CANCELLED LIST */

.cancelled-list {
    display: grid;
    gap: 12px;
}

.cancelled-list-item {
    display: grid;
    grid-template-columns: 170px 1fr 1.4fr;
    gap: 20px;
    align-items: center;

    background: white;

    padding: 18px 22px;

    border-radius: 18px;

    box-shadow: 0 8px 22px rgba(0,0,0,0.03);

    color: #666;
}

.cancelled-list-item strong {
    color: #B76E79;
}

.cancelled-list-item a {
    color: #B76E79;
    text-decoration: none;
}

.cancelled-list-item a:hover {
    text-decoration: underline;
}

@media (max-width: 700px) {

    .cancelled-list-item {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

/* ADMIN CALENDAR */

.admin-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin: 45px 0 35px;
}

.admin-calendar-header h2 {
    color: #6F7D6A;

    font-size: 2.6rem;

    font-family: var(--font-heading);
}

.admin-calendar-header a {
    color: #B76E79;

    text-decoration: none;

    font-weight: 600;
}

.admin-calendar {
    display: grid;
    gap: 10px;
}

.admin-calendar-weekdays,
.admin-calendar-week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);

    gap: 10px;
}

.admin-calendar-weekdays span {
    text-align: center;

    color: #6F7D6A;

    font-weight: 600;
}

.admin-calendar-day {
    display: block;

    height: 190px;

    overflow-y: auto;

    background: white;

    padding: 14px;

    border-radius: 20px;

    box-shadow: 0 8px 22px rgba(0,0,0,0.03);

    text-decoration: none;
    color: inherit;

    transition: 0.25s ease;

    border: 1.5px solid #ebe6df;
}

.admin-calendar-day:hover {
    transform: translateY(-2px);

    box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}

.calendar-day-number {
    display: block;

    margin-bottom: 10px;

    color: #6F7D6A;

    font-size: 1.2rem;
}

.admin-calendar-day.today {
    border: 2px solid #B76E79;
}

.admin-calendar-day.empty {
    background: transparent;

    box-shadow: none;
}

.admin-calendar-day strong {
    display: block;

    margin-bottom: 10px;

    color: #6F7D6A;
}

.calendar-event {
    margin-bottom: 8px;

    padding: 8px 10px;

    border-radius: 12px;

    font-size: 0.85rem;

    background: #F7F3EE;
}

.calendar-event span {
    display: block;

    font-weight: 600;
}

.calendar-event a {
    color: #2B2B2B;

    text-decoration: none;
}

.calendar-event a:hover {
    text-decoration: underline;
}

.calendar-event.pending {
    border-left: 4px solid #d6a84f;
}

.calendar-event.confirmed {
    border-left: 4px solid #6F7D6A;
}

.calendar-event.cancelled {
    opacity: 0.45;

    text-decoration: line-through;
}

.calendar-block {
    margin-bottom: 8px;

    padding: 8px 10px;

    border-radius: 12px;

    font-size: 0.85rem;

    background: #B76E79;
    color: white;
}

@media (max-width: 900px) {

    .admin-calendar-weekdays {
        display: none;
    }

    .admin-calendar-week {
        grid-template-columns: 1fr;
    }

    .admin-calendar-day.empty {
        display: none;
    }

    .admin-calendar-day {
        height: auto;
        min-height: auto;
        overflow-y: visible;
    }

    .admin-calendar-header {
        flex-direction: column;

        gap: 18px;

        text-align: center;
    }

    .admin-calendar-header h2 {
        font-size: 2rem;
    }
}

/* DAY ACTIONS */

.day-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;

    margin-bottom: 35px;
}

.close-day-action {
    background: #B76E79;
}

.close-day-action:hover {
    background: #a85f6a;
}

@media (max-width: 600px) {

    .day-actions {
        flex-direction: column;
    }

    .day-actions .dashboard-action-card {
        width: 100%;
        text-align: center;
    }
}

/* PAST DAYS IN ADMIN CALENDAR */

.admin-calendar-day.past-day {
    opacity: 0.45;
    background: #eee8df;
}

.admin-calendar-day.past-day:hover {
    transform: none;
    box-shadow: 0 8px 22px rgba(0,0,0,0.03);
}

/* FINAL ADMIN CALENDAR PAST DAY FIX */

.admin-calendar a.admin-calendar-day.past-day {
    opacity: 1 !important;
    background: #ded8cf !important;
    color: #999 !important;
    filter: grayscale(1);
}

.admin-calendar a.admin-calendar-day.past-day:hover {
    transform: none !important;
    box-shadow: 0 8px 22px rgba(0,0,0,0.03) !important;
}

.admin-calendar a.admin-calendar-day.past-day .calendar-day-number {
    color: #999 !important;
}

/* MONTHLY PICK CALENDAR */

.calendar-jump-form {
    display: flex;
    gap: 10px;
    align-items: center;
}

.calendar-jump-form select,
.calendar-jump-form button {
    padding: 10px 14px;

    border: 1px solid #ebe6df;
    border-radius: 999px;

    background: white;

    font-family: var(--font-body);
    font-weight: 600;

    color: #6F7D6A;
}

.calendar-jump-form button {
    background: #6F7D6A;
    color: white;

    cursor: pointer;
}

@media (max-width: 700px) {

    .calendar-jump-form {
        flex-direction: column;
        width: 100%;
    }

    .calendar-jump-form select,
    .calendar-jump-form button {
        width: 100%;
    }
}


.booking-info-message {
    width: 100%;
    padding: 20px;
    border-radius: 18px;
    background: #F7F3EE;
    line-height: 1.7;
    color: #2B2B2B;
    box-sizing: border-box;
}

.booking-info-message strong {
    display: block;
    margin-bottom: 12px;
    color: #B76E79;
    font-size: 1.05rem;
}

/* MESSAGES */

.messages {
    max-width: 1100px;
    margin: 90px auto 20px;
    padding: 0 20px;
    position: relative;
    z-index: 9999;
}

.message {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 12px;
    font-weight: 600;
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.message.warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}


/* REVIEWS FORM BOX */

.review-form-box {
    max-width: 760px;
}

.review-appointment-info {
    display: inline-block;

    margin: 15px 0 25px;

    padding: 10px 18px;

    border-radius: 999px;

    background: #F7F3EE;

    color: #6F7D6A;

    font-weight: 600;
}

.review-form {
    max-width: 560px;

    margin: 0 auto;

    display: grid;
    gap: 18px;

    text-align: left;
}

.review-form .form-group {
    display: grid;
    gap: 8px;
}

.review-form label {
    display: block;

    margin-bottom: 4px;

    color: #6F7D6A;

    font-weight: 600;
}

.review-form input,
.review-form select,
.review-form textarea {
    width: 100%;

    padding: 14px 16px;

    border: 1px solid #d8d1c8;
    border-radius: 14px;

    background: #F7F3EE;

    font-family: var(--font-body);
}

.review-form textarea {
    resize: vertical;
    min-height: 130px;
}

.review-form .hero-btn {
    justify-self: center;

    margin-top: 8px;

    border: none;

    cursor: pointer;
}


/* FINAL REFERENCE MOBILE FIX */

@media (max-width: 600px) {
    #references .reference-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    #references .reference-card {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
        text-align: center;
    }

    #references .reference-more {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 35px;
    }
}
