/* Chef Vasanth Custom Styles */

/* Brand Colors */
:root {
    --brand-gold: #d4a017;
    --brand-dark: #121212;
    --brand-dark-sec: #1e1e1e;
    --brand-text: #f0f0f0;
}

body {
    background-color: var(--brand-dark) !important;
    color: var(--brand-text) !important;
    font-family: 'Outfit', sans-serif;
    /* Assuming font is loaded or falls back */
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--brand-gold) !important;
    font-weight: 700;
}

/* Header */
.header-area,
.site-header {
    background-color: var(--brand-dark-sec) !important;
    border-bottom: 1px solid rgba(212, 160, 23, 0.2);
}

.main-menu ul li a {
    color: #ffffff !important;
}

.main-menu ul li a:hover {
    color: var(--brand-gold) !important;
}

/* Buttons */
.arolax-btn,
.button,
.btn {
    background-color: var(--brand-gold) !important;
    color: #fff !important;
    border-radius: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.arolax-btn:hover {
    background-color: #b88a10 !important;
}

/* Footer */
footer {
    background-color: #000 !important;
    border-top: 1px solid var(--brand-gold);
}

/* Chat Widget Overrides (if needed) */
#ai-chat-header {
    background: var(--brand-gold) !important;
    color: #000 !important;
}

/* Product/Recipe Cards */
.product-item,
.post-item {
    background: var(--brand-dark-sec);
    border: 1px solid #333;
    transition: transform 0.3s;
}

.product-item:hover,
.post-item:hover {
    transform: translateY(-5px);
    border-color: var(--brand-gold);
}