@import url('https://fonts.googleapis.com/css2?family=Architects+Daughter&display=swap');


/* Reset Default Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styles */
body {
    background-color: #fdfdfd;
    color: #121212;
    
    line-height: 1.6;
}

/* Blog Post Container */
.post-container {
  display: flex;
  margin: 50px auto;
  padding: 10px 15%;
  padding-left: 5%;
}

/* Blog Post Content */
.blog-post {
  width: 75%;
  padding-left: 7%;
}

.post-title {
  font-size: 2rem;
  font-weight: bold;
  font-family: 'DM Serif Display', serif;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.post-date {
  font-size: 1rem;
  color: #777;
  margin-bottom: 20px;
}

.post-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 20px;
}

.date-tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 20px;
}

.tags{
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  text-align: right;
}

.ul-tags{
  list-style-type:none;
}

.tags-title{
  visibility: hidden;
}

/* Pinterest Widget */
.pinterest-widget {
  text-align: center;
  margin: 40px auto;
  padding: 20px;
  width: 100%;
  border-radius: 10px;
  background-color: #f8f8f8;
}

.pinterest-widget h2 {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 11px;
}

.pinterest-board {
  display: flex;
  justify-content: center;
}

/* Recommended Products */
.recommended-products {
  text-align: center;
  margin: 50px auto;
}

.recommended-products h2 {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: black;
}

.rec-prod-grid {
  text-align: center;
  margin: 40px auto;
  padding: 20px;
  width: 100%;
  border-radius: 10px;
  background-color: #f8f8f8;
}

.products-grid {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 2fr;
  justify-content: center;
  gap: 30px;
}

.product {
  width: 200px;
  text-align: center;
  justify-self: center;
}

.product img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  transition: 0.3s ease-in-out;
}

.product img:hover {
  transform: scale(1.05);
}

.product p {
  font-size: 1.2rem;
  margin-top: 10px;
  color: black;
}

/* Comments */
.comments {
  text-align: left;
  margin: 40px auto;
  width: 100%;
}

.comments h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 20px;
  padding: 15px;
}

.comment-edy-site-blog-comment {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 10px;
  width: 100%;
  padding: 15px;
  font-size: 1.2rem;
  border-radius: 10px;
  background-color: #f8f8f8;
}

.comment-author {
  font-weight: 600;
}

.comment-date {
  font-size: 0.9rem;
  float: right;
  color: grey;
}

.comment-messages-content-formatted {
  width: 100%;
  font-size: 1.2rem;
}

.comments button {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  background: #111;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.comments button:hover {
  background: #706C41;
  color: black;
}

/* Comment Form */
.form_area {
  font-size: 1.2rem;
  border-radius: 10px;
  background-color: #f8f8f8;
  padding: 15px;
}

.form_field {
  display: grid;
  grid-template-rows: 2;
}

input[type],
#comment-form-name,
#comment-form-email,
#comment-form-body {
  border-radius: 10px;
  background-color: white;
  padding: 15px;
  border: 0px;
}

.g-recaptcha {
  margin: 10px;
  border-radius: 10px;
  background-color: #121212 !important;
  color: white;
  padding: 15px;
}

/* Like Button */
.like-button-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 30px;
}

@media (max-width: 900px) {
  .post-container {
    flex-direction: column;
    padding: 20px;
  }

  .blog-post {
    width: 100%;
    padding: 0;
  }

  .products-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .recommended-products,
  .pinterest-widget,
  .comments {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .post-image {
    max-height: 250px;
  }

  .post-title {
    font-size: 1.5rem;
  }

  .comments button {
    padding: 15px 25px;
  }

  .rec-prod-grid {
    padding: 15px;
  }
}
