/* ==========================================================================
   BLUSH & BUFF NAIL STUDIO - DESIGN SYSTEM & STYLE SHEET
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. Core Custom Properties (Variables)
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette - Rich, Vibrant and Highly Colorful Blush & Buff Theme */
    --primary-blush: hsl(348, 65%, 68%); /* Rich warm rose blush */
    --primary-blush-light: hsl(348, 60%, 94%); /* Distinct, rich soft pink backdrop */
    --primary-blush-dark: hsl(348, 50%, 54%); /* Rich deep warm rose */
    --secondary-buff: hsl(28, 45%, 78%); /* Rich radiant warm sand */
    --secondary-buff-light: hsl(30, 40%, 92%); /* Distinct, rich soft gold-sand backdrop */
    --secondary-buff-dark: hsl(28, 35%, 62%); /* Elegant warm sand accent */
    --accent-gold: hsl(28, 40%, 85%);
    
    /* Neutrals - Rich, Warm and High-contrast */
    --text-dark: hsl(345, 25%, 15%); /* Deep rich warm plum-wine, high contrast */
    --text-muted: hsl(345, 12%, 36%); /* Warm rose-charcoal, highly legible */
    --bg-light: var(--primary-blush-light); /* Rich warm soft pink background for alternating sections */
    --bg-white: hsl(0, 0%, 100%); /* Crisp clean white background for contrast sections */
    --bg-footer: hsl(345, 30%, 20%); /* Premium, rich deep warm plum-wine footer */
    --border-color: hsl(350, 40%, 88%); /* Warm rose-cream border lines */
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', sans-serif;
    
    /* UI Boundaries & Transitions */
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 24px;
    --shadow-subtle: 0 4px 20px rgba(46, 35, 37, 0.03);
    --shadow-medium: 0 10px 30px rgba(46, 35, 37, 0.06);
    --shadow-premium: 0 20px 40px rgba(46, 35, 37, 0.1);
    
    /* Layout */
    --header-height: 80px;
    --container-width: 1200px;
}

/* --------------------------------------------------------------------------
   02. Base & Typography Resets
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.25;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --------------------------------------------------------------------------
   03. Reusable UI Components & Buttons
   -------------------------------------------------------------------------- */
.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 100px 24px;
}

.section-pretitle {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-blush);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header-center .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--primary-blush);
    margin: 1.25rem auto 0 auto;
}

.section-intro-text {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-top: 1rem;
}

/* Button Aesthetic */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background-color: var(--primary-blush);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--primary-blush-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(214, 137, 152, 0.4);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--primary-blush-light);
    color: var(--primary-blush);
    border-color: var(--primary-blush);
    transform: translateY(-2px);
}

.btn-pdf {
    background-color: var(--text-dark);
    color: var(--bg-white);
    font-weight: 600;
    border: 1px solid transparent;
}

.btn-pdf:hover {
    background-color: var(--bg-white);
    color: var(--text-dark);
    border-color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-icon {
    margin-right: 8px;
}

/* --------------------------------------------------------------------------
   04. Sticky Navigation Header
   -------------------------------------------------------------------------- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    border-bottom: 1px solid rgba(234, 229, 225, 0.5);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    height: 70px;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-subtle);
}

.header-container {
    max-width: var(--container-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo-container {
    display: flex;
    align-items: center;
    height: 80%;
}

.brand-logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
}

.brand-logo-container:hover .brand-logo-img {
    transform: scale(1.03);
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--primary-blush);
    transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active-nav-link {
    color: var(--primary-blush);
}

.nav-link:hover::after,
.nav-link.active-nav-link::after {
    width: 100%;
}

/* Mobile Nav Toggle Icon */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    width: 25px;
    height: 20px;
    justify-content: space-between;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Hamburger animations */
.mobile-nav-toggle.open .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-nav-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   05. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    height: 95vh;
    min-height: 650px;
    background-image: url('./images/blush-buff-exterior.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    color: var(--bg-white);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(46, 35, 37, 0.85), rgba(46, 35, 37, 0.4));
    z-index: 1;
}

.hero-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(216, 164, 127, 0.2);
    border: 1px solid var(--secondary-buff);
    color: var(--secondary-buff);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 400;
    color: var(--bg-white);
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-policy-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-left: 3px solid var(--primary-blush);
    padding: 1rem 1.25rem;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    margin-bottom: 2.25rem;
}

.hero-policy-box span {
    font-size: 0.95rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.policy-icon {
    flex-shrink: 0;
    color: var(--primary-blush);
    margin-top: 2px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    display: block;
    width: 14px;
    height: 14px;
    border-bottom: 2px solid var(--bg-white);
    border-right: 2px solid var(--bg-white);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* --------------------------------------------------------------------------
   06. About Section
   -------------------------------------------------------------------------- */
.about-section {
    background-color: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-text-blocks {
    margin-bottom: 2.5rem;
}

.about-paragraph {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.about-paragraph.highlight-p {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text-dark);
    border-left: 2px solid var(--secondary-buff);
    padding-left: 1.25rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.about-feature-item {
    display: flex;
    gap: 16px;
}

.feature-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
    color: var(--primary-blush);
    line-height: 1;
}

.feature-text h3 {
    font-size: 1.15rem;
    font-weight: 600;
    font-family: var(--font-body);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 0.88rem;
    margin-bottom: 0;
}

/* Beautiful Offset Collage Layout */
.about-image-collage {
    position: relative;
    padding-bottom: 60px;
}

.collage-item img {
    width: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.collage-item img:hover {
    transform: scale(1.02);
}

.collage-item-large {
    width: 80%;
    position: relative;
    z-index: 2;
}

.collage-item-large img {
    height: 400px;
}

.collage-item-small {
    width: 55%;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
}

.collage-item-small img {
    height: 250px;
    border: 6px solid var(--bg-white);
}

.collage-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 2px solid var(--secondary-buff);
    border-left: 2px solid var(--secondary-buff);
    z-index: 1;
}

/* --------------------------------------------------------------------------
   07. Services Pricing Section
   -------------------------------------------------------------------------- */
.services-section {
    background-color: var(--secondary-buff-light);
}

.services-pdf-action {
    margin-top: 1.5rem;
}

.services-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 30px;
}

.service-category-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(234, 229, 225, 0.4);
    transition: var(--transition-smooth);
}

.service-category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 2px solid var(--primary-blush-light);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.category-header h3 {
    font-size: 1.85rem;
    font-weight: 500;
}

.category-icon {
    color: var(--primary-blush);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.service-item-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-weight: 500;
}

.service-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-dark);
}

.service-dots {
    flex-grow: 1;
    border-bottom: 2px dotted var(--border-color);
    margin: 0 10px;
    align-self: flex-end;
    position: relative;
    top: -4px;
}

.service-price {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--primary-blush-dark);
    font-weight: 600;
    flex-shrink: 0;
}

.per-nail {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-muted);
}

.service-description {
    font-size: 0.9rem;
    margin-top: 4px;
    margin-bottom: 0;
}

.services-pricing-note {
    background-color: var(--bg-white);
    border: 1px dashed var(--secondary-buff);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius-md);
    margin-top: 50px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-pricing-note p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   08. Nail Work Gallery Section
   -------------------------------------------------------------------------- */
.gallery-section {
    background-color: var(--bg-white);
}

.gallery-filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}

.filter-btn {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-blush);
    color: var(--bg-white);
    border-color: var(--primary-blush);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    transition: var(--transition-smooth);
}

.gallery-item-card {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    background-color: var(--bg-light);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s ease;
}

.gallery-item-card.hidden {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.gallery-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(46, 35, 37, 0.9), rgba(46, 35, 37, 0.2));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2;
}

.gallery-item-category {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary-buff);
    margin-bottom: 4px;
}

.gallery-hover-overlay h4 {
    font-size: 1.4rem;
    color: var(--bg-white);
    font-weight: 400;
}

.gallery-item-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

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

.gallery-item-card:hover .gallery-hover-overlay {
    opacity: 1;
}

/* --------------------------------------------------------------------------
   09. Team Section
   -------------------------------------------------------------------------- */
.team-section {
    background-color: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(234, 229, 225, 0.3);
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.team-avatar-wrapper {
    padding: 3rem 2rem 1.5rem 2rem;
    display: flex;
    justify-content: center;
}

/* Premium Monogram Avatars */
.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    color: var(--text-dark);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.avatar-blush { background-color: #F6E2E5; border: 2px solid #E5C3C8; }
.avatar-buff { background-color: #F7EADF; border: 2px solid #EAD1C1; }
.avatar-rose { background-color: #EFDDE4; border: 2px solid #DDBCC9; }
.avatar-gold { background-color: #F5EAE1; border: 2px solid #DFCCBE; }

.team-info {
    padding: 0 2rem 2.5rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.team-info h3 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 2px;
}

.team-role {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-blush);
    font-weight: 600;
}

.team-divider {
    width: 40px;
    height: 1px;
    background-color: var(--border-color);
    margin: 1.25rem auto;
}

.specialties-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.team-specialties {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.95rem;
    color: var(--text-dark);
    list-style: none;
    margin-bottom: 0;
}

.team-specialties li {
    font-weight: 400;
}

.team-booking-note {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 900px;
    margin: 50px auto 0 auto;
    box-shadow: var(--shadow-subtle);
}

.team-booking-note p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.note-icon {
    flex-shrink: 0;
    color: var(--primary-blush);
}

/* --------------------------------------------------------------------------
   10. Sanitation Section
   -------------------------------------------------------------------------- */
.sanitation-section {
    background-color: var(--bg-white);
}

.sanitation-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: center;
}

.sanitation-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-medium);
}

.sanitation-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.safety-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.safety-point-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: var(--bg-light);
    padding: 1.15rem 1.5rem;
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--primary-blush);
    transition: var(--transition-smooth);
}

.safety-point-card:hover {
    transform: translateX(4px);
    background-color: var(--primary-blush-light);
}

.safety-icon {
    color: var(--primary-blush);
    flex-shrink: 0;
}

.safety-point-card span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* --------------------------------------------------------------------------
   11. Gift Certificates & Loyalty Section
   -------------------------------------------------------------------------- */
.loyalty-section {
    background-color: var(--secondary-buff-light);
}

.loyalty-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.loyalty-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(234, 229, 225, 0.4);
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
}

.loyalty-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.loyalty-card-body {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.loyalty-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-blush-light);
    color: var(--primary-blush);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.loyalty-card h3 {
    font-size: 1.85rem;
    margin-bottom: 1rem;
}

.loyalty-description {
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.btn-card-action {
    background-color: var(--primary-blush);
    color: var(--bg-white);
    font-weight: 500;
    width: 100%;
}

.btn-card-action:hover {
    background-color: var(--primary-blush-dark);
}

/* Ribbon styling for Gifting visual */
.card-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--secondary-buff);
}

/* Stamp Card Visual */
.stamp-card-visual {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    width: 100%;
    margin-top: 10px;
}

.stamp-slot {
    aspect-ratio: 1;
    border-radius: 50%;
    border: 2px dashed var(--secondary-buff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-buff);
    transition: var(--transition-smooth);
}

.stamp-slot.stamped {
    border-style: solid;
    border-color: var(--primary-blush);
    background-color: var(--primary-blush-light);
    color: var(--primary-blush);
    position: relative;
}

.stamp-slot.stamped::after {
    content: '✓';
    font-size: 0.8rem;
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: var(--primary-blush);
    color: var(--bg-white);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.reward-slot {
    border-color: var(--primary-blush-dark);
    color: var(--primary-blush-dark);
    font-weight: 700;
    background-color: rgba(214, 137, 152, 0.05);
}

/* --------------------------------------------------------------------------
   12. Hours Section
   -------------------------------------------------------------------------- */
.hours-section {
    background-image: linear-gradient(rgba(46, 35, 37, 0.02), rgba(46, 35, 37, 0.02)), url('./images/blush-buff-exterior.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.hours-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 252, 250, 0.96);
    z-index: 1;
}

.hours-section .section-container {
    position: relative;
    z-index: 2;
}

.hours-box {
    max-width: 600px;
    background-color: var(--bg-white);
    margin: 0 auto;
    padding: 4rem 3.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(234, 229, 225, 0.4);
    text-align: center;
}

.hours-decorative-icon {
    color: var(--secondary-buff-dark);
    margin-bottom: 1rem;
    display: inline-block;
}

.hours-tagline {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--secondary-buff-dark);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.hours-title {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
}

.hours-table-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.hours-day {
    font-size: 1.05rem;
    font-weight: 500;
}

.hours-dots {
    flex-grow: 1;
    border-bottom: 1.5px dotted var(--border-color);
    margin: 0 10px;
}

.hours-time {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text-dark);
}

.closed-row {
    color: var(--text-muted);
}

.closed-row .hours-time {
    color: var(--text-muted);
    font-weight: 400;
}

.hours-note {
    font-size: 0.88rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 0;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

/* --------------------------------------------------------------------------
   13. Location and Contact Section
   -------------------------------------------------------------------------- */
.contact-section {
    background-color: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.contact-intro {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--secondary-buff-light);
    color: var(--secondary-buff-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.contact-detail-item:hover .detail-icon-circle {
    background-color: var(--primary-blush);
    color: var(--bg-white);
}

.detail-content h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.detail-content p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 0;
}

.online-presence-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-outline-profile {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    border-radius: var(--border-radius-sm);
    gap: 8px;
    font-weight: 500;
}

.btn-outline-profile:hover {
    border-color: var(--primary-blush);
    color: var(--primary-blush);
    background-color: var(--primary-blush-light);
}

/* Beautiful Interactive Custom Mock Map */
.mock-map-container {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
}

.mock-map-graphic {
    height: 350px;
    background-color: #EAE5E1;
}

.map-vector {
    width: 100%;
    height: 100%;
}

.map-card-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 5;
    display: flex;
    justify-content: center;
}

.btn-map-navigate {
    background-color: var(--text-dark);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    width: 100%;
    font-weight: 600;
}

.btn-map-navigate:hover {
    background-color: var(--primary-blush);
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   14. Parking Section
   -------------------------------------------------------------------------- */
.parking-section {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.parking-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 3rem 4rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(234, 229, 225, 0.4);
    text-align: center;
}

.parking-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.parking-icon-wrapper {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--secondary-buff-light);
    border: 2px solid var(--secondary-buff);
    display: flex;
    align-items: center;
    justify-content: center;
}

.parking-letter {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--secondary-buff-dark);
    font-size: 1.3rem;
    line-height: 1;
}

.parking-title {
    font-size: 2rem;
    font-weight: 500;
}

.parking-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   15. Footer Section
   -------------------------------------------------------------------------- */
.main-footer {
    background-color: var(--bg-footer);
    color: hsl(348, 60%, 90%);
    border-top: 2px solid var(--primary-blush);
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 80px 24px 40px 24px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1.1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand-col .footer-logo {
    height: 65px;
    width: auto;
    border-radius: var(--border-radius-sm);
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.6;
    color: hsl(348, 45%, 85%);
}

.footer-links-col h4, .footer-contact-col h4 {
    color: var(--secondary-buff);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-list a {
    font-size: 0.95rem;
    color: hsl(348, 45%, 82%);
}

.footer-links-list a:hover {
    color: var(--bg-white);
    padding-left: 4px;
}

.footer-contact-detail {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: hsl(348, 45%, 82%);
}

.footer-social-icons {
    display: flex;
    gap: 12px;
}

.footer-social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.06);
    color: hsl(348, 45%, 85%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.footer-social-icons a:hover {
    background-color: var(--primary-blush);
    color: var(--bg-white);
    border-color: var(--primary-blush);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.88rem;
    color: hsl(348, 40%, 75%);
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   16. Responsive Media Queries (Mobile Quality Focus)
   -------------------------------------------------------------------------- */

/* Responsive Breakpoint: 1024px (Tablets / Laptops) */
@media (max-width: 1024px) {
    .about-grid, .sanitation-grid, .contact-grid {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .footer-top {
        grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
        gap: 40px;
    }
}

/* Responsive Breakpoint: 768px (Mobile & Small Tablets) */
@media (max-width: 768px) {
    /* Section container padding */
    .section-container {
        padding: 70px 20px;
    }
    
    .section-title {
        font-size: 2.25rem;
    }

    /* Mobile Header Layout */
    .mobile-nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--bg-white);
        box-shadow: -10px 0 30px rgba(0,0,0,0.05);
        padding: 100px 30px 40px 30px;
        display: flex;
        flex-direction: column;
        z-index: 999;
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 1.15rem;
        display: block;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 0.75rem;
    }

    /* Hero section adjustments */
    .hero-section {
        height: 90vh;
        align-items: center;
        text-align: center;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-policy-box {
        text-align: left;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    /* Collapsing Grids to Single Column */
    .about-grid, .services-menu-grid, .sanitation-grid, .loyalty-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Collage layout on mobile */
    .about-image-collage {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .collage-item-large img {
        height: 300px;
    }
    
    .collage-item-small img {
        height: 180px;
    }

    /* Sanitation image height */
    .sanitation-img {
        height: 320px;
    }

    /* Footer collapsing */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand-col {
        text-align: center;
    }
    
    .footer-brand-col .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
}

/* Responsive Breakpoint: 480px (Extra Small Mobile) */
@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

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

    .service-category-card {
        padding: 1.5rem;
    }

    .service-name {
        font-size: 1.15rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .stamp-card-visual {
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
    }

    .hours-box {
        padding: 2.5rem 1.5rem;
    }

    .hours-title {
        font-size: 2rem;
    }

    .mock-map-graphic {
        height: 280px;
    }
    
    .parking-box {
        padding: 2rem;
    }
}

/* --- RVA Sites Notice Bar --- */
.rva-notice-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background-color: var(--text-dark, #2e2325);
    color: var(--bg-white, #ffffff);
    border-bottom: 2px solid var(--primary-blush, #e8a47f);
    font-size: 0.85rem;
    padding: 8px 16px;
    text-align: center;
    line-height: 1.4;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.rva-notice-bar a {
    color: var(--secondary-buff, #d8a47f);
    text-decoration: underline;
    font-weight: 700;
    white-space: nowrap;
    transition: var(--transition-smooth);
}

.rva-notice-bar a:hover {
    color: var(--primary-blush-light, #faf6f3);
}

/* Adjust header to sit below fixed notice bar */
.main-header {
    top: 36px !important;
}

@media (max-width: 768px) {
    .main-header {
        top: 56px !important;
    }
}

@media (max-width: 480px) {
    .main-header {
        top: 76px !important;
    }
}
