/*
 * Brand: Mava & Ghee Career
 * Theme: Luxury Organic Green & Gold
 */

:root {
    --primary-green: #1b4332;
    --dark-green: #081c15;
    --accent-gold: #D4AF37;
    --amber-gold: #B8860B;
    --cream-bg: #FAF6F0;
    --white: #FFFFFF;
    --text-dark: #222222;
    --text-muted: #666666;
    --border-color: #E2D7C5;
}

body {
    background-color: var(--cream-bg);
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, .brand-font {
    font-family: 'Playfair Display', serif;
}

/* Header & Top Bar */
.top-bar {
    background-color: var(--dark-green);
    color: var(--accent-gold);
    font-size: 0.85rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.navbar {
    background-color: var(--primary-green) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.navbar-brand span {
    color: var(--accent-gold);
    font-weight: 700;
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Gold Buttons */
.btn-gold {
    background: linear-gradient(135deg, var(--accent-gold), var(--amber-gold));
    color: var(--dark-green);
    font-weight: 700;
    border: none;
    border-radius: 30px;
    padding: 10px 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--amber-gold), var(--accent-gold));
    color: var(--white);
    transform: translateY(-2px);
}

/* Product Cards */
.product-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(27, 67, 50, 0.12);
}

.product-card .badge-discount {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--accent-gold);
    color: var(--dark-green);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 12px;
}

.product-title {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-green);
}

.product-mrp {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-left: 6px;
}

/* Floating Widgets */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: white;
}

/* Footer */
footer {
    background-color: var(--dark-green);
    color: var(--white);
    padding-top: 50px;
    padding-bottom: 20px;
}

footer a {
    color: #A3C2B2;
    text-decoration: none;
    transition: color 0.3s;
}

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