/*
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:#003146;
    --secondary-color:#FF5C93;
    --primary-color-light: #1B1B1B;
    --text-color1 : #C4A574;
    --text-color2:#F37B20;
    --color-yellow:#FFB300;
    --wp--preset--font-family--serif : "Playfair Display", serif;
}
body{
  font-family: "Inter", 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: 16px;
}
h1,h2,h3,h4,h5 {font-family: "Playfair Display", serif;}
a{
   color: var(--primary-color);
}
a:hover{
    color:var(--primary-color);
}
.site-logo a {
    display: flex;
    justify-content: center;
}
.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: #003146;
    font-size: 14px;
}
.header-menu .current-menu-item a, .header-menu a:hover {
    color: var(--secondary-color);
}
.header-menu {
    gap: 4rem;
}
.mobile_logo a {
    display: inline-block;
    background: #fff;
    padding: 2px 10px;
    border-radius: 9px;
}
.header-menu li:not(:last-child):after {
    content: "";
    width: 2px;
    height: 100%;
    background: var(--secondary-color);
    position: absolute;
    top: 0;
    right: -27px;
}
.card-content p:first-of-type:after {
    content: " ...Continue";
    color: var(--secondary-color);
    font-weight: 700;
}

.footer_logo a img {
    width: 297px;
    height: auto;
}
.bg-light-dark{
    background-color:var(--primary-color-light);
}
.footer-menu a{
    text-decoration:none;
    text-transform:uppercase;
    font-size: 14px;
    font-weight: 500;
    color: #222222;
}
.footer-menu li:last-child {
    margin-left: auto;
}

.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: 3/2;
    overflow: hidden;
    border-top-left-radius: 58px;
}

.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: #4A5565; /* 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;
}
.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;
}

.newsletter-section .container {
    background: var(--primary-color);
}
.newsletter-content h2 {font-family: "Inter", sans-serif;}


.newsletter-form .form-control {
    border: 1px solid #E5E7EB;
    font-size: 0.938rem;
    border-radius: 0;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    border-color: #3B092E;
}

.newsletter-form .btn {
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: background-color 0.3s ease;
    background: var(--secondary-color);
    border-radius: 0;
}

.newsletter-form .btn:hover {
    opacity:0.9;
}

/* For mobile responsiveness */
@media (max-width: 576px) {
    .newsletter-form .btn {
        width: 100%;
        padding: 10px;
    }
}


@media screen and (max-width: 767px) {
form#newsletterForm input {
    margin: 10px 0px;
}

.tags_list a {
    font-size: 15px;
}
footer.site-footer p {
    text-align: center;
    font-size: 14px !important;
    margin-bottom: 6px !important;
}
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;
 }
 .site-logo a img {
    width: 100%;
  }
  .footer_logo{
    width: 180px;
    height: auto;
  }
}