@import '_content/Microsoft.AspNetCore.Components.QuickGrid/Microsoft.AspNetCore.Components.QuickGrid.25o87uqmvr.bundle.scp.css';

/* _content/pinkmeup.Web/Components/Pages/BookNowExperience.razor.rz.scp.css */
/* Branch Card Styles with Smooth Hover Animation */
.branch-card[b-qjezuefqew] {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Actions Container - Hidden by default */
.branch-actions[b-qjezuefqew] {
    max-height: 0;
    opacity: 0;
    padding: 0 1.5rem;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease-in-out,
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Show actions on hover */
.branch-card:hover .branch-actions[b-qjezuefqew] {
    max-height: 300px;
    opacity: 1;
    padding: 1.5rem;
}

/* Optional: Add a subtle border on hover */
.branch-card:hover[b-qjezuefqew] {
    border: 2px solid rgb(244 63 94 / 0.5); /* rose-500 with opacity */
}

/* Smooth transition for the entire card */
.branch-card[b-qjezuefqew] {
    transition: transform 0.2s ease-in-out,
                box-shadow 0.2s ease-in-out,
                border-color 0.2s ease-in-out;
}

.branch-card:hover[b-qjezuefqew] {
    transform: translateY(-4px);
}

/* Animation for buttons inside */
.branch-actions a[b-qjezuefqew] {
    transform: translateY(10px);
    transition: transform 0.3s ease-out;
}

.branch-card:hover .branch-actions a[b-qjezuefqew] {
    transform: translateY(0);
}

/* Stagger animation for buttons */
.branch-actions a:nth-child(1)[b-qjezuefqew] {
    transition-delay: 0.05s;
}

.branch-actions a:nth-child(2) > a:first-child[b-qjezuefqew] {
    transition-delay: 0.1s;
}

.branch-actions a:nth-child(2) > a:last-child[b-qjezuefqew] {
    transition-delay: 0.15s;
}
/* _content/pinkmeup.Web/Components/Shared/FloatingSocialBar.razor.rz.scp.css */

.floating-social .social-item[b-ozfzvph1h6] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.floating-social .social-item i[b-ozfzvph1h6] {
    display: inline-flex;
    width: 1.5rem;
    height: 1.5rem;
}

.floating-social .divider[b-ozfzvph1h6] {
    width: 100%;
}

/* Lower visual weight on small screens */
.floating-social[b-ozfzvph1h6] {
    /* fallback tint for environments without Tailwind opacity utilities */
    background-color: rgba(28, 6, 17, 0.36);
}

.floating-social .social-item[b-ozfzvph1h6] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgb(255 245 247 / 0.95);
}

.floating-social .social-item i[b-ozfzvph1h6] {
    display: inline-flex;
    width: 1.5rem;
    height: 1.5rem;
}

.floating-social .divider[b-ozfzvph1h6] {
    width: 100%;
}

/* Note: visibility on small screens is controlled by Tailwind classes in the component markup. */

/* Ensure mobile compact bar is visible even if other global css interferes */
.floating-social-mobile[b-ozfzvph1h6] {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    position: fixed !important;
    bottom: 1rem !important;
    left: 1rem !important;
    z-index: 9999 !important;
}

.floating-social-mobile a[b-ozfzvph1h6] {
    text-decoration: none !important;
}
/* _content/pinkmeup.Web/Components/Shared/HeroCallout.razor.rz.scp.css */
/* ============================================
   HeroCallout Component Styles
   ============================================ */

/* Container */
.hero-callout[b-63gonuwz29] {
    position: relative;
    width: 100%;
    min-height: var(--hero-min-height, 60vh);
    overflow: hidden;
}

.hero-callout-container[b-63gonuwz29] {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: grid;
    place-items: center;
}

/* Image Layer with Zoom Animation */
.hero-callout-image-wrapper[b-63gonuwz29] {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-callout-image[b-63gonuwz29] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: heroZoomOut-b-63gonuwz29 8s ease-out forwards;
}

@keyframes heroZoomOut-b-63gonuwz29 {
    from {
        transform: scale(1.05);
    }
    to {
        transform: scale(1);
    }
}

/* Gradient Overlay */
.hero-callout-overlay[b-63gonuwz29] {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(244, 63, 94, 0.05) 50%,
        rgba(136, 19, 55, 0.3) 100%
    );
    pointer-events: none;
}

/* Content Layer */
.hero-callout-content[b-63gonuwz29] {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 2rem 1rem;
    display: grid;
    place-items: center;
    text-align: center;
}

.hero-callout-inner[b-63gonuwz29] {
    max-width: 800px;
    animation: fadeInUp-b-63gonuwz29 1s ease-out 0.3s backwards;
}

@keyframes fadeInUp-b-63gonuwz29 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typography */
.hero-callout-eyebrow[b-63gonuwz29] {
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(251, 207, 232, 1); /* rose-200 */
    margin: 0 0 0.75rem 0;
    animation: fadeInUp-b-63gonuwz29 1s ease-out 0.4s backwards;
}

.hero-callout-title[b-63gonuwz29] {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin: 0 0 1rem 0;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: fadeInUp-b-63gonuwz29 1s ease-out 0.5s backwards;
}

.hero-callout-subtitle[b-63gonuwz29] {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(254, 242, 242, 1); /* rose-50 */
    margin: 0 0 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: fadeInUp-b-63gonuwz29 1s ease-out 0.6s backwards;
}

/* Call-to-Action Button */
.hero-callout-action[b-63gonuwz29] {
    animation: fadeInUp-b-63gonuwz29 1s ease-out 0.7s backwards;
}

.hero-callout-button[b-63gonuwz29] {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: rgb(136, 19, 55); /* rose-900 */
    background: rgba(255, 255, 255, 0.95);
    border-radius: 9999px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-callout-button:hover[b-63gonuwz29] {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    color: rgb(159, 18, 57); /* rose-800 */
}

.hero-callout-button:active[b-63gonuwz29] {
    transform: translateY(0);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .hero-callout-content[b-63gonuwz29] {
        padding: 3rem 2rem;
    }

    .hero-callout-eyebrow[b-63gonuwz29] {
        margin-bottom: 1rem;
    }

    .hero-callout-title[b-63gonuwz29] {
        margin-bottom: 1.5rem;
    }

    .hero-callout-subtitle[b-63gonuwz29] {
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-callout-content[b-63gonuwz29] {
        padding: 4rem 2rem;
    }
}

/* RTL Support */
[dir="rtl"] .hero-callout-eyebrow[b-63gonuwz29],
[dir="rtl"] .hero-callout-title[b-63gonuwz29],
[dir="rtl"] .hero-callout-subtitle[b-63gonuwz29] {
    direction: rtl;
    text-align: center;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .hero-callout-image[b-63gonuwz29],
    .hero-callout-inner[b-63gonuwz29],
    .hero-callout-eyebrow[b-63gonuwz29],
    .hero-callout-title[b-63gonuwz29],
    .hero-callout-subtitle[b-63gonuwz29],
    .hero-callout-action[b-63gonuwz29] {
        animation: none;
    }

    .hero-callout-button[b-63gonuwz29] {
        transition: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .hero-callout-overlay[b-63gonuwz29] {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.7) 100%
        );
    }

    .hero-callout-button[b-63gonuwz29] {
        background: white;
        color: black;
        border: 2px solid black;
    }
}
