/*
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: #131313;
    --primary-color:#380033;
    --secondary-color:#F37B20;
    --primary-color-light: #1B1B1B;
    --text-color1 : #C4A574;
    --text-color2:#F37B20;
    --color-yellow:#FFB300;
    --wp--preset--font-family--serif : "Playfair Display", serif;
}
body{
  font-family: "Poppins", sans-serif;
  /*background-color:var(--body-bg);*/
  /*color:#fff;*/
}
.text-primary{
    color:var(--primary-color) !important;
}
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1200px;
        width:90%;
        padding: 0;
}
p,li{
    font-size:17px;
}
a{
   color: var(--primary-color);
}
a:hover{
    color:var(--primary-color);
}
.site-logo a {
    display: inline-block;
}
.site-logo a img {
    width: 200px;
    height: auto;
}
.header-menu a {
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition:0.4s all;
    color: #4D4D4D;
}
.header-menu .current-menu-item a, .header-menu a:hover {
    color: var(--text-color2);
}
.bg-light-dark{
    background-color:var(--primary-color-light);
}
.footer-menu a{
    text-decoration:none;
    text-transform:uppercase;
    color: #fff;
}
.page-section-title h1 {
    font-size: 6.225rem;
}
.has-styled-title h2 {
    font-size: 2.6rem;
    text-transform: uppercase;
}
.has-styled-title h2 span,.theme_text {color: var(--primary-color);}

.page-section-image {
    width: 300px;
    margin-left: auto;
}
.page-section-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.trending-card .image-wrapper {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.trending-card .image-wrapper img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.trending-card:hover img {
    transform: scale(1.05);
}

.trending-card .category {
    font-size: 0.7rem;
    color: var(--text-color1); /* Gold/Tan color from image */
    letter-spacing: 0.5px;
    font-weight: 600;
}

.trending-card .post-title {
    font-size: 1.25rem;
    line-height: 1.4;
    color: #333;
}

.mobile-menu ul li a {
    text-decoration: none;
    padding: 11px 12px;
    display: block;
    background: #333;
    border-radius: 5px;
    color: #fff;
}
.mobile-menu ul {
    display: flex;
    gap: 10px;
    flex-direction: column;
}
.movies-list-loop .post_item_image {
    margin-bottom: 0;
}
.movies-list-loop .post_item_image img {
    object-fit: cover;
    object-position: top;
}
.footer_menu li.current_page_item a {
    color: var(--secondary-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;
}
footer.site-footer {
    background: var(--primary-color);
    color: #fff;
}
main#main {
    min-height: 64vh;
}

@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;
 }
}