:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --body-bg: #f8f9fa;
    --card-radius: 12px;
}

/* Global Standardizations */
body {
    background-color: var(--body-bg);
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    overflow-x: hidden;
}

/* Smooth Scrolling for Desktop Navigation Underlines */
html {
    scroll-behavior: smooth;
}

/* Card Enhancements for Homepage Tiles */
.custom-tile-card {
    border-radius: var(--card-radius);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    border: none;
}
.custom-tile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}

/* Ultra-lightweight custom grid helper for tiny screens */
@media (max-width: 350px) {
    .col-6 {
        width: 100% !important;
    }
}

/* Utility Class for Micro-Buttons */
.btn-xs {
    padding: 2px 6px;
    font-size: 11px;
    border-radius: 4px;
}

.logo-name {
            font-family: 'The Artisan', serif;
            font-size: 80px;
            font-weight: 600;
        }





/* Theme Injection Placeholder Hook */
/* ==========================================
   PROJECT SPECIFIC OVERRIDES GO HERE
   ========================================== */
   
   /* --- PREMIUM VISUAL WRAPPERS & IMAGE ENFORCEMENTS --- */
.hero-image-frame, .card-img-frame, .gallery-img-frame, #modalTargetFrame {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #0b0f19; /* Deep luxury dark background fallback */
    border-radius: 16px;
}

/* Responsive Fluid Sizing Constraints */
.hero-image-frame { height: 400px; }
.card-img-frame { height: 240px; }
.gallery-img-frame { height: 180px; }
#modalTargetFrame { height: 450px; }

@media (min-width: 768px) {
    .hero-image-frame { height: 550px; }
    .card-img-frame { height: 260px; }
}
@media (min-width: 1200px) {
    .hero-image-frame { height: 650px; }
}

/* THE FIX: Show 100% of the image perfectly without clipping */
.hero-image-frame img, .card-img-frame img, .gallery-img-frame img, #modalTargetImg {
    width: 100%;
    height: 100%;
    object-fit: contain !important; /* Forces the entire image to stay visible */
    position: relative;
    z-index: 2;
}

/* THE MAGIC: Blurry background clone so there are no ugly empty black bars */
.img-blur-bg {
    position: absolute;
    top: -20px; left: -20px; width: calc(100% + 40px); height: calc(100% + 40px);
    object-fit: cover !important;
    filter: blur(25px) brightness(0.45);
    z-index: 1;
    transform: scale(1.1);
}

/* --- UI LUXURY REFINEMENTS --- */
.hover-card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}
.hover-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08) !important;
}
.cursor-pointer { cursor: pointer; }

/* Elegant Floating Badges */
.glass-badge {
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* Custom Text Truncation */
.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
   
   
   
   
   