/* ======================
   VARIABLES & BASE STYLES
   ====================== */
:root {
    --primary-color: #8B4513;
    --secondary-color: #D2B48C;
    --accent-color: #A0522D;
    --light-bg: #FFF9F2;
    --text-color: #333333;
    --footer-bg: #f5f5f5;
    --footer-text: #5c4033;
    --footer-accent: #B8874D;
    --footer-box-bg: #ffffff;
    --footer-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --footer-border-radius: 0.5rem;
    --navbar-color: #9CAF88;
}

/* ======================
   GLOBAL STYLES
   ====================== */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: #fff;
    line-height: 1.7;
    padding: 80px 0 12px 0;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    color: #000; /* Black */
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }

/* ======================
   NAVIGATION
   ====================== */
.navbar {
    background-color: var(--navbar-color);
    box-shadow: 0 4px 18px rgba(92, 64, 55, 0.12),
    0 2px 6px rgba(184, 134, 11, 0.08);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 0;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    margin: 0 5px;
    padding: 8px 15px;
    transition: all 0.3s;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

/* ======================
   SEARCH BAR
   ====================== */
.search-container {
    transition: all 0.3s ease;
    top: 70px;
   /* background-color: #ad871d; /* Light grey background – change to your desired color */
}

/* ======================
   PRODUCT STYLES
   ====================== */
.card {
    border: 1px solid #e0d6c8;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    height: 250px;
    object-fit: contain;
    background-color: #fff;
    padding: 10px;
}

.card-body {
    padding: 25px;
}

.card-title {
    color: var(--primary-color);
    font-weight: 700;
}

.card-text {
    font-size: 1rem;
}

.btn-sandalwood {
    background-color: #cba06c;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: background-color 0.3s ease;
}

.btn-sandalwood:hover {
    background-color: #b8874d;
}

/* ======================
   ABOUT SECTION
   ====================== */
#about {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.about-img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ======================
   FOOTER STYLES
   ====================== */
.footer-container {
    background-color: var(--footer-bg);
    border-top: 1px solid #e0e0e0;
    padding: 60px 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-card {
    background-color: var(--footer-box-bg);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--footer-box-shadow);
    padding: 1.5rem;
    border-radius: var(--footer-border-radius);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.footer-card-header {
    color: white;
    background-color: var(--navbar-color);
    padding: 10px 15px;
    margin: -1.5rem -1.5rem 1rem -1.5rem;
    border-radius: var(--footer-border-radius) var(--footer-border-radius) 0 0;
    font-weight: 600;
}

.footer-text {
    color: var(--footer-text);
    line-height: 1.6;
    font-size: 0.9rem;
}

.highlight-text {
    color: var(--footer-accent);
    font-weight: 600;
}

/* Contact Info */
.footer-contact-info {
    list-style: none;
    padding: 0;
}

.footer-contact-info li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.footer-contact-info i {
    color: var(--footer-accent);
    margin-right: 10px;
    margin-top: 3px;
}

/* Copyright Bar */
.copyright-bar {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 0;
    width: 100%;
    text-align: center;
    font-size: 0.85rem;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    color: var(--footer-text);
    background: rgba(0,0,0,0.03);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--footer-accent);
    background: rgba(212, 163, 115, 0.1);
}

/* WhatsApp Button */
.whatsapp-btn {
    background-color: #25D366;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    color: white;
}

/* ======================
   RESPONSIVE ADJUSTMENTS
   ====================== */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .footer-column {
        flex: 100%;
    }

    .product-img {
        max-width: 90%;
        margin: 10px auto;
        display: block;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}
