/* Custom Styles - Eco Friendly Packaging Solutions */

/* Logo sizing */
.logo-img {
    max-width: 120px !important;
    max-height: 120px !important;
    width: auto;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

/* Navbar brand styling */
.navbar-brand {
    font-weight: 600;
}

/* Hero section */
.hero-section {
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    color: white;
    min-height: 400px;
    display: flex;
    align-items: center;
}

/* Content sections */
.content-section {
    padding: 4rem 0;
}

/* Card enhancements */
.card {
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-text {
    flex-grow: 1;
}

.row .card {
    height: 100%;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}

/* Image styling */
.img-fluid {
    max-height: 400px;
    object-fit: cover;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Active nav link */
.navbar-nav .nav-link.active {
    color: #6b9f78 !important;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-img {
        max-width: 100px !important;
        max-height: 100px !important;
    }
    
    .hero-section {
        min-height: 300px;
    }
    
    .display-4 {
        font-size: 2rem;
    }
}

