/*
Theme Name: Owadah Honey
Theme URI: https://honey.electrobaz.com
Description: Simple, clean theme for Pure Sundarban Wild Honey - Bangladesh. Khoti Sundarban Wild Honey.
Author: Owadah Honey
Version: 1.0
Text Domain: owadah-honey
*/

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2c2c2c;
  background: #e8dfc8;
  background: linear-gradient(180deg, #e8dfc8 0%, #f5f0e0 50%, #e8dfc8 100%);
  min-height: 100vh;
}

/* ===== HEADER - Full width dark green ===== */
header {
  background: #0d3d1f !important;
  background: linear-gradient(180deg, #0d3d1f 0%, #1a5528 100%) !important;
  color: #fff !important;
  padding: 1rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  width: 100%;
}

header .container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

header .brand {
  font-size: 1.4rem;
  font-weight: bold;
  color: #f4c430 !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: #fff !important;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: background-color 0.2s;
}

nav a:hover,
nav a:focus {
  background-color: rgba(244, 196, 48, 0.35);
}

/* ===== MAIN CONTENT ===== */
main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  min-height: 60vh;
}

/* ===== TYPOGRAPHY ===== */
h1 {
  font-size: 1.85rem;
  color: #0d3d1f !important;
  margin-bottom: 1rem;
  line-height: 1.4;
}

h2 {
  font-size: 1.4rem;
  color: #1a5528 !important;
  margin: 1.5rem 0 0.75rem;
  border-bottom: 3px solid #c9a227;
  padding-bottom: 0.35rem;
}

h3 {
  font-size: 1.15rem;
  color: #0d3d1f !important;
  margin: 1rem 0 0.5rem;
}

p {
  margin-bottom: 1rem;
  text-align: justify;
}

/* ===== SECTIONS ===== */
section {
  margin-bottom: 2rem;
}

.intro {
  background: linear-gradient(135deg, #fef9e7 0%, #fdf6e3 100%) !important;
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 5px solid #c9a227 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.benefits-list {
  list-style: none;
}

.benefits-list li {
  padding: 0.6rem 0 0.6rem 2.2rem;
  position: relative;
  color: #2c2c2c;
}

.benefits-list li::before {
  content: "🍯";
  position: absolute;
  left: 0;
}

/* ===== CTA BUTTON - WhatsApp green ===== */
.cta-button {
  display: inline-block;
  background: #25d366 !important;
  background: linear-gradient(180deg, #34e077 0%, #25d366 100%) !important;
  color: #fff !important;
  padding: 0.9rem 1.75rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.cta-button:hover,
.cta-button:focus {
  background: #20bd5a !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

/* ===== BLOG LIST ===== */
.blog-list {
  list-style: none;
}

.blog-item {
  background: #fff !important;
  border: 2px solid #c9a227 !important;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: box-shadow 0.2s, transform 0.2s;
}

.blog-item:hover {
  box-shadow: 0 6px 20px rgba(13, 61, 31, 0.2);
  transform: translateY(-2px);
}

.blog-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.blog-item .blog-content {
  padding: 1.25rem;
}

.blog-item h2 {
  margin: 0 0 0.5rem;
  border: none;
  padding: 0;
  font-size: 1.25rem;
  color: #0d3d1f !important;
}

.blog-item p {
  margin: 0;
  font-size: 0.95rem;
  color: #444;
}

/* ===== BLOG POST (Single) ===== */
article img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 1rem 0;
  display: block;
  border: 4px solid #c9a227;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

article a {
  color: #1a5528;
  font-weight: bold;
}

article a:hover {
  color: #0d3d1f;
  text-decoration: underline;
}

/* ===== FOOTER - Full width dark green ===== */
footer {
  background: #0d3d1f !important;
  background: linear-gradient(180deg, #1a5528 0%, #0d3d1f 100%) !important;
  color: #fff !important;
  text-align: center;
  padding: 1.5rem;
  margin-top: 2rem;
  width: 100%;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}

footer {
  color: #fff;
}

footer p {
  color: #fff;
  margin: 0.25rem 0;
}

footer .brand {
  font-weight: bold;
  color: #f4c430 !important;
  font-size: 1.2rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.contact-info {
  background: #fef9e7 !important;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 1rem 0;
  border: 2px solid #c9a227;
}

/* ===== RESPONSIVE (Mobile) ===== */
@media (max-width: 600px) {
  header .container {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    flex-wrap: wrap;
  }

  h1 {
    font-size: 1.5rem;
  }

  main {
    padding: 1.5rem 1rem;
  }

  .blog-item img {
    height: 180px;
  }
}
