﻿:root {
    --rose: #e91e63; /* primary accent */
    --rose-dark: #c2185b;
    --gold: #c7a17a;
    --ink: #222;
    --muted: #6b7280;
    --soft: #fff7fa;
}

* {
    box-sizing: border-box
}

body {
    font-family: "Poppins",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
    color: var(--ink);
    background: #fff;
}

.brand {
    font-family: "Playfair Display",serif;
    font-weight: 700;
    letter-spacing: .5px
}

    .brand span {
        color: var(--rose)
    }

.navbar .nav-link {
    font-weight: 500
}

.btn-primary {
    background: var(--rose);
    border-color: var(--rose)
}

    .btn-primary:hover {
        background: var(--rose-dark);
        border-color: var(--rose-dark)
    }

.btn-outline-primary {
    color: var(--rose);
    border-color: var(--rose)
}

    .btn-outline-primary:hover {
        background: var(--rose);
        color: #fff
    }


/* History Button */
.btn-history {
    background: #f4f4f4;
    border: 1px solid #bbb;
    color: var(--muted);
    transition: all 0.3s ease; /* Smooth hover effect */
}

    .btn-history:hover {
        background: var(--rose);
        border-color: var(--rose);
        color: #fff;
        transform: scale(1.05) translateY(-2px);
        box-shadow: 0 6px 15px rgba(233, 30, 99, 0.3);
    }


/* HERO */


.hero {
    min-height: 82vh;
    background: linear-gradient( rgba(0,0,0,.35), rgba(0,0,0,.35) ), url('/images/hero/hero-bg.jpg') center/cover no-repeat;
    color: #fff;
    position: relative;
}

    .hero .eyebrow {
        letter-spacing: .22em;
        text-transform: uppercase;
        opacity: .9
    }

    .hero .btn {
        box-shadow: 0 8px 24px rgba(233,30,99,.35)
    }

.section {
    padding: 70px 0
}

.section-title {
    font-family: "Playfair Display",serif;
    font-weight: 700
}

    .section-title span {
        color: var(--rose)
    }

.bg-soft {
    background: var(--soft)
}

.pill {
    border: 1px solid #eee;
    border-radius: 999px;
    padding: 10px 14px;
    background: #fff;
    display: inline-flex;
    gap: .5rem;
    align-items: center;
    font-weight: 500
}






/* 📱 Mobile Optimizations */
@media (max-width: 576px) {
    .text-center.text-white.py-5 {
        padding: 60px 20px;
    }

    .brand-heading {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .hero-services {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }

    .btn-lg {
        font-size: 0.9rem;
        padding: 10px 0;
        width: 100%;
        max-width: 220px;
    }

    .d-flex.gap-3 {
        gap: 0.75rem !important;
    }
}

.product-card .card-img-top {
    height: 250px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 8px 8px 0 0;
}



.carousel-img {
    height: 350px;
    width: 100%;
    object-fit: revert;
    border-radius: 12px;
    background-color: #f9f9f9;
}

/*this is service img top */
/* For all carousel images inside service cards */
.service-card .carousel-inner .carousel-item img {
    height: 300px;
    width: 100%;
    object-fit: fill;
    border-radius: 8px 8px 0 0;
    transition: transform 0.3s ease;
}

    .service-card .carousel-inner .carousel-item img:hover {
        transform: scale(1.03);
    }

/* If you use card-img-top anywhere outside carousel */
.card-img-top {
    height: 250px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 8px 8px 0 0;
}

    .card-img-top:hover {
        transform: scale(1.03);
    }



.col-md-4 {
    height: fit-content;
}







.price {
    color: var(--rose);
    font-weight: 700
}

.service-card .price {
    font-weight: 700;
    color: var(--rose)
}

.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

/* TESTIMONIALS */
.t-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
}

    .t-card .t-by {
        display: flex;
        align-items: center;
        gap: .6rem;
        margin-top: 10px;
        font-weight: 600
    }

        .t-card .t-by img {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            object-fit: cover
        }

/* CONTACT */
.contact-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

/* FOOTER */
.footer {
    background: #111;
    color: #ddd
}

    .footer .brand span {
        color: var(--rose)
    }

    .footer a {
        color: #ddd;
        text-decoration: none
    }

        .footer a:hover {
            color: #fff
        }

.footer-links li {
    margin: .4rem 0
}



/*home page keygen lie contact page css*/

.booking-bg-card {
    background-image: url('/images/salon.jpg'); /* Replace with your own image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: white;
    overflow: hidden;
    min-height: 300px;
    transition: transform 0.3s ease;
}

    /* Overlay for contrast */
    .booking-bg-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 0;
        border-radius: 1rem;
    }

    /* Ensure content stays above the overlay */
    .booking-bg-card > * {
        position: relative;
        z-index: 1;
    }

    /* Hover effect */
    .booking-bg-card:hover {
        transform: scale(1.02);
    }

    /* Button Styling */
    .booking-bg-card .btn-light {
        background-color: white;
        color: #333;
        border: none;
        transition: all 0.3s ease;
    }

        .booking-bg-card .btn-light:hover {
            background-color: #f8f9fa;
            color: #000;
        }

.star-rating {
    color: #f5b301; /* Professional golden yellow */
    font-size: 1.2rem;
    letter-spacing: 1px;
}


.brand-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 3rem;
    color: #fff;
    letter-spacing: 1px;
}

.tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
    color: #f8d3f4;
    margin-top: 10px;
}

.brand-heading {
    animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Fade + Zoom animation on load */
@keyframes fadeZoomIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-zoom {
    animation: fadeZoomIn 0.9s ease-out forwards;
    opacity: 0; /* Starts invisible until animation kicks in */
}

/* Button hover lift effect */
.btn-hover:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* Optional: Make "eyebrow" text (Luxury · Elegance · Care) lighter & spaced */
.eyebrow {
    letter-spacing: 2px;
    font-size: 14px;
    color: #ddd;
}

/* Optional: Smaller tagline below headline */
.tagline {
    font-size: 18px;
    color: #e3d8f1;
    letter-spacing: 0.5px;
    margin-top: 10px;
}


/*about us */

/* === Scroll Animations === */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-left {
    opacity: 0;
    animation: fadeInLeft 0.8s ease forwards;
    animation-delay: 0.2s;
}

.fade-in-right {
    opacity: 0;
    animation: fadeInRight 0.8s ease forwards;
    animation-delay: 0.4s;
}

/* === Pill Style Enhancement === */
.pill {
    background-color: #fff;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: default;
}

    .pill:hover {
        transform: translateY(-2px) scale(1.03);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }





.section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #d4af37 !important; /* Golden */
}

