/*
Theme Name:     Woostify Child
Theme URI:      https://yourwebsite.com
Description:    Child theme for the Woostify theme
Author:         Your Name
Author URI:     https://yourwebsite.com
Template:       woostify
Version:        1.0.0
Text Domain:    woostify-child
*/

/* You can add your custom CSS here */

@media (min-width: 992px) {
    .woostify-container, .site-boxed-container #view, .site-content-boxed-container .site-content {
        max-width: 1656px;
    }
}


body, select, button, input, textarea {
    font-family: Poppins;
    font-weight: 400;
    line-height: 28px;
    text-transform: none;
    font-size: 14px;
    color: #000000;
    width: 100%;
}


/* custom button */
.custom-button {
    background-color: #666666;
    color: #fff;
    border: none;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    border-radius: 50px;
		width:300px;
		text-align: center;
}

/* blog */
/* Container for all blog posts */
.blog-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 40px 0;
}

/* Individual blog preview box */
.blog-preview-section {
  flex: 1 1 300px;
  background: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-preview-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* Inner container */
.blog-preview-section .post-item {
  max-width: 300px;
  margin: 0 auto;
}

/* Post thumbnail */
.blog-preview-section img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

/* Title */
.blog-preview-section h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #222;
}

/* Excerpt */
.blog-preview-section p {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

/* Read More */
.blog-preview-section span {
  color: #0066cc;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s ease;
}

.blog-preview-section a:hover span {
  color: #004a99;
}

/* footer */
div#text-5 {
    width: 250px;
}
div#text-3 {
    width: 250px;
}

/* Make Woostify header sticky */
.site-header.header-layout-1 {
  position: sticky;
  top: 0;
  z-index: 9999;
  background-color: #fff; /* or transparent if you want */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

