/* Diamond Lash & Nail — Main Stylesheet
   Red & black palette with elegant, minimal branding */

/* ========================================
   Custom Properties
   ======================================== */
:root {
    --gold: #A01020;
    --gold-light: #C41830;
    --gold-dark: #7A0C18;
    --dark: #111111;
    --dark-soft: #1a1a1a;
    --bg-cream: #FAFAFA;
    --bg-light: #F2F2F2;
    --border: #E0E0E0;
    --text-muted: #7a7a8a;
}

/* ========================================
   Base Typography & Colors
   ======================================== */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-cream);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    color: var(--dark);
}

/* ========================================
   Links
   ======================================== */
a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover {
    color: var(--gold-dark);
    text-decoration: none;
}

/* ========================================
   Images
   ======================================== */
img {
    height: auto;
    max-width: 100%;
}

/* ========================================
   Bootstrap Card Overrides
   ======================================== */
.card {
    background-color: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: var(--gold);
    border-color: var(--gold);
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: var(--gold-dark);
    border-color: var(--gold-dark);
    color: #FFFFFF;
}

.btn-outline-primary {
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline-primary:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: #FFFFFF;
}

/* ========================================
   Navbar
   ======================================== */
.navbar {
    background-color: #FFFFFF !important;
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
}

.navbar-brand {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--dark) !important;
    font-weight: 700;
    font-size: 1.3rem;
}

/* Split-tone logo: "Diamond" dark bold, "Lash & Nail" red italic */
.brand-diamond {
    font-weight: 700;
    color: var(--dark);
}
.brand-lash {
    font-weight: 400;
    font-style: italic;
    color: var(--gold);
}

.nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.btn-book-now {
    background-color: var(--gold);
    color: #FFFFFF !important;
    border-radius: 6px;
    padding: 0.4rem 1.2rem !important;
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-book-now:hover {
    background-color: var(--gold-dark);
    color: #FFFFFF !important;
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-cream) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-label {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

/* ========================================
   Section Headers with Accent Underline
   ======================================== */
.section-heading {
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--gold);
}

/* ========================================
   Section Spacing
   ======================================== */
.section {
    padding: 5rem 0;
}

.section-light {
    background-color: var(--bg-light);
}

/* ========================================
   Service Cards
   ======================================== */
.service-card {
    border-left: 3px solid var(--gold);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

/* ========================================
   Gallery Hover Effects
   ======================================== */
.gallery-item {
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    transition: transform 0.4s ease;
}

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

/* ========================================
   Footer
   ======================================== */
footer {
    background: linear-gradient(180deg, #111111 0%, #0a0a0a 100%) !important;
    color: #c5c5d2;
}

footer h5, footer h6 {
    color: #FFFFFF;
}

footer a {
    color: #c5c5d2;
}

footer a:hover {
    color: var(--gold);
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-right: 1rem;
}

/* ========================================
   Text Utilities
   ======================================== */
.text-muted {
    color: var(--text-muted) !important;
}

.text-accent {
    color: var(--gold);
}

/* ========================================
   Border Utilities
   ======================================== */
.border, .border-top, .border-bottom {
    border-color: var(--border) !important;
}

/* ========================================
   Background Utilities
   ======================================== */
.bg-light {
    background-color: var(--bg-light) !important;
}

/* ========================================
   Typography Sizes
   ======================================== */
.small, small {
    font-size: 0.875em;
}

.lead {
    font-size: 1.15em;
    color: var(--text-muted);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   Pagination
   ======================================== */
.page-link {
    color: var(--gold);
}
.page-link:hover {
    color: var(--gold-dark);
}
.page-item.active .page-link {
    background-color: var(--gold);
    border-color: var(--gold);
}

/* ========================================
   Breadcrumbs
   ======================================== */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.breadcrumb-item a {
    color: var(--gold);
}

.breadcrumb-item.active {
    color: var(--text-muted);
}

/* ========================================
   CTA Banner (blog post bottom)
   ======================================== */
.cta-banner {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    color: #FFFFFF;
}

.cta-banner h3 {
    color: #FFFFFF;
    margin-bottom: 0.75rem;
}

.cta-banner p {
    color: #c5c5d2;
    margin-bottom: 1.5rem;
}
