/* =========================================================
   LE'S NAILS SALON
   MAIN SITE STYLESHEET
   ========================================================= */


/* =========================================================
   COLORS
   ========================================================= */

:root {
    --salon-pink: #bd1970;
    --salon-pink-dark: #951054;
    --salon-pink-light: #fff4f9;
    --salon-black: #1f1f1f;
    --salon-charcoal: #333333;
    --salon-gray: #6f6f6f;
    --salon-border: #e7e4e6;
    --salon-background: #ffffff;
    --salon-soft-background: #faf8f9;
}


/* =========================================================
   BASE
   ========================================================= */

html {
    font-size: 16px;
    min-height: 100%;
    scroll-behavior: smooth;
}


body {
    min-height: 100vh;
    margin: 0;
    background-color: #ffffff;
    color: var(--salon-charcoal);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}


a {
    color: var(--salon-pink);
    text-decoration: none;
}


    a:hover {
        color: var(--salon-pink-dark);
    }


img {
    display: block;
    max-width: 100%;
}


button,
input,
select,
textarea {
    font: inherit;
}


.site-main {
    min-height: 70vh;
}


.internal-page-container {
    padding-top: 42px;
    padding-bottom: 65px;
}


/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
    border-bottom: 1px solid var(--salon-border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.035);
}


.salon-navbar {
    min-height: 88px;
    padding-top: 9px;
    padding-bottom: 9px;
    background-color: #ffffff;
}


/* =========================================================
   LOGO
   ========================================================= */

.salon-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 28px;
}


.salon-logo {
    width: auto;
    height: 72px;
    object-fit: contain;
}


/* =========================================================
   CENTER NAVIGATION
   ========================================================= */

.salon-navigation {
    display: flex;
    align-items: center;
    gap: 5px;
}


    .salon-navigation .nav-link {
        padding: 10px 12px !important;
        color: #383438 !important;
        font-size: 0.91rem;
        font-weight: 650;
        border-radius: 5px;
        transition: color 0.15s ease, background-color 0.15s ease;
    }


        .salon-navigation .nav-link:hover {
            color: var(--salon-pink) !important;
            background-color: var(--salon-pink-light);
        }


/* =========================================================
   RIGHT NAVIGATION
   ========================================================= */

.salon-nav-actions {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-left: 20px;
}


.salon-dashboard-link {
    color: var(--salon-charcoal);
    font-size: 0.86rem;
    font-weight: 650;
    text-decoration: none;
}


    .salon-dashboard-link:hover {
        color: var(--salon-pink);
    }


.nav-logout-form {
    margin: 0;
}


.salon-staff-button {
    min-height: 39px;
    padding: 7px 14px;
    border: 1px solid #d8d2d5;
    border-radius: 5px;
    background-color: #ffffff;
    color: #4c474a;
    font-size: 0.84rem;
    font-weight: 650;
    cursor: pointer;
    transition: border-color 0.15s ease, background-color 0.15s ease;
}


    .salon-staff-button:hover {
        border-color: #bdb4b9;
        background-color: #f8f5f7;
    }


.salon-book-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 41px;
    padding: 8px 18px;
    border-radius: 5px;
    background-color: var(--salon-pink);
    color: #ffffff;
    font-size: 0.87rem;
    font-weight: 700;
    text-decoration: none;
}


    .salon-book-button:hover {
        background-color: var(--salon-pink-dark);
        color: #ffffff;
    }


/* =========================================================
   EYEBROWS / HEADINGS
   ========================================================= */

.section-eyebrow,
.hero-eyebrow {
    color: var(--salon-pink);
    font-size: 0.75rem;
    font-weight: 750;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}


    .section-eyebrow.light {
        color: #ffffff;
    }


.section-heading {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}


    .section-heading h2 {
        margin: 7px 0 12px;
        color: var(--salon-charcoal);
        font-family: Georgia, "Times New Roman", serif;
        font-size: clamp( 2rem, 4vw, 3rem );
        font-weight: 500;
        line-height: 1.15;
    }


    .section-heading p {
        margin: 0;
        color: var(--salon-gray);
        font-size: 1rem;
        line-height: 1.7;
    }


/* =========================================================
   GLOBAL SALON BUTTONS
   ========================================================= */

.salon-primary-button,
.salon-white-button,
.salon-outline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 21px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}


.salon-primary-button {
    border: 1px solid var(--salon-pink);
    background-color: var(--salon-pink);
    color: #ffffff;
}


    .salon-primary-button:hover {
        border-color: var(--salon-pink-dark);
        background-color: var(--salon-pink-dark);
        color: #ffffff;
    }


.salon-outline-button {
    border: 1px solid var(--salon-pink);
    background-color: transparent;
    color: var(--salon-pink);
}


    .salon-outline-button:hover {
        background-color: var(--salon-pink);
        color: #ffffff;
    }


    .salon-outline-button.dark {
        border-color: #3a3538;
        color: #3a3538;
    }


        .salon-outline-button.dark:hover {
            background-color: #3a3538;
            color: #ffffff;
        }


.salon-white-button {
    border: 1px solid #ffffff;
    background-color: #ffffff;
    color: var(--salon-pink);
}


    .salon-white-button:hover {
        background-color: transparent;
        color: #ffffff;
    }


/* =========================================================
   HOME - HERO
   ========================================================= */

.salon-hero {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
    background-color: #f5f2f3;
}


.salon-hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}


    .salon-hero-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 42%;
    }


.salon-hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background: linear-gradient( 90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.93) 30%, rgba(255,255,255,0.72) 47%, rgba(255,255,255,0.18) 72%, rgba(255,255,255,0.03) 100% );
}


    .salon-hero-overlay > .container {
        width: 100%;
    }


.salon-hero-content {
    width: 100%;
    max-width: 610px;
    padding: 40px 0;
}


    .salon-hero-content h1 {
        margin: 10px 0 20px;
        color: var(--salon-charcoal);
        font-family: Georgia, "Times New Roman", serif;
        font-size: clamp( 3.4rem, 6vw, 5.3rem );
        font-weight: 500;
        line-height: 1.02;
        letter-spacing: -0.025em;
    }


    .salon-hero-content > p {
        max-width: 540px;
        margin: 0 0 29px;
        color: #555055;
        font-size: 1.08rem;
        line-height: 1.72;
    }


.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


/* =========================================================
   HOME - WELCOME
   ========================================================= */

.salon-welcome {
    padding: 90px 0;
}


.welcome-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
    align-items: center;
    gap: 75px;
}


.welcome-content {
    max-width: 560px;
}


    .welcome-content h2 {
        margin: 7px 0 21px;
        color: var(--salon-charcoal);
        font-family: Georgia, "Times New Roman", serif;
        font-size: clamp( 2.35rem, 4vw, 3.5rem );
        font-weight: 500;
        line-height: 1.12;
    }


    .welcome-content p {
        margin: 0 0 16px;
        color: var(--salon-gray);
        font-size: 0.98rem;
        line-height: 1.8;
    }


.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: var(--salon-pink);
    font-weight: 700;
    text-decoration: none;
}


    .text-link:hover {
        color: var(--salon-pink-dark);
    }


.welcome-image {
    overflow: hidden;
    min-height: 480px;
    border-radius: 5px;
}


    .welcome-image img {
        width: 100%;
        height: 480px;
        object-fit: cover;
    }


/* =========================================================
   HOME - SERVICES
   ========================================================= */

.salon-services {
    padding: 88px 0 95px;
    background-color: var(--salon-soft-background);
}


.service-photo-grid {
    display: grid;
    grid-template-columns: repeat( 3, minmax(0, 1fr) );
    gap: 25px;
}


.service-photo-card {
    overflow: hidden;
    border: 1px solid var(--salon-border);
    border-radius: 7px;
    background-color: #ffffff;
    box-shadow: 0 5px 22px rgba(0,0,0,0.04);
}


.service-photo {
    height: 280px;
    overflow: hidden;
}


    .service-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.35s ease;
    }


.service-photo-card:hover .service-photo img {
    transform: scale(1.035);
}


.service-card-content {
    padding: 25px 25px 28px;
}


    .service-card-content h3 {
        margin: 0 0 8px;
        color: var(--salon-charcoal);
        font-family: Georgia, "Times New Roman", serif;
        font-size: 1.45rem;
        font-weight: 500;
    }


    .service-card-content p {
        min-height: 48px;
        margin: 0 0 17px;
        color: var(--salon-gray);
        font-size: 0.91rem;
        line-height: 1.65;
    }


    .service-card-content a {
        color: var(--salon-pink);
        font-size: 0.87rem;
        font-weight: 700;
    }


.services-action {
    margin-top: 36px;
    text-align: center;
}


/* =========================================================
   HOME - BOOKING PROMO
   ========================================================= */

.booking-promo {
    padding: 76px 0;
    background-color: var(--salon-pink);
    color: #ffffff;
}


.booking-promo-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    align-items: center;
    gap: 75px;
}


.booking-promo h2 {
    max-width: 660px;
    margin: 8px 0 17px;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp( 2.4rem, 4vw, 3.7rem );
    font-weight: 500;
    line-height: 1.12;
}


.booking-promo p {
    max-width: 640px;
    margin: 0;
    color: rgba( 255, 255, 255, 0.86 );
    font-size: 1rem;
    line-height: 1.75;
}


.booking-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}


.booking-step {
    display: flex;
    align-items: center;
    gap: 14px;
}


    .booking-step > span {
        flex: 0 0 39px;
        width: 39px;
        height: 39px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba( 255, 255, 255, 0.65 );
        border-radius: 50%;
        color: #ffffff;
        font-weight: 700;
    }


    .booking-step strong {
        display: block;
        color: #ffffff;
        font-size: 0.92rem;
    }


    .booking-step small {
        display: block;
        margin-top: 2px;
        color: rgba( 255, 255, 255, 0.78 );
        font-size: 0.79rem;
    }


.booking-steps .salon-white-button {
    align-self: flex-start;
    margin-top: 7px;
}


/* =========================================================
   HOME - GALLERY
   ========================================================= */

.salon-gallery {
    padding: 90px 0;
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat( 3, minmax(0, 1fr) );
    grid-auto-rows: 245px;
    gap: 16px;
}


.gallery-item {
    overflow: hidden;
    border-radius: 6px;
    background-color: #eeeeee;
}


.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}


.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}


.gallery-item:hover img {
    transform: scale(1.03);
}


/* =========================================================
   HOME - CONTACT
   ========================================================= */

.salon-contact-section {
    padding: 90px 0;
    background-color: var(--salon-soft-background);
}


.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    gap: 70px;
}


.contact-photo {
    min-height: 475px;
    overflow: hidden;
    border-radius: 6px;
}


    .contact-photo img {
        width: 100%;
        height: 100%;
        min-height: 475px;
        object-fit: cover;
    }


.contact-content {
    align-self: center;
    max-width: 560px;
    padding: 30px 0;
}


    .contact-content h2 {
        margin: 7px 0 29px;
        font-family: Georgia, "Times New Roman", serif;
        font-size: clamp( 2.35rem, 4vw, 3.3rem );
        font-weight: 500;
    }


.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}


.contact-icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--salon-pink-light);
}


.contact-detail strong {
    display: block;
    margin-bottom: 3px;
    color: var(--salon-charcoal);
}


.contact-detail span,
.contact-detail a {
    color: var(--salon-gray);
    font-size: 0.92rem;
    line-height: 1.55;
}


    .contact-detail a:hover {
        color: var(--salon-pink);
    }


.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 30px;
}


/* =========================================================
   BOOKING PAGE
   ========================================================= */

.booking-page {
    padding: 15px 0 45px;
}


.booking-page-header {
    max-width: 760px;
    margin-bottom: 32px;
}


    .booking-page-header h1 {
        margin: 5px 0 10px;
        color: var(--salon-charcoal);
        font-family: Georgia, "Times New Roman", serif;
        font-size: clamp( 2.25rem, 4vw, 3.4rem );
        font-weight: 500;
    }


    .booking-page-header p {
        margin: 0;
        color: var(--salon-gray);
        line-height: 1.7;
    }


.booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.7fr);
    align-items: start;
    gap: 28px;
}


.booking-form-card {
    padding: 30px;
    border: 1px solid var(--salon-border);
    border-radius: 9px;
    background-color: #ffffff;
    box-shadow: 0 7px 25px rgba(0,0,0,0.045);
}


.booking-card-heading {
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--salon-border);
}


    .booking-card-heading h2 {
        margin: 0 0 5px;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 1.65rem;
        font-weight: 500;
    }


    .booking-card-heading p {
        margin: 0;
        color: var(--salon-gray);
        font-size: 0.88rem;
    }


.booking-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 30px 0 18px;
}


.booking-section-number {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--salon-pink);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
}


.booking-section-title strong {
    display: block;
    color: var(--salon-charcoal);
    font-size: 0.98rem;
}


.booking-section-title small {
    display: block;
    margin-top: 2px;
    color: var(--salon-gray);
    font-size: 0.78rem;
}


.booking-field-grid {
    display: grid;
    grid-template-columns: repeat( 2, minmax(0, 1fr) );
    gap: 18px;
}


.booking-field {
    min-width: 0;
}


    .booking-field.full-width {
        grid-column: 1 / -1;
    }


    .booking-field label {
        display: block;
        margin-bottom: 6px;
        color: var(--salon-charcoal);
        font-size: 0.84rem;
        font-weight: 700;
    }


.required-star {
    color: #c92d3a;
}


.salon-input,
.salon-textarea {
    width: 100%;
    border: 1px solid #d9d4d7;
    border-radius: 5px;
    background-color: #ffffff;
    color: var(--salon-charcoal);
    font-size: 0.94rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}


.salon-input {
    min-height: 44px;
    padding: 9px 11px;
}


.salon-textarea {
    min-height: 110px;
    padding: 10px 11px;
    resize: vertical;
}


    .salon-input:focus,
    .salon-textarea:focus {
        border-color: var(--salon-pink);
        outline: none;
        box-shadow: 0 0 0 0.18rem rgba(189,25,112,0.12);
    }


.salon-input:disabled {
    background-color: #f5f3f4;
    color: #8d8589;
}


.field-help {
    display: block;
    margin-top: 5px;
    color: var(--salon-gray);
    font-size: 0.76rem;
    line-height: 1.4;
}


.booking-status-message {
    margin-top: 7px;
    padding: 9px 11px;
    border-radius: 5px;
    font-size: 0.82rem;
}


.booking-open {
    border: 1px solid #c6e5d2;
    background-color: #f2fbf5;
    color: #25633c;
}


.booking-closed {
    border: 1px solid #efc9cc;
    background-color: #fff5f5;
    color: #9e3039;
}


.booking-submit-area {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--salon-border);
}


.booking-submit-button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border: 0;
    border-radius: 5px;
    background-color: var(--salon-pink);
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
}


    .booking-submit-button:hover {
        background-color: var(--salon-pink-dark);
        color: #ffffff;
    }


.booking-submit-note {
    margin-top: 9px;
    color: var(--salon-gray);
    font-size: 0.76rem;
}


.booking-result-message {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 24px;
    padding: 15px 17px;
    border: 1px solid #c8e1d1;
    border-radius: 6px;
    background-color: #f2fbf5;
    color: #27643e;
}


.booking-result-icon {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffffff;
    font-weight: 800;
}


.booking-sidebar {
    position: sticky;
    top: 120px;
}


.booking-sidebar-photo {
    height: 260px;
    margin-bottom: 18px;
    overflow: hidden;
    border-radius: 9px;
}


    .booking-sidebar-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


.booking-info-card,
.booking-secondary-card {
    margin-bottom: 18px;
    padding: 23px;
    border: 1px solid var(--salon-border);
    border-radius: 9px;
    background-color: #ffffff;
}


    .booking-info-card h3,
    .booking-secondary-card h3 {
        margin: 0 0 15px;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 1.25rem;
        font-weight: 500;
    }


.booking-info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 13px;
    color: var(--salon-gray);
    font-size: 0.86rem;
    line-height: 1.5;
}


/* =========================================================
   VALIDATION
   ========================================================= */

.field-error {
    border: 2px solid #dc3545 !important;
    background-color: #fff5f5 !important;
    box-shadow: 0 0 0 0.15rem rgba(220,53,69,0.15);
}


    .field-error:focus {
        border-color: #dc3545 !important;
        outline: none;
        box-shadow: 0 0 0 0.2rem rgba(220,53,69,0.25);
    }


.input-validation-error {
    border: 2px solid #dc3545 !important;
    background-color: #fff5f5 !important;
}


    .input-validation-error:focus {
        border-color: #dc3545 !important;
        outline: none;
        box-shadow: 0 0 0 0.2rem rgba(220,53,69,0.25);
    }


.field-validation-error {
    color: #dc3545;
    font-size: 0.9rem;
    font-weight: 500;
}


.validation-summary-errors {
    color: #dc3545;
}


/* =========================================================
   OWNER DASHBOARD
   ========================================================= */

.owner-dashboard-page {
    padding: 10px 0 45px;
}


.owner-dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
}


    .owner-dashboard-header h1 {
        margin: 6px 0 8px;
        font-family: Georgia, "Times New Roman", serif;
        font-size: clamp( 2.25rem, 4vw, 3.35rem );
        font-weight: 500;
    }


    .owner-dashboard-header p {
        margin: 0;
        color: var(--salon-gray);
    }


.owner-dashboard-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}


.owner-dashboard-outline-button,
.owner-dashboard-logout-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 5px;
    font-size: 0.92rem;
    font-weight: 650;
    text-decoration: none;
}


.owner-dashboard-outline-button {
    border: 1px solid var(--salon-pink);
    background-color: #ffffff;
    color: var(--salon-pink);
}


    .owner-dashboard-outline-button:hover {
        background-color: var(--salon-pink);
        color: #ffffff;
    }


.owner-dashboard-logout-button {
    border: 1px solid #ded8dc;
    background-color: #ffffff;
    color: #5b5558;
}


    .owner-dashboard-logout-button:hover {
        background-color: #f7f4f6;
        color: #222222;
    }


.owner-dashboard-summary {
    display: grid;
    grid-template-columns: repeat( 4, minmax(0, 1fr) );
    gap: 18px;
    margin-bottom: 45px;
}


.owner-summary-card {
    min-height: 105px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    border: 1px solid var(--salon-border);
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}


.owner-summary-icon {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--salon-pink-light);
    font-size: 1.35rem;
}


.owner-summary-card > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
}


.owner-summary-card span {
    color: var(--salon-gray);
    font-size: 0.83rem;
    text-transform: uppercase;
}


.owner-summary-card strong {
    color: var(--salon-charcoal);
    font-size: 0.95rem;
}


.owner-dashboard-section {
    margin-bottom: 50px;
}


.owner-dashboard-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 25px;
}


    .owner-dashboard-section-heading h2 {
        margin: 3px 0 0;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 2rem;
        font-weight: 500;
    }


    .owner-dashboard-section-heading > p {
        max-width: 430px;
        margin: 0;
        color: var(--salon-gray);
        line-height: 1.6;
    }


.owner-dashboard-grid {
    display: grid;
    grid-template-columns: repeat( 3, minmax(0, 1fr) );
    gap: 22px;
}


.owner-dashboard-card {
    min-height: 210px;
    display: flex;
    gap: 18px;
    padding: 28px;
    border: 1px solid var(--salon-border);
    border-radius: 9px;
    background-color: #ffffff;
    color: inherit;
    box-shadow: 0 6px 22px rgba(0,0,0,0.045);
    text-decoration: none;
}


    .owner-dashboard-card:hover {
        transform: translateY(-3px);
        border-color: rgba(189,25,112,0.35);
        color: inherit;
    }


.owner-dashboard-card-icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: var(--salon-pink-light);
    font-size: 1.45rem;
}


.owner-dashboard-card-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
}


.owner-dashboard-card h3 {
    margin: 0 0 9px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.28rem;
    font-weight: 500;
}


.owner-dashboard-card p {
    margin: 0 0 20px;
    color: var(--salon-gray);
    font-size: 0.91rem;
    line-height: 1.65;
}


.owner-dashboard-card-link {
    margin-top: auto;
    color: var(--salon-pink);
    font-size: 0.9rem;
    font-weight: 700;
}


.owner-dashboard-account-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 30px;
    border: 1px solid #f1dce7;
    border-radius: 9px;
    background-color: var(--salon-pink-light);
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    padding: 55px 0 22px;
    border-top: 1px solid var(--salon-border);
    background-color: #252124;
    color: #ffffff;
}


.footer-grid {
    display: grid;
    grid-template-columns: minmax(240px, 1.5fr) minmax(130px, 0.75fr) minmax(170px, 0.9fr) minmax(120px, 0.65fr);
    gap: 45px;
    padding-bottom: 42px;
}


.footer-logo {
    width: auto;
    height: 100px;
    padding: 6px;
    margin-bottom: 15px;
    border-radius: 4px;
    background-color: #ffffff;
    object-fit: contain;
    filter: none;
}


.footer-brand p {
    max-width: 330px;
    margin: 0;
    color: #c8c2c5;
    font-size: 0.86rem;
    line-height: 1.7;
}


.footer-heading {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}


.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}


    .footer-links a,
    .footer-staff-link {
        color: #c8c2c5;
        font-size: 0.84rem;
        text-decoration: none;
    }


        .footer-links a:hover,
        .footer-staff-link:hover {
            color: #ffffff;
        }


.footer-contact {
    color: #c8c2c5;
    font-size: 0.84rem;
    line-height: 1.8;
}


.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 19px;
    border-top: 1px solid rgba( 255, 255, 255, 0.12 );
    color: #938d91;
    font-size: 0.78rem;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .salon-logo {
        height: 62px;
    }


    .salon-nav-actions {
        align-items: flex-start;
        flex-direction: column;
        margin: 14px 0 5px;
    }


    .salon-navigation {
        align-items: flex-start;
        margin-top: 14px;
    }


        .salon-navigation .nav-link {
            padding: 8px 0 !important;
        }


    .salon-dashboard-link {
        padding: 7px 0;
    }


    .salon-book-button {
        margin-top: 4px;
    }


    .salon-hero {
        height: 580px;
    }


    .salon-hero-overlay {
        background: linear-gradient( 90deg, rgba(255,255,255,0.96), rgba(255,255,255,0.84), rgba(255,255,255,0.45) );
    }


    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }


    .welcome-image,
    .welcome-image img {
        min-height: 400px;
        height: 400px;
    }


    .service-photo-grid {
        grid-template-columns: repeat( 2, minmax(0, 1fr) );
    }


    .booking-promo-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }


    .gallery-grid {
        grid-template-columns: repeat( 2, minmax(0, 1fr) );
    }


    .gallery-large {
        grid-column: span 2;
    }


    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }


    .contact-content {
        max-width: none;
    }


    .booking-layout {
        grid-template-columns: 1fr;
    }


    .booking-sidebar {
        position: static;
    }


    .owner-dashboard-summary {
        grid-template-columns: repeat( 2, minmax(0, 1fr) );
    }


    .owner-dashboard-grid {
        grid-template-columns: repeat( 2, minmax(0, 1fr) );
    }


    .footer-grid {
        grid-template-columns: repeat( 2, minmax(0, 1fr) );
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .salon-navbar {
        min-height: 72px;
    }


    .salon-logo {
        height: 53px;
    }


    .salon-hero {
        height: auto;
        min-height: 640px;
    }


    .salon-hero-photo {
        position: absolute;
    }


        .salon-hero-photo img {
            object-position: center;
        }


    .salon-hero-overlay {
        position: relative;
        min-height: 640px;
        align-items: flex-end;
        padding: 65px 0 48px;
        background: linear-gradient( 0deg, rgba(255,255,255,0.99) 0%, rgba(255,255,255,0.97) 38%, rgba(255,255,255,0.70) 66%, rgba(255,255,255,0.15) 100% );
    }


    .salon-hero-content {
        max-width: 100%;
    }


        .salon-hero-content h1 {
            font-size: 3rem;
        }


    .hero-actions {
        flex-direction: column;
    }


        .hero-actions a {
            width: 100%;
        }


    .salon-welcome,
    .salon-services,
    .salon-gallery,
    .salon-contact-section {
        padding: 60px 0;
    }


    .welcome-content h2 {
        font-size: 2.5rem;
    }


    .welcome-image,
    .welcome-image img {
        height: 310px;
        min-height: 310px;
    }


    .service-photo-grid {
        grid-template-columns: 1fr;
    }


    .service-photo {
        height: 260px;
    }


    .booking-promo {
        padding: 58px 0;
    }


        .booking-promo h2 {
            font-size: 2.5rem;
        }


    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }


    .gallery-large {
        grid-column: span 1;
        grid-row: span 1;
    }


    .contact-photo,
    .contact-photo img {
        min-height: 310px;
        height: 310px;
    }


    .contact-buttons {
        flex-direction: column;
    }


        .contact-buttons a {
            width: 100%;
        }


    .booking-field-grid {
        grid-template-columns: 1fr;
    }


    .booking-field.full-width {
        grid-column: auto;
    }


    .booking-form-card {
        padding: 22px 18px;
    }


    .booking-submit-button {
        width: 100%;
    }


    .owner-dashboard-header {
        align-items: flex-start;
        flex-direction: column;
    }


    .owner-dashboard-header-actions {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }


    .owner-dashboard-outline-button,
    .owner-dashboard-logout-button {
        width: 100%;
    }


    .owner-dashboard-summary,
    .owner-dashboard-grid {
        grid-template-columns: 1fr;
    }


    .owner-dashboard-card {
        min-height: auto;
    }


    .owner-dashboard-account-section {
        align-items: stretch;
        flex-direction: column;
    }


    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }


    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .salon-hero-content h1 {
        font-size: 2.55rem;
    }


    .welcome-content h2,
    .booking-promo h2,
    .contact-content h2 {
        font-size: 2.2rem;
    }


    .section-heading h2 {
        font-size: 2.1rem;
    }


    .booking-page-header h1 {
        font-size: 2.2rem;
    }
}
