body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #333; 
  background-color: #F7F7F7; 
  font-size: 16px;
  display: flex;
  flex-direction: column;
  min-height: 100vh; 
}

.container {
  max-width: 800px; 
  margin: 20px auto; 
  padding: 20px;
  background-color: #D3D3D3; 
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header {
  background-color: #333;
  color: #fff;
  padding: 15px;
  text-align: center;
  border-bottom: 2px solid #008080; 
  margin-bottom: 20px;
}

header h1 {
font-family: 'Domine', serif;
font-size: 2em; 
margin-bottom: 10px;
}

header nav ul {
display: flex;
justify-content: center;
padding: 0;
}

header nav li {
margin: 0 15px;
}

header nav a {
color: #fff;
text-decoration: none;
transition: color 0.3s ease; 
}

header nav a:hover {
color: #008080; 
}

main {
  flex: 1; 
  padding: 20px;
  border-radius: 8px;
}

.content-box {
  background-color: #F7F7F7; 
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2, h3 {
  font-family: 'Domine', serif;
  color: #333; 
  margin-bottom: 15px;
}

p, ul {
  color: #333;
  margin-bottom: 15px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 15px auto; 
  border-radius: 8px;
}

.flex-container {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
margin-bottom: 20px;
}

footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
  margin-top: 20px;
  border-radius: 5px;
}

footer .container {
  max-width: 100%;
}

footer .row {
  align-items: flex-start;
}

footer .col-md-6 {
  padding: 10px;
}

footer h4 {
  color: #555;
  margin-bottom: 10px;
}

footer p {
  font-size: 0.9em;
  line-height: 1.6;
}

footer a {
  color: #fff;
  text-decoration: underline;
}

footer a:hover {
  color: #008080;
}

footer img {
  transition: transform 0.3s ease;
}

footer img:hover {
  transform: scale(1.1);
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color:rgba(0, 0, 0, 0.9); 
  color: #fff;
  padding: 15px;
  text-align: center;
  z-index: 1000;
  display: none;
}

.cookie-popup a {
  color: #008080;
  text-decoration: underline;
}

.cookie-popup button {
  background-color: #008080;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 10px;
}

@media (max-width: 768px) {
  .container {
    width: 95%;
    padding: 10px;
  }

  header nav ul {
    flex-direction: column;
    align-items: center;
  }

  header nav li {
    margin: 5px 0;
  }
}
#leaderboard-banner {
  display: block;
  margin: 0 auto;
  width: 728px;
  height: 90px;
}

#square-banner {
  display: block;
  margin: 0 auto;
  width: 250px;
  height: 250px;
}

@media (max-width: 768px) {
  #leaderboard-banner {
      width: 100%;
      height: auto;
  }
  
  #square-banner {
      width: 100%;
      height: auto;
  }
}
/* New Styles */
#pepper-trends {
  background: #fff8e1;
  border-left: 4px solid #ffab00;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 2rem 0;
}

.image-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.picnic-spot {
  font-style: italic;
  color: #2e7d32;
}

.social-post {
  text-align: center;
  background: #f5f5f5;
}

.cta-button {
  display: inline-block;
  padding: 10px 20px;
  background: #008080;
  color: white;
  border-radius: 5px;
  margin-top: 15px;
}/* General Styles */
body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #F7F7F7;
}

.container {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: #FFF;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header {
  text-align: center;
}

header h1 {
  font-family: 'Domine', serif;
}

nav ul {
  display: flex;
  justify-content: center;
  padding: 0;
}

nav li {
  list-style: none;
  margin: 0 15px;
}

nav a {
  text-decoration: none;
  color: #008080;
}

nav a:hover {
  text-decoration: underline;
}

/* Content Box */
.content-box {
  background-color: #FFF8E1;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.content-box h2 {
  font-family: 'Domine', serif;
}

/* Image Grid */
.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.image-grid img {
  width: 100%;
  height: auto;
}

/* Footer */
footer {
  text-align: center;
}
/* General Styles */
body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #F7F7F7;
}

.container {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: #FFF;
  border-radius: 8px;
}

/* Header */
header {
  text-align: center;
}

header h1 {
  font-family: 'Domine', serif;
}

/* Content Box */
.content-box {
  background-color: #FFF8E1;
  padding: 20px;
  margin-bottom: 20px;
}

.content-box h2 {
  font-family: 'Domine', serif;
}

/* Styling for About the Author */
.author-text {
  color: #555; /* Change text color */
}

.email-link {
  color: #008080; /* Email link color */
}

.email-link:hover {
  color: #005f5f; /* Hover effect for email link */
}

/* Footer */
.footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
}

.footer p {
  text-align: center;
}

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center; /* Center-align icons */
  gap: 15px; /* Space between icons */
}

.social-icons a {
  color: #fff; 
  font-size: 24px; 
}

.social-icons a:hover {
  color: #008080; 
}

.email-link {
  color: #008080; /* Teal color for good contrast */
  text-decoration: underline; /* Adds an underline for better visibility */
}

.email-link:hover {
  color: #005f5f; /* Slightly darker teal on hover */
}