
/*
Theme Name:   	SoulKitchen Child
Template:     	soulkitchen
Version:      	1.00
Author:       	Naeem Ahsan
Text Domain:  	soulkitchenchild
*/

/* ==============================
    Global Styles
============================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color-scheme: light dark;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
  padding: 0;
}

ul, li {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:root {
    --color-primary: #FF013D;
    --color-secondary: #12b5d0;
    --color-white: #fff;
    --color-black: #111;
    --color-dark-gray: #999;
    --color-light-gray: #f4f4f4;

    --font-primary: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;

    --fs-h1: clamp(36px, calc(25.714px + 2.857vw), 60px);
    --fs-h2: clamp(30px, calc(22.286px + 2.143vw), 48px);
    --fs-h3: clamp(24px, calc(18.857px + 1.429vw), 36px);
    --fs-h4: clamp(20px, calc(18.286px + 0.476vw), 24px);
    --fs-h5: clamp(16px, calc(15.143px + 0.238vw), 18px);
    --fs-h6: 14px;
    --fs-p: 14px;

    
    --fs-body: clamp(14px, calc(15px + 0.25vw), 16px);
}

body{
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  font-size: var(--fs-body);
}

h1, h2, h3, h4, h5, h6, p{
  font-family: var(--font-primary) !important;
  margin: 0;
  overflow-wrap: break-word !important;
}

h1{ font-size: var(--fs-h1); font-weight: var(--fw-bold) !important;;   line-height: 1.2; }     
h2{ font-size: var(--fs-h2); font-weight: var(--fw-bold);   line-height: 1.1667; }   
h3{ font-size: var(--fs-h3); font-weight: var(--fw-bold);   line-height: 1.1667; }   
h4{ font-size: var(--fs-h4); font-weight: var(--fw-medium); line-height: 1.3333; }   
h5{ font-size: var(--fs-h5) !important; font-weight: var(--fw-medium); line-height: 1.3333; }  
h6{ font-size: var(--fs-h6) !important; font-weight: var(--fw-medium); line-height: 1.2857; }  
p{font-size: var(--fs-p); font-weight: var(--fw-regular);}
a{font-size: var(--fs-p); font-weight: var(--fw-regular);}

.btn--primary {
    display: inline-block;
    font-family: var(--font-primary);
    text-align: center;
    background: var(--color-primary);
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: var(--color-primary);
    border-radius: 0px 0px 0px 0px;
    padding: 1rem 2rem 1rem 2rem !important;
    line-height: 1;
    font-weight: 600;
    transition: all 300ms ease-in !important;
    -webkit-transition: all 300ms ease-in !important;
    -moz-transition: all 300ms ease-in !important;
    -ms-transition: all 300ms ease-in !important;
    -o-transition: all 300ms ease-in !important;
    &:hover {
        background: transparent;
    }
}

.btn--secondary {
    display: inline-block;
    font-family: var(--font-primary);
    text-align: center;
    background: var(--color-secondary);
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: var(--color-secondary);
    border-radius: 0px 0px 0px 0px;
    padding: 1rem 2rem 1rem 2rem;
    line-height: 1rem;
    font-weight: 600;
    transition: all 300ms ease-in !important;
    -webkit-transition: all 300ms ease-in !important;
    -moz-transition: all 300ms ease-in !important;
    -ms-transition: all 300ms ease-in !important;
    -o-transition: all 300ms ease-in !important;

    &:hover {
        background: transparent;
    }
}

.btn--mobile-nav {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: clamp(10px, calc(10.16px + 0.32vw), 14px);
    text-align: center;
    background: transparent;
    border-style: solid;
    border-width: 1px;
    border-color: var(--color-white);
    padding: 10px 12px;
    line-height: 1rem;
    font-weight: 600;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    -o-border-radius: 0px;
    transition: all 300ms ease-in !important;
    -webkit-transition: all 300ms ease-in !important;
    -moz-transition: all 300ms ease-in !important;
    -ms-transition: all 300ms ease-in !important;
    -o-transition: all 300ms ease-in !important;
    &:hover {
        background: var(--color-white);
        color: var(--color-black);
    }
}

a.link--primary {
    display: inline-block;
    position: relative;
}

a.link--primary::before {
  content: '';
  position: absolute;
  width: 100%;
  border-radius: 5px;
  height: 0.05em;
  bottom: 0;
  left: 0;
  background: white;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
}

a.link--primary::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  border-radius: 5px;
  height: 0.05em;
  bottom: 0;
  left: 0;
  background: red;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

a.link--primary:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.section-padding {
    padding: 80px 0;

    @media (max-width: 991px) {
        padding: 60px 0;
    }
}

spacer {
    height: 80px;
}

.title-spacer {
    padding-bottom: 20px;
}

/* ==============================
    Override Parent Theme Styles
============================== */

/* ----- Main Nav ----- */
.main-navigation ul.sub-menu li.menu-item {
    white-space: nowrap;
}

.primary-menu.menu-logo-centered {
    padding-left: 0px !important;
}

.menu-logo-centered .menu-item {
    width: 12.5%;
}

.menu-item-logo {
    padding: 0 4% !important;
}

#header-regular.header1 .header-wrap2 #site-navigation {
    display: grid;
    grid-auto-flow: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    grid-template-columns: 0.2fr 1fr 0.2fr;
}

header.transparent-header #header-regular {
    background: linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 59%, rgba(0, 0, 0, 0.8) 100%);
}

header.transparent-header.stuck #header-regular {
    background: #000000 !important;
}

.main-navigation ul:not(.sub-menu) li.menu-item-has-children {
    padding-right: 0rem;
}

/* ----- Header Nav Additions ----- */
.main-navigation ul.primary-menu li {
    padding: 0 0;
}

.main-navigation > ul:not(.sub-menu) > li:not(.menu-item-logo) > a, .main-navigation > ul:not(.children) > li:not(.menu-item-logo) > a {
    font-weight: var(--fw-semibold);
    font-size: var(--fs-p);
}

#header-regular.header1 .header-wrap2 .main-navigation,
#header-regular.header2 .header-wrap2 .main-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

#header-regular.header1 .header-wrap2 .main-navigation > .primary-menu,
#header-regular.header2 .header-wrap2 .main-navigation > .primary-menu {
    flex: 1 1 auto;
}

#header-regular .header-wrap2 .main-navigation .quivo-nav-social,
#header-regular .header-wrap2 .main-navigation .quivo-nav-reservation {
    flex-shrink: 0;
}

#header-regular .header-wrap2 .main-navigation .quivo-nav-social .social-wrap {
    float: none;
    padding-left: 0;
}

#header-regular .header-wrap2 .main-navigation .quivo-nav-social .socialicons {
    display: flex;
    align-items: center;
    gap: 22px;
}

#header-regular .header-wrap2 .main-navigation .quivo-nav-social .socialicons li {
    float: none;
    padding: 0;
}

#header-regular .header-wrap2 .main-navigation .quivo-nav-social .socialicons li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.socialicons li a:hover i {
    color: var(--color-primary);
}

.follow-us-inline {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.follow-us-inline__label {
    color: #ffffff;
    font-weight: 700;
    font-size: 36px;
    line-height: 1;
    white-space: nowrap;
}

.follow-us-inline .social-wrap {
    float: none;
    padding-left: 0;
    margin: 0;
}

.follow-us-inline .socialicons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.follow-us-inline .socialicons li {
    float: none;
    padding: 0;
}

.follow-us-inline .socialicons li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 0px;
}

#header-regular .header-wrap2 .main-navigation .quivo-nav-reservation-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 24px;
    border: 1px solid currentColor;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    float: right;
    transition: background-color 0.25s ease, color 0.25s ease;
}

#header-regular .header-wrap2 .main-navigation .quivo-nav-reservation-btn:hover,
#header-regular .header-wrap2 .main-navigation .quivo-nav-reservation-btn:focus {
    background-color: #ffffff;
    color: #111111;
}

.container {
    display: block !important;
    padding-right: calc(var(--bs-gutter-x) * .5) !important;
    padding-left: calc(var(--bs-gutter-x) * .5) !important;
}

body.elementor-page-1521 {
  padding: 0px !important;
}

.stickytop.transparent-header.stuck .header-wrap {
    margin-top: 15px;
    margin-bottom: 15px;
    transition: all 300ms linear;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
}

/*--- Mobile Navbar ---*/
#header-responsive .header-top {
    display: grid !important;
    grid-auto-flow: column;
    grid-template-columns: 1fr 0.5fr 1fr;
    gap: 20px;
    padding-bottom: 0px !important;

    & .header-center {
        margin: 0 auto;
    }
}

#header.stickytop {

    & #header-responsive .header-wrap {
        padding: 20px;
    }

    &.stuck #header-responsive .header-wrap {
        padding: 15px 20px;
        transition: all 300ms linear;
        -webkit-transition: all 300ms linear;
        -moz-transition: all 300ms linear;
        -ms-transition: all 300ms linear;
        -o-transition: all 300ms linear;
    }
}



/*--- Mobile Side-Nav Fold ---*/
.navi-wrap-responsive .follow-us-inline {
    margin-top: 40px !important;
    margin-bottom: 20px !important;
    padding: 10px 0px;
    border-top: 0.5px solid #666;
    border-bottom: 0.5px solid #666;
}

#header-responsive .social-wrap {
    width: auto;
}


#header-responsive .navi-wrap-responsive #navi-overlay-responsive .menu-item a {
    font-weight: 500 ;
    font-size: 18px;
    letter-spacing: normal;
    line-height: 1.5em;
    text-transform: capitalize;
    padding: 0px;
}

.navi-wrap-responsive .menu-item.menu-item-has-children:after {
    font-size: 28px !important;
    opacity: 1 !important;
}

/* ----- Page: Homepage - Hero Slider  ----- */
.elementor.elementor-1521 .e-con-inner {
    padding: 0px;
}

/* ----- Page: Conatct Us - Submit Form  ----- */
.content-dark select {
    color: gray;
}

input#btn-contactUs.btn--contact {
    background-color: var(--color-primary);
    color: #fff;
    border: 0.5px solid var(--color-primary);

    &:hover {
        background-color: transparent;
        color: var(--color-white);
        border: 0.5px solid var(--color-primary);
    }
}

/* ----- Footer ----- */
.site-footer {
    border-top: 1px solid #666;
}

.footer-sidebar-wrap a:hover {
    color: var(--color-white) !important;
}

.footer-sidebar-wrap a svg:hover {
    fill: var(--color-primary) !important; 
}

#sidebar-footer1 #block-41 {
    text-align: left;
}

.footer-widget-area {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 1.4fr 0.5fr 1fr 1fr;
}

.footer-sidebar {
    width: 100%;
    padding: 30px;
}

.widget-area h5 {
    text-align: left;
    font-weight: var(--fw-bold);
}

figure.logo-footer {
    margin-bottom: 30px;
}

figure.logo-footer img {
    display: block;
}

#sidebar-footer4 .wp-block-buttons {
    justify-content: start;
}

#sidebar-footer4 .wp-block-buttons .wp-block-button__link {
    padding: 0.8rem 1.6rem;
}

/* ==============================
    Custom Style CSS               
============================== */  

/*--- Mobile Side-Nav Fold ---*/
.navi__overlay--btn .btn--primary {
    display: block;
}

.navi-overlay__qlogo--wrapper img {
    width: 150px;
}

.navi-overlay__vlogo {
    padding-top: 20px;
    margin-bottom: 40px;

    & figure img {
        margin: 0 auto;
    }
}

.navi-overlay__qlogo {
    padding-bottom: 20px;
}

/* ----- Footer Widget 1 -----*/
.follow-strip-desktop {
    padding: 20px 0;
  }

  .follow-strip__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .follow-strip__label {
    color: #fff;
    font-weight: 700;
    letter-spacing: .06em;
    font-size: 14px;
    text-transform: uppercase;
    padding-right: 20px;
  }

  .follow-strip__icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
  }

  .follow-strip__icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
    display: block;
  }

  /* ----- Footer Widget 2 -----*/
  h5.wp-block-heading a {
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    font-size: var(--fs-h5);
  }

  /* ----- Footer Widget 4 -----*/
  #block-49 {
    text-align: left !important;
  }

/* ----- Separate Footer Widget 5 -----*/
.footer-sidebar-wrap-5 .footer-widget-area {
    grid-template-columns: 1fr;
    align-items: center;
}

.footer-sidebar-wrap-5 .footer-sidebar {
    padding: 22px 24px;
}

.footer-sidebar-wrap-5 .footer-sidebar img {
    display: block;
    margin: 0 auto;
    width: auto;
    max-width: 100%;
    max-height: 60px;
}

.brand-strip {
    background-color: #1a191b;
    border-top: 1px solid #666;
    border-bottom: 1px solid #666;
  }

  .brand-strip__inner {
    max-width: 1200px;            
    margin: 0 auto;
    height: 80px;             
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 45px;    
    padding: 0px;
  }

  .brand-strip__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  .brand-strip__item img {
    height: auto;           
    width: 100px;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.95;
  }

  .brand-strip__divider {
    width: 1px;
    height: 44px;
    opacity: 0.9;
    flex: 0 0 auto;
  }

  .brand-strip__divider--light { background: rgba(255, 255, 255, 0.55); }
  .brand-strip__divider--red   { background: rgba(220, 40, 55, 0.9); }

  /* ----- Footer Lower Info -----*/
  .footer-info.footer-info-middle {
    font-size: 10px;
    font-family: var(--font-primary);
    font-weight: 500;
    letter-spacing: 1px;

    & a {
        font-size: 10px;
        font-family: var(--font-primary);
        font-weight: 500;
    }
  }

/*----- Page: Homepage - We are also Famous for | Section -----*/
.famous--item__title {
    transform: translateY(100%) !important;
    -webkit-transform: translateY(100%) !important;
    -moz-transform: translateY(100%) !important;
    -ms-transform: translateY(100%) !important;
    -o-transform: translateY(100%) !important;
    transition: all 0.3s ease !important;
    -webkit-transition: all 0.3s ease !important;
    -moz-transition: all 0.3s ease !important;
    -ms-transition: all 0.3s ease !important;
    -o-transition: all 0.3s ease !important;
    
    & p {
        font-size: 12px;
        line-height: 1.35;
        font-weight: 500;
        opacity: 0.85;
    }
}

.famous-item:hover .famous--item__title {
    transform: translateY(0%)!important;
    -moz-transform: translateY(0%)!important;
    -ms-transform: translateY(0%)!important;
    -o-transform: translateY(0%)!important;
    -webkit-transform: translateY(0%)!important;
}

.famous-item img {
    transition: all 1200ms ease;
    -webkit-transition: all 1200ms ease;
    -moz-transition: all 1200ms ease;
    -ms-transition: all 1200ms ease;
    -o-transition: all 1200ms ease;
}

.famous-item:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

/* ----- Page: Articles (/articles) ----- */
.article_hero {
    background: var(--article-hero-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
    padding: 200px 0;
}


.article_intro--section {
    background: var(--article-intro-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
}

.quivo-articles-page {
    padding: 80px 0;
}

.quivo-articles-page .quivo-articles-inner {
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 18rem;
    gap: 80px;
    align-items: start;
}

.quivo-articles-main {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.quivo-article-card.post {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    width: 100%;
    float: none;
    display: grid;
    grid-template-columns: 282px minmax(0, 1fr);
    gap: 60px;
    align-items: start;
    background-color: #000 !important;
}

.quivo-article-thumb a {
    display: block;
}

.quivo-article-thumb img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.quivo-article-thumb-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #13151b;
}

.quivo-article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    text-transform: uppercase;

    & h6 {
        color: var(--color-primary);
        text-decoration: underline;
    }
}

.quivo-article-meta a {
    color: var(--color-primary);
    text-decoration: underline;
}

.quivo-article-title {
    margin: 0 0 14px;
}

.quivo-article-title a {
    color: #ffffff;
    text-decoration: none;
}

.quivo-article-title a:hover {
    color: #ffffff;
}

.quivo-article-excerpt {
    max-width: 90%;
    margin-bottom: 2rem;
}

.quivo-article-excerpt p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.quivo-article-readmore {
    display: inline-block;
    padding: 14px 28px;
    background: #ff013d;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    transition: opacity 0.2s ease-in-out;
}

.quivo-article-readmore:hover {
    color: #ffffff;
    opacity: 0.9;
}

.quivo-articles-sidebar-sticky {
    position: sticky;
    top: 38px;
    background: var(--color-primary);
    color: #ffffff;

    & ul li > a {
        text-transform: capitalize;
    }
}

body.admin-bar .quivo-articles-sidebar-sticky {
    top: 70px;
}

.quivo-articles-sidebar-sticky h5 {
    padding: 15px 20px;
    text-align: center;
    font-weight: var(--fw-bold);
}

.quivo-articles-accordion-toggle {
    display: none;
    width: 100%;
    border: 0;
    background: var(--color-primary) !important;
    font-family: var(--font-primary);
    color: #ffffff;
    padding: 15px 20px;
    text-align: left;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: var(--fw-bold);
    line-height: 1.2;
}

.quivo-articles-accordion-icon {
    width: 10px;
    height: 10px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.quivo-articles-accordion-panel {
    display: block;
}

.quivo-articles-sidebar-sticky ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.quivo-articles-sidebar-sticky li {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.quivo-articles-sidebar-sticky a,
.quivo-articles-sidebar-empty {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 100%;
    padding: 12px 18px;
    text-align: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

.quivo-articles-sidebar-sticky a span {
    font-weight: 600;
}

.quivo-articles-sidebar-sticky a:hover {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.08);
}

.quivo-articles-pagination {
    margin-top: -32px;
}

.quivo-articles-pagination .navigation {
    margin: 0;
}

@media (max-width: 991px) {
    .quivo-articles-page .quivo-articles-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .quivo-article-card.post {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .quivo-articles-sidebar.is-open .quivo-articles-accordion-icon {
        transform: rotate(-135deg);
        margin-top: 6px;
    }
}

@media (max-width: 782px) {
    body.admin-bar .quivo-articles-sidebar-sticky {
        top: 84px;
    }
}
