/*
Theme Name: Limelight Clothing Custom
Theme URI: https://softbizhub.com
Author: Jagjit Singh
Author URI: https://softbizhub.com
Description: Bespoke luxury men's wear theme featuring custom multi-image hover loop mechanics and responsive layout grids. Crafted natively for optimized performance.
Version: 1.0.0
Text Domain: limelight-clothing-custom
Update URI: false
*/

/* Core Design System Variables */
:root {
    --limelight-black: #111111;
    --limelight-charcoal: #1a1a1a;
    --limelight-gold: #D4AF37;
    --limelight-soft-gold: #f3e5ab;
    --limelight-white: #ffffff;
    --limelight-grey: #aaaaaa;
    --limelight-sans: 'Montserrat', sans-serif;
}

/* Base Body Resets */
body {
    background-color: var(--limelight-black);
    color: var(--limelight-white);
    font-family: var(--limelight-sans);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Custom Component Layout Styles */
.limelight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.limelight-card {
    background-color: var(--limelight-charcoal);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.limelight-card:hover {
    transform: translateY(-5px);
}

.limelight-btn {
    display: inline-block;
    background-color: var(--limelight-gold);
    color: var(--limelight-black);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.limelight-btn:hover {
    background-color: var(--limelight-soft-gold);
}