/* ===== Base Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== Body Styling ===== */
body {
  font-family: "Georgia", "Times New Roman", serif;
  background-color: #f4f7f2; /* soft off-white green */
  color: #2f3e2f; /* deep earthy green */
  line-height: 1.6;
  padding: 20px;
}


/* ===== Container ===== */

.container {
  margin-top: 20px;
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* ===== Headings ===== */
h1, h2, h3 {
  font-family: "Palatino Linotype", serif;
  color: #3e5c3e;
  margin-bottom: 15px;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.6rem;
  border-bottom: 2px solid #dbe6d8;
  padding-bottom: 5px;
}

/* ===== Paragraph Styles ===== */

/* Default paragraph */
p {
  margin-bottom: 15px;
  font-size: 1rem;
}

/* Intro paragraph (slightly larger, welcoming tone) */
p.intro {
  font-size: 1.2rem;
  color: #4a6b4a;
  font-weight: 500;
}

/* Highlighted natural tip / callout */
p.highlight {
  background-color: #e6f2e6;
  border-left: 5px solid #7aa874;
  padding: 12px 15px;
  border-radius: 6px;
  font-style: italic;
}

/* Muted supporting text */
p.muted {
  color: #6c7a6c;
  font-size: 0.95rem;
}

/* Product description paragraph */
p.product {
  background-color: #f9fbf8;
  border: 1px solid #e2e8e0;
  padding: 15px;
  border-radius: 8px;
}

/* ===== Links ===== */
a {
  color: #5a8f5a;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
  color: #3e6f3e;
}

/* ===== Buttons (optional) ===== */
button {
  background-color: #7aa874;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.95rem;
	transition: background-color 0.2s ease, transform 0.1s ease;
}

button:hover {
  background-color: #5f8c5f;
}
button:active {
  transform: scale(0.98);
}

/* ===== Subtle Divider ===== */
hr {
  border: none;
  height: 1px;
  background: #dbe6d8;
  margin: 25px 0;
}/* CSS Document */

/* ===== Navigation Bar ===== */
.navbar {
  background-color: #3e5c3e; /* earthy green */
  border-radius: 10px;
  margin-bottom: 25px;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 12px 0;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 0.7;
}

.logo {
  text-align: center;
  margin-bottom: 20px;
}

.logo img {
  max-width: 70%;
  height: auto;
}

/* Smaller logo for inner pages */
.logo.small img {
  max-width: 140px;
}

.footer {
  margin-top: 40px;
}

.lang-switch {
  text-align: right;
  margin-bottom: 10px;
  font-size: 0.9rem;
}


.product-category {
  margin-bottom: 25px;
  padding: 15px;
  background-color: #f9fbf8;
  border: 1px solid #e2e8e0;
  border-radius: 8px;
  transition: transform 0.15s ease;
}

.product-category:hover {
  transform: translateY(-2px);
}

/* Mission image block */
.mission-image {
  position: relative;
  margin: 25px 0;
  text-align: center;
}

.mission-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

/* Big overlay text */
.mission-overlay {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  text-transform: lowercase;

  color: rgba(255, 255, 255, 0.92);
  font-size: 1.4rem;
  font-weight: 500;

  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.65);
  padding: 6px 12px;
}

/* Small credit text */
.mission-credit {
  font-size: 0.75rem;
  color: #555;
  text-align: right;
  margin-top: 6px;
  margin-bottom: 20px;	
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2f3e2f;
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  z-index: 9999;
  font-size: 0.9rem;
}

.cookie-buttons button {
  background: #7aa874;
  border: none;
  padding: 8px 14px;
  border-radius: 20px;
  color: white;
  cursor: pointer;
}

@media (max-width: 600px) {
  body {
    padding: 10px;
  }

  .container {
    padding: 20px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }
}