/* ========== CSS VARIABLES ========== */
:root {
  --theme-text-primary: rgb(244, 136, 64);
  --theme-text-secondary: rgb(122, 122, 122);
  --text-gray: rgba(245, 146, 146, 0.714);
  --text-black: #221a15;
  --text-white: #ffffff;
  --theme-bg-primary: #fb9857;
  --theme-bg-secondary: rgb(32, 35, 46);
  --bg-white: #ffffff;
  /* Spacing & Layout */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 32px;
  --space-xl: 64px;
  /* Borders & Shadows */
  --border-radius: 6px;
  --box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* ========== RESET & BASE ========== */
/* Reset default browser styles and set base font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  line-height: 1.6;
  background: var(--bg-white);
  color: var(--text-black);
}

/* ========== Theme Custom Classe ========== */
.theme-bg-primary {
  background: var(--theme-bg-primary);
}
.theme-bg-secondary {
  background: var(--theme-bg-secondary);
}
.theme-text-primary {
  color: var(--theme-text-primary);
}
.theme-text-secondary {
  color: var(--theme-text-secondary);
}
.text-black {
  color: var(--text-black);
}
.text-white {
  color: var(--text-white);
}
.text-gray {
  color: var(--text-gray);
}
.upper {
  text-transform: uppercase;
}
.fw-900 {
  font-weight: 900;
}
.d-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mr-5 {
  margin-right: 5px;
}
.bb {
  border-bottom: 1px solid rgb(255, 222, 222);
  padding-bottom: 10px;
}
.title {
  color: var(--theme-text-primary);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

/* ========== TYPOGRAPHY ========== */
/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
}
p {
  font-size: 15px;
  font-weight: 400;
  color: var(--theme-text-secondary);
  line-height: 30px;
}

a {
  text-decoration: none;
  transition: color 0.2s;
  color: black;
}
a:hover {
  cursor: pointer;
  color: rgb(244, 136, 64);
}

/* ========== LISTS ========== */
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* ========== CONTAINERS ========== */
.container-half {
  max-width: 1140px;
  min-height: 10px;
  margin-right: auto;
  margin-left: auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}
.container-full {
  width: 100%;
  min-height: 10px;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}
.active {
  color: var(--theme-text-primary);
}

/* ========== MAIN CSS START HERE ========== */
/* Header And Navbar */
header {
  background: rgb(247, 247, 247);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.navbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}
.nav-brand-logo {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 20px;
}
a.nav-brand-logo:hover {
  color: #221a15 !important;
}
.nav-brand-logo > span {
  font-size: 50px;
  font-weight: 900;
}
.navbar-links {
  display: flex;
  font-weight: 900;
}
.navbar-links .nav-link {
  padding: 23px;
  font-size: 16px;
  font-weight: 800;
}

/* slider ---------------------------------------*/
.slider-area {
  padding-left: 8px;
}
.slider-item {
  max-width: 425px;
  height: auto;
  position: relative;
}
.slider-item img {
  max-width: 100%;
}
.slider-item-content {
  position: absolute;
  bottom: 12%;
  padding: 0 40px;
}
.slider-post-description {
  font-size: 24px;
  font-weight: 900;
  margin: 5px 0px 10px;
}
.post-info {
  display: flex;
}
.post-info li {
  padding: 0 10px;
  border-right: 2px solid white;
}
.slider-item-content li:first-child {
  padding-left: 0;
}
.slider-item-content li:last-child {
  border: 0px;
}
.post-info li a {
  font-size: 14px;
  font-weight: 500;
  color: white;
  line-height: 14px;
}
/* Call to action -------------------------- */
.call-to-action-area {
  padding: 45px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 80px;
}
.call-to-action-area .content h3 {
  margin: 0px 0 10px;
}
.call-to-action-area .content h2 {
  font-size: 30px;
  line-height: 1;
}
.call-to-btn > a {
  display: block;
  font-size: 14px;
  padding: 10px 20px;
  transition: 0.5s;
}
.call-to-btn > a:hover {
  color: #ffffff;
  font-weight: 900;
  background: hsl(21, 80%, 52%);
}

/* blog-post area --------------- */
.blog-section {
  margin-top: 100px;
}
.blog-area {
  display: flex;
  justify-content: space-between;
}
.all-blogs-area {
  max-width: 66%;
}
.single-blog {
  border: 1px solid rgba(254, 217, 217, 0.831);
  margin-bottom: 30px;
}
.blog-area img {
  width: 100%;
  height: auto;
}
.blog.content-area {
  padding: 35px 40px;
}
.title-area h3 {
  font-size: 18px;
}
.title-area h2 a {
  display: block;
  font-size: 20px;
  color: var(--text-black);
  font-weight: 900;
  margin: 15px 0;
}
.title-area h2 a:hover {
  color: var(--theme-text-primary);
}
.blog.post-info {
  border-bottom: 1px solid rgba(254, 217, 217, 0.831);
}
.blog.post-info li a {
  color: var(--text-gray);
  font-weight: 400;
}
.blog.post-info li {
  border-right: 2px solid var(--text-gray);
  line-height: 3px;
  margin-bottom: 25px;
}
.blog.post-info li:first-child {
  padding-left: 0;
}
.blog.post-info li:last-child {
  border: 0px;
}
.post-description {
  padding: 25px 0;
  text-align: justify;
  border-bottom: 1px solid rgba(254, 217, 217, 0.831);
}
.post-description p a {
  color: blue;
  padding: 8px;
}
.post-footer-area {
  padding: 25px 0 4px;
}
.all-post-btn {
  display: block;
  text-align: center;
  padding: 20px;
  font-weight: 500;
  background: rgb(255, 136, 0);
  transition: 0.5s;
}

.all-post-btn:hover {
  color: rgb(255, 255, 255) !important;
  font-weight: 900;
  letter-spacing: 2px;
}

/* aside --------------------- */
.aside {
  max-width: 29%;
}
.aside input {
  height: 50px;
  width: 100%;
  padding: 10px;
  border: 1px solid rgb(250, 203, 203);
  margin-bottom: 50px;
}
.aside input::placeholder {
  color: rgb(244, 161, 161);
}
/* resent-post-area */
.recent-posts-area {
  margin-bottom: 25px;
}
.recent-posts-area h3 {
  padding-bottom: 15px;
  border-bottom: 1px solid rgb(255, 208, 208);
}
.post-links li {
  padding: 20px 0;
  border-bottom: 1px solid rgb(255, 207, 207);
}
.post-links li:last-child {
  border-bottom: 0;
}
.post-links li a {
  font-size: 19px;
  color: var(--text-black);
  font-weight: 900;
}
.post-links li a span {
  font-size: 14px;
  color: var(--text-gray);
  font-weight: 400;
}
.post-links li a:hover {
  color: var(--theme-text-primary);
}
/* categories  */
.caregories-area {
  margin-bottom: 30px;
}
.categories-list {
  margin-top: 20px;
}
.categories-list li a {
  color: var(--text-black);
  font-weight: 700;
  display: block;
  padding: 7px 0;
}
.categories-list li a:hover {
  color: var(--theme-text-primary);
}
.categories-list li a::before {
  content: "- ";
}
/* tag clouds area */
.tag-list {
  padding: 20px 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.tag-list li a {
  padding: 5px 15px;
  border: 1px solid rgba(249, 206, 206, 0.6);
  color: var(--text-gray);
  font-weight: 500;
  display: block;
  transition: 0.5s;
}
.tag-list li a:hover {
  background-color: var(--theme-bg-primary);
  color: #ffffff !important;
}

/* 
/* footer------------------------------- */
footer {
  margin-top: 100px;
}
.footer-social-links {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 60px 0;
  border-bottom: 1px solid rgba(128, 128, 128, 0.457);
}
.footer-social-links li {
  padding: 0 30px;
  border-right: 2px solid white;
  line-height: 15px;
}
.footer-social-links li:last-child {
  border-right: 0px;
}
.footer-social-links li a {
  color: white;
  font-size: 14px;
  font-weight: 500;
}
.footer-social-links li a:hover {
  color: rgb(220, 103, 1);
}

.copy-write-info {
  text-align: center;
  padding: 60px 0;
  border-bottom: 1px solid gray;
}
.copy-write-info span > a {
  color: red;
}

/* ABOUT US -------------------------------------------- */
.banner-area {
  height: 320px;
  padding: 0 90px;
  background: #000;
  margin: 0 10px;
  display: flex;
  align-items: center;
  background: url("../img/heading-bg.jpg") no-repeat center/cover;
  margin-bottom: 100px;
}
.banner-text h1 {
  font-size: 36px;
  margin-top: 5px;
}
.about-us-area {
  text-align: center;
}
.about-us-area img {
  margin-bottom: 40px;
}
.about-us-area p {
  padding-bottom: 40px;
  text-align: center;
}
.about-us-area h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 30px;
}
.about-text-1 {
  margin-bottom: 35px;
  border-bottom: 1px solid rgba(255, 221, 221, 0.885);
}
.about-text-2,
.about-text-3,
.about-text-4 {
  display: flex;
  margin-bottom: 35px;
  border-bottom: 1px solid rgba(255, 221, 221, 0.885);
  gap: 50px;
}
/* about-us page social links------------ */
.social-links-area {
  margin-top: 50px;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.social-links li a {
  display: block;
  font-size: 15px;
  color: white;
  background: #412323;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
}
.social-links li a:hover {
  color: rgb(153, 237, 18);
}
/* blog page----------------------- */

.blog.all-blogs-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.blog.single-blog {
  width: 48%;
}
.blog .blog-thum {
  height: 324px;
  width: 350px;
  overflow: hidden;
}
.blog .blog-thum img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.blog .single-blog {
  border: 0;
  padding: 0;
}
.singel-blog-border {
  border: 1px solid rgb(253, 215, 215);
}
/* pagination ------------------- */
.page-links {
  display: flex;
  width: 48%;
  justify-content: center;
}
.page-links {
  display: flex;
  width: 48%;
  justify-content: center;
  gap: 10px;
}
.page-links li a {
  display: block;
  color: gray;
  padding: 10px 20px;
  border: 1px solid rgb(255, 200, 200);
}
.page-links li a.page-active {
  background: orange;
  color: white;
}
.page-links li a:hover {
  background: orange;
  color: white;
}
/* Post-details page ----------------------------------------- */
.comment-section {
  margin-bottom: 30px;
}
.comment-section h2 {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgb(255, 228, 228);
}
.comment-area {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgb(255, 213, 213);
}
.person-pic {
  width: 100px;
  height: 100px;
}
.person-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.comment-content {
  width: 82%;
}
.person-name {
  font-size: 18px;
  font-weight: 700;
  margin-right: 15px;
}
.comment-date {
  color: rgb(238, 163, 163);
}
.comment-text {
  text-align: justify;
}
.reply.comment-area {
  margin-left: 100px;
}
.reply.comment-content {
  width: 80%;
}
.form-area .title {
  color: black;
  padding-bottom: 15px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgb(255, 212, 212);
}
.form input,
textarea {
  height: 45px;
  padding: 10px;
  width: 100%;
  margin: 15px 0;
  border: 1px solid rgb(249, 215, 215);
}
.name_email {
  display: flex;
  gap: 30px;
}
textarea.comment-box {
  min-width: 100%;
  height: 220px;
}
textarea.comment-box::placeholder {
  font-size: 15px;
  color: var(--text-gray);
}
button.submit-btn {
  display: block;
  padding: 15px 20px;
  border: 0;
  margin-top: 30px;
}
button.submit-btn:hover {
  font-weight: 700;
}

/* Contact-us page ----------------------------- */
.contact-area {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
.contact-us.form-area {
  width: 87%;
}
.contact-info .title {
  color: var(--text-black);
  margin-bottom: 10px;
  border-bottom: 1px solid rgb(254, 219, 219);
}
.contact-info-list li {
  padding: 20px 35px 20px 5px;
  border-bottom: 1px solid rgb(254, 219, 219);
  font-size: 18px;
  font-weight: 900;
}
.contact-info-list li span {
  font-size: 15px;
  font-weight: normal;
  color: var(--text-gray);
  margin-top: 5px;
  display: inline-block;
}

/*
===========================================================
   End of Stylesheet
   =========================================================== */
