/* Velmora Spices Custom Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&family=Open+Sans:wght@400;500;600;700&display=swap');

:root {
    --velmora-primary: #2d6016;
    --velmora-primary-dark: #1f450e;
    --velmora-primary-light: #eef5eb;
    --velmora-accent: #d4a373;
    --velmora-gold: #c9933b;
    --velmora-dark: #1e251b;
    --velmora-gray-bg: #f8f9fa;
    --velmora-font-heading: 'Merriweather', serif;
    --velmora-font-body: 'Open Sans', sans-serif;
}

body {
    font-family: var(--velmora-font-body);
    color: #333333;
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: var(--velmora-font-heading);
    font-weight: 700;
    color: var(--velmora-dark);
}

/* Top Bar */
.top-bar {
    background-color: var(--velmora-dark);
    color: #e0e0e0;
    font-size: 0.85rem;
    padding: 6px 0;
}
.top-bar a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s ease;
}
.top-bar a:hover {
    color: var(--velmora-gold);
}

/* Navbar */
.navbar {
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    background-color: #ffffff;
}
.navbar-brand img {
    height: 85px;
    width: auto;
}
.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--velmora-dark) !important;
    padding: 8px 16px !important;
    transition: color 0.2s ease;
}
.nav-link:hover, .nav-link.active {
    color: var(--velmora-primary) !important;
}
.btn-velmora {
    background-color: var(--velmora-primary);
    color: #ffffff;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 30px;
    border: none;
    transition: all 0.3s ease;
}
.btn-velmora:hover {
    background-color: var(--velmora-primary-dark);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(45, 96, 22, 0.3);
    transform: translateY(-1px);
}
.btn-velmora-outline {
    background-color: transparent;
    color: var(--velmora-primary);
    border: 2px solid var(--velmora-primary);
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 30px;
    transition: all 0.3s ease;
}
.btn-velmora-outline:hover {
    background-color: var(--velmora-primary);
    color: #ffffff;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(238, 245, 235, 0.54) 0%, rgba(255, 255, 255, 0.62) 100%), url('../images/bk.png') center / cover no-repeat;
    padding: 80px 0 60px 0;
    position: relative;
}
.hero-badge {
    background-color: rgba(45, 96, 22, 0.1);
    color: var(--velmora-primary);
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-title {
    font-size: 2.8rem;
    line-height: 1.25;
    color: var(--velmora-dark);
    margin-bottom: 20px;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: #555555;
    margin-bottom: 30px;
    line-height: 1.6;
}
.hero-img-box {
    text-align: center;
    position: relative;
}
.hero-img-box img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15));
}
.stat-box {
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border-left: 4px solid var(--velmora-primary);
}
.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--velmora-primary);
}
.stat-label {
    font-size: 0.85rem;
    color: #666666;
    margin: 0;
}

/* Section Titles */
.section-tag {
    color: var(--velmora-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: block;
}
.section-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--velmora-dark);
}
.section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--velmora-primary);
    margin: 0 auto 25px auto;
    border-radius: 2px;
}

/* Spice Product Cards */
.spice-card {
    background: #ffffff;
    border: 1px solid #eef2ec;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.spice-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(45, 96, 22, 0.12);
    border-color: rgba(45, 96, 22, 0.3);
}
.spice-img-wrapper {
    background: radial-gradient(circle, #f7faf5 0%, #edf4ea 100%);
    text-align: center;
    position: relative;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}
.spice-img-wrapper.justify-end {
    justify-content: flex-end;
}
.spice-img-wrapper img {
    max-height: 350px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.1));
}
.spice-card:hover .spice-img-wrapper img {
    transform: scale(1.08) rotate(2deg);
}
.spice-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: var(--velmora-primary);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    z-index: 999;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
}
.spice-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.spice-card-title {
    font-size: 1.35rem;
    margin-bottom: 8px;
    color: var(--velmora-dark);
}
.spice-desc {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}
.spice-specs {
    background-color: var(--velmora-primary-light);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.8rem;
    color: var(--velmora-primary-dark);
    margin-bottom: 15px;
}
.spice-specs span {
    display: inline-block;
    margin-right: 12px;
    font-weight: 600;
}

/* Feature Cards */
.feature-box {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 16px;
    border: 1px solid #eef2ec;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    height: 100%;
}
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-left: 4px solid var(--velmora-primary);
}
.feature-icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--velmora-primary-light);
    color: var(--velmora-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Certifications Section */
.cert-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eef2ec;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.cert-card img {
    max-height: 80px;
    max-width: 100%;
    margin-bottom: 10px;
    object-fit: contain;
}

/* Footer */
.footer {
    background-color: var(--velmora-dark);
    color: #d0d5ce;
    padding: 60px 0 20px 0;
}
.footer h5 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}
.footer a {
    color: #b0b8ac;
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer a:hover {
    color: #ffffff;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
    font-size: 0.85rem;
}

/* Floating Action Buttons */
.floating-btn-group {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.floating-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    text-decoration: none !important;
}
.floating-btn:hover {
    transform: scale(1.1);
    color: #ffffff;
}
.floating-whatsapp {
    background-color: #25d366;
}
.floating-quote {
    background-color: var(--velmora-primary);
}

/* Modal Form Styling */
.modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
}
.modal-header {
    background: linear-gradient(135deg, var(--velmora-primary) 0%, var(--velmora-primary-dark) 100%);
    color: #ffffff;
    padding: 20px 30px;
}
.modal-header .modal-title {
    color: #ffffff;
    font-size: 1.35rem;
}
.modal-header .btn-close {
    filter: invert(1);
}
.spice-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
    max-height: 180px;
    overflow-y: auto;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}
.spice-checkbox-item {
    font-size: 0.85rem;
}
.spice-checkbox-item input[type="checkbox"] {
    accent-color: var(--velmora-primary);
}

@media (max-width: 768px) {
    .navbar-brand img {
        height: 60px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .floating-btn-group {
        bottom: 15px;
        right: 15px;
    }
    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
}

.text-muted {
    --bs-text-opacity: 1;
    color: rgb(255 255 255 / 75%) !important;
}
