/* Global Styles */
:root {
    --primary-color: #79ac26;
    /* Nutco Green extracted from logo approx */
    --secondary-color: #333333;
    --accent-color: #f8f9fa;
    --dark-bg: #1a1a1a;
    --font-heading: 'Playfair Display', serif;
    /* Premium feel */
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--secondary-color);
    line-height: 1.7;
    overflow-x: hidden;
    /* Prevent horizontal scroll on mobile */
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #62901e;
    border-color: #62901e;
    transform: translateY(-2px);
}

.border-primary {
    border-color: var(--primary-color) !important;
}

.ls-2 {
    letter-spacing: 2px;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: #ffffff !important;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}

.nav-link {
    font-weight: 500;
    color: var(--secondary-color) !important;
    font-size: 0.95rem;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    min-height: 600px;
}

/* Cards & Hover Effects */
.shadow-hover {
    transition: all 0.3s ease;
}

.shadow-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.card:hover .icon-box {
    transform: scale(1.1);
}

/* Product Cards */
.product-card {
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

.object-fit-cover {
    object-fit: cover;
}

/* Sustainability Section */
.overlay-dark {
    position: relative;
    z-index: 1;
}

.overlay-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Dark overlay */
    z-index: -1;
}

/* Operations Section */
.bg-map {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('../img/map-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect for premium feel */
}

.card-hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

/* Footer */
footer {
    font-size: 0.9rem;
}

.hover-white:hover {
    color: #fff !important;
}

/* Form Styles */
.form-control::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #aeaeb2;
    opacity: 1;
    /* Firefox */
}


/* Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}