/* Basic styling for Coffee Glitch website */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  background-color: #f5f5f5;
}

.site-header {
  background-color: #3c2f2f;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  margin-bottom: 0;
}

.site-header h1 {
  margin: 0;
  font-size: 2.5rem;
}

.site-header .tagline {
  margin-top: 0.5rem;
  font-size: 1rem;
  opacity: 0.8;
}

.hero {
  /* Use our generated coffee illustration */
  background-image: url('../images/coffee.png');
  background-size: cover;
  background-position: center;
  padding: 4rem 1rem;
  color: #fff;
}

.hero-text {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1rem;
  border-radius: 4px;
}

.hero-text h2 {
  margin-top: 0;
  font-size: 2rem;
}

.cta-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #e0a95d;
  color: #3c2f2f;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #d38c2f;
  color: #fff;
}

.post-list {
  padding: 2rem 1rem;
  background-color: #ffffff;
}

.post-list h3 {
  text-align: center;
  margin-bottom: 1rem;
}

.post-list ul {
  list-style-type: none;
  padding: 0;
  max-width: 700px;
  margin: 0 auto;
}

.post-list li {
  background-color: #fafafa;
  border: 1px solid #eee;
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 4px;
}

.post-list li a {
  font-size: 1.2rem;
  color: #3c2f2f;
  text-decoration: none;
  font-weight: bold;
}

.post-list p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #666;
}

.subscribe-section {
  background-color: #fff8f0;
  padding: 2rem 1rem;
  text-align: center;
}

.subscribe-section h3 {
  margin-top: 0;
  font-size: 1.5rem;
}

.subscribe-section form {
  margin-top: 1rem;
}

.subscribe-section input[type="email"] {
  padding: 0.5rem;
  width: 250px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.subscribe-section button {
  padding: 0.5rem 1rem;
  margin-left: 0.5rem;
  background-color: #3c2f2f;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.subscribe-section button:hover {
  background-color: #5a4343;
}

.site-footer {
  background-color: #3c2f2f;
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-size: 0.8rem;
  margin-top: 2rem;
}