/*
Theme Name: Custom BMAN Website
Theme URI: https://www.mintwebtuts.ro
Description: A business blog theme.
Version: 1.2
Author: BMan
Author URI: https://www.mintwebtuts.ro
*/

.barlow-thin {
  font-family: "Barlow", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.barlow-extralight {
  font-family: "Barlow", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.barlow-light {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.barlow-regular {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.barlow-medium {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.barlow-semibold {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.barlow-bold {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.barlow-extrabold {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.barlow-black {
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.barlow-thin-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.barlow-extralight-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.barlow-light-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.barlow-regular-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.barlow-medium-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.barlow-semibold-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.barlow-bold-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.barlow-extrabold-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.barlow-black-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  font-style: italic;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

.main-wrapper {
  max-width: 750px;
  margin: 0 auto;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 750px) {
  .main-wrapper {
    padding: 0 20px;
  }
}

.header {
  display: flex;
  justify-content: space-between;
}
.header .logo {
  font-size: 2rem;
  margin-top: 10px;
}
.header .logo a {
  text-decoration: none;
  color: black;
}
.header .menu ul {
  list-style-type: none;
  padding: 0;
}
@media screen and (max-width: 750px) {
  .header .menu ul {
    display: none;
  }
}
.header .menu ul li {
  display: inline;
  margin-right: 1rem;
}
.header .menu ul li a {
  text-decoration: none;
  color: black;
  font-size: 16px;
}
.header .menu ul li:last-of-type a {
  background: #E84118;
  color: white;
  display: inline-block;
  width: 150px;
  height: 40px;
  text-align: center;
  line-height: 40px;
}
.header .menu .burger-button {
  display: none;
}
@media screen and (max-width: 750px) {
  .header .menu .burger-button {
    display: block;
  }
}

.hero-subtitle {
  font-size: 24px;
  text-align: center;
}

.hero {
  font-size: 18px;
}
.hero .hero-title {
  font-size: 48px;
  text-align: center;
}
.hero .hero-image img {
  width: 100%;
  height: auto;
}
.hero .hero-subtitle {
  font-size: 32px;
  text-align: center;
}
.hero .subscribe-form {
  text-align: center;
}

.content-title {
  font-size: 40px;
}

.up-title {
  max-width: 500px;
  text-align: center;
  display: block;
  margin: 50px auto 20px auto;
}

.footer {
  margin-top: 50px;
  border-top: 2px solid #F5F6FA;
}
.footer .row-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 400px) {
  .footer .row-wrapper {
    grid-template-columns: 1fr;
  }
}
.footer .row-wrapper ul {
  list-style-type: none;
  padding: 0;
}
.footer .row-wrapper ul li {
  margin-bottom: 10px;
}
.footer .row-wrapper ul li a {
  text-decoration: none;
  color: black;
  font-weight: 600;
}
.footer .footer-links {
  margin: 20px;
  font-size: 11px;
  text-align: center;
}
.footer .footer-links ul {
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: circle;
}
.footer .footer-links ul li {
  display: inline-block;
  margin: 0 10px;
}
.footer .footer-links ul li a {
  text-decoration: none;
  color: black;
}
.footer .footer-links a {
  text-decoration: none;
  color: black;
}

.article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
  padding: 20px;
  border-top: 2px solid #F5F6FA;
  border-bottom: 2px solid #F5F6FA;
}
@media screen and (max-width: 750px) {
  .article {
    grid-template-columns: 1fr;
  }
}
.article .categories {
  margin-top: 15px;
}
.article .tags, .article .categories {
  font-size: 12px;
  display: flex;
}
.article .tags a, .article .categories a {
  text-decoration: underline;
  color: black;
  display: inline-block;
  margin-left: 5px;
}

.article-full.tags, .article-full.categories {
  font-size: 12px;
  display: flex;
}
.article-full.tags a, .article-full.categories a {
  text-decoration: underline;
  color: black;
  display: inline-block;
  margin-left: 5px;
}

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

.article-title {
  margin: 0px;
  font-size: 24px;
}
.article-title a {
  text-decoration: none;
  color: black;
}

.author {
  margin-top: 10px;
  margin-bottom: 20px;
  font-weight: 600;
}

.read-more {
  display: inline-block;
  width: 150px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background: #E84118;
  color: white;
  margin-top: 20px;
  text-decoration: none;
}

.article-content {
  min-height: 100vh;
  font-size: 18px;
}
.article-content img {
  width: 100%;
  height: auto;
}
.article-content p {
  font-size: 18px;
}

.subscribe-title {
  font-weight: 400;
  font-size: 24px;
  text-align: center;
}
.subscribe-title span {
  display: block;
  font-weight: 700;
}

.main-wrapper {
  transform: translateX(0);
  transition: transform 0.2s ease-in;
}
.main-wrapper.open {
  transform: translateX(-300px);
}

.side-menu-wrapper {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 300px;
  right: -100%;
  background: white;
  transition: right ease-in 0.2s;
}
.side-menu-wrapper.open-menu {
  right: 0px;
}
.side-menu-wrapper .side-menu-header {
  text-align: right;
  padding: 10px;
}
.side-menu-wrapper ul {
  list-style-type: none;
  margin-top: 20px;
  padding: 0;
}
.side-menu-wrapper ul li a {
  display: inline-block;
  text-decoration: none;
  font-size: 20px;
  padding: 10px 20px;
  margin-top: 10px;
  margin-left: 20px;
  background: black;
  color: white;
}

.next-article {
  color: #E84118;
  text-align: center;
  margin-top: 20px;
  font-size: 20px;
  font-weight: 600;
}
.next-article a {
  color: #E84118;
}

.subscribe-go {
  padding: 20px;
  border-radius: 4px;
  background: #F5F6FA;
  max-width: 750px;
  margin: 30px auto;
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}
.subscribe-go__content {
  text-align: center;
}
.subscribe-go__refuse {
  text-align: left;
}
.subscribe-go__refuse a {
  color: #E84118;
  text-decoration: none;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.post-navigation a {
  font-size: 20px;
  color: #E84118;
}

.ebook-title {
  font-size: 32px;
  text-align: center;
}

/* Contact Form 7 Styling */
.wpcf7-form {
  max-width: 600px;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
}

.wpcf7-form p {
  margin-bottom: 15px;
}

/* Input fields styling */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  width: 90%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: "Barlow", sans-serif;
  transition: all 0.3s ease;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus {
  border-color: #E84118;
  outline: none;
  box-shadow: 0 0 5px rgba(232, 65, 24, 0.5);
}

/* Responsive input fields */
@media screen and (max-width: 480px) {
  .wpcf7 input[type="text"],
  .wpcf7 input[type="email"],
  .wpcf7 input[type="tel"],
  .wpcf7 textarea {
    padding: 10px;
    font-size: 14px;
  }
}

/* Textarea */
.wpcf7 textarea {
  min-height: 150px;
}

/* Submit button */
.wpcf7-submit {
  background-color: #E84118;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  display: inline-block;
  border-radius: 4px;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 200px;
}

.wpcf7-submit:hover {
  background-color: #c73014;
}

/* Make button full width on smaller screens */
@media screen and (max-width: 480px) {
  .wpcf7-submit {
    width: 100%;
    font-size: 16px;
    padding: 10px;
  }
}

/* Validation messages */
.wpcf7-response-output {
  margin-top: 10px;
  padding: 10px;
  border-radius: 4px;
  font-size: 14px;
  text-align: center;
}

/* Error message */
.wpcf7-validation-errors {
  background-color: #ffe6e6;
  border: 1px solid #ff4d4d;
  color: #d90000;
}

/* Success message */
.wpcf7-mail-sent-ok {
  background-color: #e6ffee;
  border: 1px solid #2ecc71;
  color: #27ae60;
}
