/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@300;400;600&display=swap');

:root {
    --ayur-green: #2E7D32;
    --ayur-dark: #1B5E20;
    --ayur-gold: #C5A059;
    --ayur-light: #F1F8E9;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #333;
}


h1, h2, h3, .navbar-brand {
    font-family: 'Playfair Display', serif;
    color: var(--ayur-dark);
}

.navbar {
    border-bottom: 4px solid var(--ayur-gold);
    background-color: white !important;
}

.nav-link.active {
    color: var(--ayur-green) !important;
    font-weight: 600;
}

.hero-section {
    background: linear-gradient(rgba(0, 35, 102, 0.7), rgba(46, 125, 50, 0.7)), url('child.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
}

.card {
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.btn-primary {
    background-color: var(--ayur-green);
    border: none;
    border-radius: 25px;
    padding: 10px 30px;
}

.btn-primary:hover {
    background-color: var(--ayur-gold);
}

.footer {
    background-color: var(--ayur-dark);
    color: white;
    padding: 40px 0;
    margin-top: 60px;
}

/* Updated in style.css */
.product-img-container {
    background-color: #fcfcfc; /* Light background to frame the product */
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px; /* Consistent height for the row */
    overflow: hidden;
}

.product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* This ensures the FULL image is visible */
    transition: transform 0.5s ease;
}

.card:hover .product-img {
    transform: scale(1.05); /* Gentle zoom effect on hover */
}}