/* Ensure full-height layout for sticky footer */
html,
body {
    height: 100%;
    background-color: #0f3c2e;
    /* Dark green background */
    color: #f6d743;
    /* Yellow text */
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
}

.navbar {
    padding: 25px;
}

/* Navbar brand */
.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: #f6d743 !important;
}

/* Headings */
h1,
h2,
h3,
h4,
h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #f6d743;
}

/* Paragraphs and body text */
p {
    font-size: 1rem;
    font-weight: 400;
    color: #f6d743;
}

/* Product Image */
.product-img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
}


/* Hero Section */
.hero-section {
    background: url("/static/images/hero-bg.403de7fc1c9f.jpg") center center/cover no-repeat;
    height: 80vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    border-bottom: 6px solid #1c3b2c;
    /* subtle divider into Why Us section */
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 60px 30px;
    border-radius: 10px;
}

.text-yellow {
    color: #f6d743;
}

/* Navbar Text Yellow */
.navbar-dark .navbar-nav .nav-link {
    color: #f6d743 !important;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #fff !important;
}



@media (max-width: 768px) {
    .product-img {
        height: 150px;
    }
}

/* Card Styling */
.card {
    border: none;
    border-radius: 0.5rem;
    background-color: #174c38;
    /* Slightly darker card */
    color: #f6d743;
}

.card-title {
    font-weight: bold;
}

/* Buttons */
.btn-primary {
    background-color: #f6d743;
    color: #0f3c2e;
    border: none;
}

.btn-primary:hover {
    background-color: #e6c200;
    color: #0f3c2e;
}

.btn-outline-primary {
    border-color: #f6d743;
    color: #f6d743;
}

.btn-outline-primary:hover {
    background-color: #f6d743;
    color: #0f3c2e;
}

/* Why Choose Us section */
section.bg-light {
    background-color: #1c3b2c !important;
    color: #f6d743;
}

/* Icons */
.bi {
    color: #f6d743;
}

/* Hero overlay fix */
.hero-overlay {
    background-color: rgba(0, 0, 0, 0.5);
}

/* Sticky Footer Support */
body.d-flex.flex-column {
    min-height: 100vh;
}

/* Footer */
footer {
    background-color: #111;
    color: #f6d743;

}