/*
Theme Name:  Custom Theme
Theme URI: 
Author: Socail Pie
Author URI: https://socialpie.io/
Text Domain: socail-pie-theme
Description:  Custom Theme Theme is a modernized take on an ever-popular WordPress layout ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â the horizontal masthead with an optional right sidebar that works perfectly for blogs and websites. It has custom color options with beautiful default color schemes, a harmonious fluid grid using a mobile-first approach, and impeccable polish in every detail.  Custom Theme will make your WordPress look beautiful everywhere.
Version: 1.0
Requires at least: 5.0
Requires PHP: 7.0
License: GNU General Public License v2 or later
*/

*{
    padding:0;
    margin:0;
    box-sizing:border-box;
}
:root{
    --body-bg: #FFFCF2;
    --primary-color:#85397C;
    --primary-color-light: #1B1B1B;
    --color-yellow:#FFB300;
}
body{
  font-family: "Red Hat Display", system-ui;
  --bs-body-bg : #FFFCF2;
}
.text-primary{
    color:var(--primary-color) !important;
}
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1000px;
        width: 91%;
        padding: 0;
}
p,li{
    font-size:17px;
}
.top-menu a {
    font-size: 11px;
    text-decoration: underline !important;
}
.top-menu a:hover {
    color: #fff;
}
a{
   color:#fff;
}
a:hover{
    color:var(--primary-color);
}
.site-logo a {
    display: inline-block;
}
.site-logo a img {
    width: 150px;
    height: auto;
}
.top-menu {
    background: var(--primary-color);
}
.header-menu a {
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition:0.4s all;
}
.header-menu .current_page_item a {
    color: var(--primary-color);
}

.has-styled-title h2 {
    font-size: 2.6rem;
    text-transform: uppercase;
}
.has-styled-title h2 span,.theme_text {color: var(--primary-color);}

/*movie loop styles*/
.post_item_image {
    width: 100%;
    /* height: 280px; */
}
.wp-block-image.aligncenter {
    margin-inline: auto;
}
.post_item_image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.tags_list a {
    text-decoration: none;
}
.tags_list a {
    pointer-events: none;
}

.mobile-menu ul li a {
    text-decoration: none;
    padding: 11px 12px;
    display: block;
    background: #333;
    border-radius: 5px;
}
.mobile-menu ul {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.footer_menu li.current_page_item a {
    color: var(--primary-color);
}
.header_menu_wrap li .sub-menu > li > .sub-menu {
    right: -291px;
    top: 0;
}
.header_menu_wrap li {
    font-size: 16px;
}
ul.sub-menu {
    position: absolute;
    background: #000;
    top: 30px;
    list-style: none;
    padding: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s all;
    z-index: 999;
    max-width: 400px;
    min-width: 320px;
}
.header_menu_wrap li {
    position: relative;
}
ul.sub-menu li a {
    padding: 10px 17px;
    display: block;
    transition: 0.1s all;
}
ul.sub-menu li a:hover {background-color: var(--primary-color);color: #fff;}
.header_menu_wrap ul li:hover > ul {
    visibility: visible;
    opacity: 1;
}
.mobile-menu ul li i {
    position: absolute;
    right: 4px;
    top: 4px;
    background: var(--primary-color);
    z-index: 99;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 5px;
}
.mobile-menu ul li {
    position: relative;
}

.change-color {
    animation: changeColor 1s ease-in-out infinite alternate;
}
.color-yellow{
    color:var(--color-yellow) !important;
}

@keyframes changeColor {
  from {color: #000;border-color:#000}
  to {color: #F00;border-color:#F00}
}
body .seasonal_ticker img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
.page-section-image {
    width: 100%;
}    
.page-section-title h1 {
    font-size: 1.5rem;
}
.post_item_image {
    height: 150px;
}
.post_item_content h5 {
    margin-bottom: 0;
    font-size:1rem;
}
.tags_list a {
    font-size: 15px;
}
footer.site-footer p {
    text-align: center;
    font-size: 13px !important;
    letter-spacing: 2px;
}
ul.sub-menu {
    position: unset;
    background: unset;
    padding: 18px 0px 10px 32px;
    visibility: unset;
    opacity: unset;
    display: none;
    transition: unset;
}
 ul.sub-menu li:not(:last-of-type) {
    margin-bottom: 10px;
 }
}