@import '_content/Microsoft.AspNetCore.Components.QuickGrid/Microsoft.AspNetCore.Components.QuickGrid.25o87uqmvr.bundle.scp.css';

/* _content/pinkmeup.Web/Components/Layout/HomeSections/BranchesSection.razor.rz.scp.css */
/* --- Root & Layout --- */
.branches-section-luxury[b-9eczqy59yx] {
    padding: 6rem 5%;
    /* background-color: #fdfcfb; */
    overflow: hidden;
}

.branches-container[b-9eczqy59yx] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 1600px;
    margin: 0 auto;
}

@media (min-width: 1280px) {
    .branches-container[b-9eczqy59yx] {
        grid-template-columns: 320px 1fr;
    }
}

/* --- Bento Grid Logic --- */
.bento-grid[b-9eczqy59yx] {
    display: grid;
    gap: 1.25rem;
    grid-template-areas: 
        "area-0 area-1"
        "area-0 area-2"
        "area-3 area-3";
    grid-template-columns: 1.2fr 1fr;
    grid-auto-rows: 250px;
}

.area-0[b-9eczqy59yx] { grid-area: area-0; }
.area-1[b-9eczqy59yx] { grid-area: area-1; }
.area-2[b-9eczqy59yx] { grid-area: area-2; }
.area-3[b-9eczqy59yx] { grid-area: area-3; }

/* --- The Card Experience --- */
.branch-card[b-9eczqy59yx] {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000; 
}

.image-wrapper[b-9eczqy59yx] {
    width: 100%;
    height: 100%;
}

/* --- Images: mobile-first (no transitions) --- */
.branch-photo[b-9eczqy59yx] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95);
    transform: none;
    transition: none;
}

/* --- Large screens: enable slow cinematic transitions --- */
@media (min-width: 1024px) {
    .branch-photo[b-9eczqy59yx] {
        transition: transform 12s ease, filter 1.2s ease;
    }

    .branch-card:hover .branch-photo[b-9eczqy59yx],
    .branch-card:active .branch-photo[b-9eczqy59yx] {
        transform: scale(1.1);
        filter: brightness(0.6);
    }
}

/* --- The Panel & Typography --- */
/* --- Panel: mobile-first (always visible, no transform) --- */
.glass-reveal-panel[b-9eczqy59yx] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%);
    transition: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform: none;
}

@media (min-width: 1024px) {

    .glass-reveal-panel[b-9eczqy59yx] {
        padding: 2rem;
        transition: all 1.2s ease, background 0.3s ease-in-out;
        background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%);
    }

    
    .location-name[b-9eczqy59yx] { 
        transform: translateY(60px);
        transition: all 0.4s ease; opacity: 1;
     }

    .branch-card:hover .location-name[b-9eczqy59yx] {
        transform: translateY(-10px);

    }

    .branch-card:hover .location-address[b-9eczqy59yx] {
        opacity: 1;
        transform: translateY(-10px);
        transition-delay: 0.25s;
    }

    .branch-card:hover .premium-button[b-9eczqy59yx] {
        opacity: 1;
        transform: translateY(-10px);
        transition-delay: 0.35s;
    }

    .location-address[b-9eczqy59yx],
    .premium-button[b-9eczqy59yx] {
        opacity: 0;
        transition: all 0.5s ease;
        transform: translateY(10px);
        display: inline-block;
    }
    }


.glass-content[b-9eczqy59yx] {
    color: white;
    width: 100%;

}



@media (min-width: 1024px) {
   } 




/* --- Mobile Responsiveness --- */
@media (max-width: 1024px) {
    .bento-grid[b-9eczqy59yx] {
        grid-template-areas: "area-0 area-0" "area-1 area-2" "area-3 area-3";
    }
}

@media (max-width: 640px) {
    .bento-grid[b-9eczqy59yx] {
        grid-template-areas: "area-0" "area-1" "area-2" "area-3";
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }
}
/* _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/BeforeAfterSlider.razor.rz.scp.css */
.slider-container[b-l6dl6902n8] {
    position: relative;
    width: 100%;
    /* Max width handled by parent layout usually, but we can set defaults */
    min-height: 300px; /* Default height */
    border-radius: 1.5rem; /* Rounded-3xl match */
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
}

@media (min-width: 768px) {
    .slider-container[b-l6dl6902n8] {
        min-height: 500px;
    }
}

.before-image[b-l6dl6902n8],
.after-image[b-l6dl6902n8] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.before-image img[b-l6dl6902n8],
.after-image img[b-l6dl6902n8] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none; /* Prevent image drag */
}

/* Styling the Before/After text */
.before-text[b-l6dl6902n8],
.after-text[b-l6dl6902n8] {
    position: absolute;
    font-size: 14px;
    font-weight: 600;
    color: #3a3a3a;
    z-index: 4;
    padding: 6px 16px; /* Adjusted padding */
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 0.5rem;
    letter-spacing: 1px;
    backdrop-filter: blur(4px);
    pointer-events: none;
}

/* Before text */
.before-text[b-l6dl6902n8] {
    left: 20px;
    top: 20px;
}

/* After text */
.after-text[b-l6dl6902n8] {
    right: 20px;
    top: 20px;
}



.slider-line[b-l6dl6902n8] {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px; 
    background: #fff;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    cursor: ew-resize !important;

}





/* _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;
    }
}
/* _content/pinkmeup.Web/Components/Shared/LandingSectionTitle.razor.rz.scp.css */
.subtitle-multiline[b-21rpeaz0nq] {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3; /* default for large screens */
  line-height: 1.35;
  text-wrap: balance;
}

@media (max-width: 1023px) {
  .subtitle-multiline[b-21rpeaz0nq] {
    -webkit-line-clamp: 2; /* smaller screens, tighter lines */
  }
}

@media (max-width: 639px) {
  .subtitle-multiline[b-21rpeaz0nq] {
    -webkit-line-clamp: 2; /* mobile keeps 2 lines for readability */
  }
}
