/**
 * Theme Name:   Udooh Theme
 * Author:       Mohit
 * Version:      1.0.0
 */

* {
  box-sizing: border-box;
}
body,
html {
  padding: 0;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  background: #000;
  scroll-behavior: smooth;
}

/* navbar styles handling */
nav.navbar_section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 80px;
  box-shadow: 0 0 9px #000c;
}
nav.navbar_section .navbar_logo {
  margin-left: 5%;
}
nav.navbar_section .navbar_logo img {
  height: 186.31px;
  width: auto;
  padding-top: 10px;
}
nav.navbar_section ul.primary_menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding: 0;
}
nav.navbar_section ul.primary_menu a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease, font-weight 0.3s ease, text-shadow 0.3s ease;
  font-size: 1.1rem;
  font-weight: 300;
  font-family: Inter, sans-serif;
}
nav.navbar_section ul.primary_menu a:hover {
  color: #ccc;
}
nav.navbar_section ul.primary_menu li.current_page_item a {
  font-weight: 600;
  text-shadow: 0 0 10px #ffffff80;
}
nav.navbar_section .navbar_cta_container {
  display: flex;
  align-items: center;
  margin-right: 5%;
}
nav.navbar_section .navbar_cta_container ul.secondary_menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding: 0;
}
nav.navbar_section .navbar_cta_container ul.secondary_menu a {
  display: inline-block;
  padding: 8px 16px;
  height: 45px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: linear-gradient(90deg, #763af5, #a604f2);
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  position: relative;
  top: 0;
  transition: all 0.2s ease-in-out;
}
nav.navbar_section .navbar_cta_container ul.secondary_menu a:active {
  transform: translateY(2px);
  box-shadow: 0 0 4px #0003;
}
nav.navbar_section .navbar_cta_container ul.secondary_menu a:focus {
  outline: none;
  box-shadow: 0 0 0 3px #6c5ce74d;
}
nav.navbar_section .navbar_mobile_menu {
  display: none;
}
@media (max-width: 1024px) {
  nav.navbar_section .navbar_logo {
    margin-left: 2%;
  }
  nav.navbar_section ul.primary_menu {
    gap: 2rem;
  }
  nav.navbar_section .navbar_cta_container {
    margin-right: 2%;
  }
}
@media (max-width: 768px) {
  nav.navbar_section {
    height: 70px;
  }
  nav.navbar_section .navbar_logo img {
    height: 120px;
  }
  nav.navbar_section ul.primary_menu {
    display: none;
  }
  nav.navbar_section .navbar_cta_container ul.secondary_menu a {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }
  nav.navbar_section .navbar_mobile_menu {
    display: block;
    position: relative;
    margin-left: 10px;
  }
  nav.navbar_section .navbar_mobile_menu .mobile_menu_toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
  }
  nav.navbar_section .navbar_mobile_menu ul.mobile_menu {
    list-style: none;
    position: absolute;
    top: 150%;
    right: 0;
    background-color: #000;
    min-width: 120px;
    box-shadow: 0 8px 16px 0 #0003;
    z-index: 1;
  }
  nav.navbar_section .navbar_mobile_menu ul.mobile_menu a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-family: Inter, sans-serif;
    font-size: 0.9rem;
  }
  nav.navbar_section .navbar_mobile_menu ul.mobile_menu a:hover {
    background-color: #333;
  }
}

/* main styles handling */
main {
  min-height: 100vh;
  background: linear-gradient(120deg, #0054a11a 19%, #5a0c3e26), #000;
  color: #fff;
  padding: 2rem 1rem;
}
main .main_container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 0;
}
main .blog_header {
  text-align: center;
  margin-bottom: 4rem;
}
main .blog_header .blog_title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: Inter, sans-serif;
}
@media (min-width: 768px) {
  .blog_header .blog_title {
    font-size: 4rem;
  }
}
main .blog_header .blog_date {
  color: #888;
  font-size: 1rem;
  font-family: Inter, sans-serif;
}
main .blog_hero_image {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 4rem;
  background: #1a1a1a;
}
main .blog_hero_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main .blog_content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #f5f5f5;
  font-family: Inter, sans-serif;
}
main .blog_content p {
  margin-bottom: 2rem;
  opacity: 0.9;
}
main .blog_content p:first-of-type {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #fff;
  opacity: 1;
}
main .blog_content ul {
  margin-bottom: 2rem;
  padding-left: 2rem;
}
main .blog_content ul li {
  margin-bottom: 1rem;
  opacity: 0.9;
}
main .blog_content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: #fff;
  font-family: Inter, sans-serif;
}
main .blog_content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #fff;
  font-family: Inter, sans-serif;
}
@media (max-width: 768px) {
  main .blog_content {
    font-size: 1rem;
    padding: 0 1rem;
    font-family: Inter, sans-serif;
  }
  main .blog_content p:first-of-type {
    font-size: 1.125rem;
  }
  main .blog_content h2 {
    font-size: 1.75rem;
  }
  main .blog_content h3 {
    font-size: 1.25rem;
  }
}

/* footer styles handling */
footer {
  width: 100%;
  color: #fff;
  padding: 40px 20px;
  background-color: #000;
  box-sizing: border-box;
}
footer .footer_container {
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
}
footer .footer_widgets {
  display: flex;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
  padding: 0;
  gap: 20px;
  position: relative;
}
footer .footer_widgets .footer_widget_area {
  flex: 1;
  min-width: 0;
  box-sizing: border-box;
}
footer .footer_widgets .footer_widget_area h1,
footer .footer_widgets .footer_widget_area h2,
footer .footer_widgets .footer_widget_area h3,
footer .footer_widgets .footer_widget_area h4,
footer .footer_widgets .footer_widget_area h5,
footer .footer_widgets .footer_widget_area h6 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
  font-family: Inter, sans-serif;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  overflow: visible;
  word-break: keep-all;
  width: auto;
}
footer .footer_widgets .footer_widget_area h1::after,
footer .footer_widgets .footer_widget_area h2::after,
footer .footer_widgets .footer_widget_area h3::after,
footer .footer_widgets .footer_widget_area h4::after,
footer .footer_widgets .footer_widget_area h5::after,
footer .footer_widgets .footer_widget_area h6::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: #4a4a4a;
  margin-top: 8px;
}
footer .footer_widgets .footer_widget_area ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer_widgets .footer_widget_area ul li {
  margin-bottom: 12px;
  font-size: 14px;
  font-family: Inter, sans-serif;
  color: #9ca3af;
  line-height: 1.5;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  word-wrap: break-word;
}
footer .footer_widgets .footer_widget_area ul li:last-child {
  margin-bottom: 0;
}
footer .footer_widgets .footer_widget_area ul li a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease;
}
footer .footer_widgets .footer_widget_area ul li a:hover {
  color: #fff;
}
footer .footer_widgets .footer_logo {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-left: 40px;
  box-sizing: border-box;
}
footer .footer_widgets .footer_logo .wp-block-image {
  width: 100%;
  max-width: 300px;
}
footer .footer_widgets .footer_logo .wp-block-image img {
  width: 100%;
  height: auto;
}
footer .footer_separator {
  margin: 40px auto;
  height: 1px;
  background: #ffffff1a;
}
footer .footer_bottom {
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Inter, sans-serif;
  line-height: 1.6;
  color: #9ca3af;
}
footer .footer_bottom ul {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer_bottom ul li::before {
  content: "|";
}
footer .footer_bottom a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease;
  margin: 0 4px;
}
footer .footer_bottom a:hover {
  color: #fff;
}
@media (max-width: 1024px) {
  footer {
    max-height: 100vh;
    overflow-y: auto;
  }
  footer .footer_widgets {
    gap: 15px;
  }
  footer .footer_widgets .footer_logo {
    padding-left: 30px;
  }
  footer .footer_widgets .footer_logo .wp-block-image {
    max-width: 250px;
  }
  footer .footer_widgets .footer_widget_area h1,
  footer .footer_widgets .footer_widget_area h2,
  footer .footer_widgets .footer_widget_area h3,
  footer .footer_widgets .footer_widget_area h4,
  footer .footer_widgets .footer_widget_area h5,
  footer .footer_widgets .footer_widget_area h6 {
    font-size: 16px;
    margin-bottom: 15px;
    font-family: Inter, sans-serif;
    word-wrap: break-word;
  }
  footer .footer_bottom {
    padding: 30px 20px 0;
    margin-top: 30px;
    font-size: 13px;
  }
}
@media (max-width: 820px) {
  footer {
    max-height: 100vh;
    overflow-y: auto;
  }
  footer .footer_widgets {
    gap: 10px;
  }
  footer .footer_widgets .footer_logo {
    padding-left: 20px;
  }
  footer .footer_widgets .footer_logo .wp-block-image {
    max-width: 200px;
  }
  footer .footer_widgets .footer_widget_area h1,
  footer .footer_widgets .footer_widget_area h2,
  footer .footer_widgets .footer_widget_area h3,
  footer .footer_widgets .footer_widget_area h4,
  footer .footer_widgets .footer_widget_area h5,
  footer .footer_widgets .footer_widget_area h6 {
    font-size: 14px;
    margin-bottom: 12px;
    padding-right: 0;
    font-family: Inter, sans-serif;
    word-wrap: break-word;
    white-space: normal;
  }
}
@media (max-width: 480px) {
  footer .footer_widgets {
    flex-direction: column;
    gap: 25px;
  }
  footer .footer_widgets .footer_logo {
    display: none;
  }
  footer .footer_widgets .footer_widget_area {
    width: 100%;
  }
  footer .footer_widgets .footer_widget_area h1,
  footer .footer_widgets .footer_widget_area h2,
  footer .footer_widgets .footer_widget_area h3,
  footer .footer_widgets .footer_widget_area h4,
  footer .footer_widgets .footer_widget_area h5,
  footer .footer_widgets .footer_widget_area h6 {
    font-size: 14px;
    margin-bottom: 12px;
    padding-right: 0;
    font-family: Inter, sans-serif;
    white-space: nowrap;
    overflow: visible;
    word-break: keep-all;
    width: auto;
    min-width: auto;
  }
  footer .footer_bottom {
    font-size: 11px;
    line-height: 2;
    margin-top: 20px;
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .footer_container .footer_bottom a {
    display: inline-block;
    margin: 2px 4px;
  }
}
@media (max-width: 320px) {
  footer .footer_widgets .footer_widget_area h1,
  footer .footer_widgets .footer_widget_area h2,
  footer .footer_widgets .footer_widget_area h3,
  footer .footer_widgets .footer_widget_area h4,
  footer .footer_widgets .footer_widget_area h5,
  footer .footer_widgets .footer_widget_area h6 {
    font-size: 13px;
    margin-bottom: 10px;
    white-space: normal;
    font-family: Inter, sans-serif;
    word-wrap: break-word;
  }
}

/* .container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
} */
