/* --- General Styles --- */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f7f5f0;
    color: #18211b;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header --- */
.header {
    background-color: rgba(247, 245, 240, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 50;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.04em;
}

.accent {
  color: #2f7d4a;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-links a {
    text-decoration: none;
    color: #333c35;
    font-size: 0.9rem;
    position: relative;
    transition: color 0.2s ease;
}
.nav-links a:hover { color: #2f7d4a; }


/* --- Hero Section --- */
.hero {
    background-image: url('meeva-oil.JPG');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 0;
    position: relative;
}

/* Add a semi-transparent overlay for better text readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* --- Buttons (Copied from styles.css for consistency) --- */
.btn {
  border: none;
  outline: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  gap: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.nav-buy-btn, .btn-primary {
  background-color: #2f7d4a;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(47, 125, 74, 0.35);
}

.nav-buy-btn:hover, .btn-primary:hover {
  background-color: #2a6f42;
  transform: translateY(-2px);
  box-shadow: 0 7px 25px rgba(47, 125, 74, 0.45);
}

.nav-buy-btn {
  padding: 8px 16px;
}


/* --- Featured Product --- */
.featured-product {
    padding: 80px 0;
    text-align: center;
}

.featured-product h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.product-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 400px; /* Constrain card width */
    margin: 0 auto;
}

.product-card img {
    max-width: 100%;
    height: auto;
    border-radius: 12px; /* Softer edges for the image */
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #5c6157;
}

/* --- Footer --- */
.footer {
    background-color: #1b241e;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    margin: 0;
}
