/* General Page Styles */
body {
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(135deg, #1c1c1c, #333333);
  color: #e0e0e0;
  padding-top: 80px;
  margin: 0;
}

.page-container {
  text-align: center;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #333;
}

.page-title {
  font-size: 2.5em;
  margin-bottom: 10px;
  position: relative;
  color: #333;
}

.page-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #ffdd00;
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #555;
}

/* Toggle Button Styles */
.toggle-button-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.toggle-button {
  background: #ffdd00;
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 1.2em;
  color: #333;
  transition: background 0.3s, color 0.3s;
  margin: 0 10px;
}

.toggle-button.active {
  background: #333;
  color: #ffdd00;
}

/* Blog Page Styles */
.blog-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.reading-time {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  font-size: 0.9em;
}

.reading-time img {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}

.blog-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
  max-width: 350px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #ffdd00;
}

.blog-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  text-align: center;
}

.blog-card-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #333;
}

.blog-card-date {
  font-size: 0.9em;
  color: #777;
  margin-bottom: 15px;
}

.blog-card-excerpt {
  font-size: 1em;
  color: #333;
  margin-bottom: 15px;
  flex-grow: 1;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.coming-soon {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  margin-top: 20px;
}

.coming-soon h2 {
  margin: 0;
  color: #333;
}

.coming-soon a {
  color: #ffdd00;
  text-decoration: none;
  font-weight: bold;
}

.coming-soon a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .page-container {
      padding: 15px;
  }

  .page-title {
      font-size: 2em;
  }

  .page-description {
      font-size: 1em;
  }

  .blog-card {
      max-width: 100%;
  }

  .blog-card-content {
      padding: 15px;
  }
}
