/* ==================== General Styles ==================== */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

body {
    padding-top: 70px; /* Add top padding to prevent content from hiding behind navbar */
}
/* ==================== Hero Section ==================== */
#hero{
    position: relative;
    background: url('./images/bg1.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 100px 20px;
    overflow: hidden;
  }
  
  #hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 0;
  }
  
  #hero h1,
  #hero p {
    position: relative;
    z-index: 1;
  }

#hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

#hero p {
    font-size: 1.5rem; color: white;
}

/* ==================== Section Titles ==================== */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 50px;
}

/* ==================== Product Cards ==================== */
.card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: none;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-title {
    font-size: 1.25rem;
    color: #006400; /* Dark Green */
}

.card-text {
    font-size: 0.95rem;
    color: #555;
}

/* ==================== Responsive Design ==================== */
@media (max-width: 768px) {
    #hero {
        padding: 50px 20px;
    }
    .section-title {
        font-size: 2rem;
    }
    .section-description {
        font-size: 1rem;
    }
}
