/*
Theme Name: Ideal Theme
Theme URI: https://idealtechnology.asia/
Author: Ideal Technology
Author URI: https://idealtechnology.asia/
Description: Custom theme
Text Domain: pizzamaru-th
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 400;
}

.noselect {
  -webkit-user-select: none; /* For Safari */
  -moz-user-select: none;    /* For Firefox */
  -ms-user-select: none;     /* For IE/Edge */
  user-select: none;         /* Standard */
}

p{
  font-size: 20px;
  color: #666666;
  font-family: var(--primary-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {  
  color: var(--default-color); 
  padding: 15px 0;
  transition: all 0.5s;
  border-top: 3px solid var(--primary-color);
  z-index: 997;
  background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(255,255,255,1) 58%,rgba(255,255,255,0.95) 65%,rgba(255,255,255,0.9) 76%,rgba(255,255,255,0.7) 100%);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 90px;
  margin-right: 8px;
}
.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }  

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px color-mix(in srgb, var(--default-color), transparent 85%);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  background-color: #ffffff;
}

.scrolled .header .logo img {
  max-height: 50px;  
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .current-menu-item > a:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .current-menu-item > a,
  .navmenu .current-menu-item > a:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .current-menu-item > a:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .current-menu-item > a,
  .navmenu .current-menu-item > a:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .current-menu-item > a i,
  .navmenu .current-menu-item > a:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  --background-color: var(--primary-color);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --contrast-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
  padding-top: 100px;
}

.footer .footer-top {
  background-color: color-mix(in srgb, var(--background-color), white 5%);
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.footer h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
  color:rgba(255, 255, 255, 0.65);
}

.footer .copyright {
  padding: 30px 0;
  color:rgba(255, 255, 255, 0.65);
}

.footer .copyright p {
  margin-bottom: 0;  
}

.footer .credits {
  font-size: 14px;
  display: flex;
  align-items: center;
}

.footer .credits a{
  display: block;
  margin: 10px;
  color: rgba(255, 255, 255, 0.65)
}

.footer .credits a:hover{
  color: rgba(255, 255, 255, 1);
}

.footer .social-links a, .email a {
  font-size: 18px;
  display: inline-block;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--contrast-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.6s ease-out;
  
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--primary-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--primary-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-slider {
  --default-color: #ffffff;
  --background-color: #010922;
  --heading-color: #ffffff;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}


/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.it-heading {
  font-size: 80px;   
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}


.it-heading-wrapper p {
  margin-bottom: 0;
  font-family: var(--primary-font);
}



.menu-cat{
  margin-bottom: 10px;
}

.menu-cat .img-container{
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  border-radius: 25px;
  overflow: hidden;
}

.menu-cat-title{
  margin: 0 30px;
  padding: 10px;
  background: #ffffff;
  border-radius: 15px;
  position: relative;
  z-index: 9;
  box-shadow: rgba(50, 50, 93, 0.25) 13px 0px 20px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  transform: translateY(-35px);
  -webkit-transition: -webkit-transform 1s;
  transition: transform 1s;
}

.menu-cat-title h2{
  text-align: center;
  font-weight: 700;  
}


.menu-cat img{
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  opacity: 0.85;
}

.menu-cat:hover img {
	opacity: 1;
	-webkit-transform: scale3d(1.1,1.1,1);
	transform: scale3d(1.1,1.1,1);
}

.menu-cat:hover .menu-cat-title{
  transform: translateY(-20px);
}

.post-swiper-container{
  overflow: hidden;
}


.branch{
  background: #e2e2e2;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 30px;
}

.branch h2{
  color: var(--primary-color);
  font-weight: 700;
  margin: 10px 0 15px;
}

.branch p{
  font-family: var(--primary-font);
  color: #666666;
  font-size: 18px;
}
.branch-address{
  padding: 15px 20px;
}

.bottom-divider-1{
  position: relative;
}

.bottom-divider-1::before{ 
  content: '';
  width: 100%;
  height: 60px;
  background: url(assets/img/divider_1.png)no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}


.footer::before{
  content: '';
  width: 100%;
  height: 60px;
  background:url(assets/img/divider_1.png)no-repeat center;
  background-size: cover;
  transform: scaleY(-1);
  position: absolute;
  top:0;
  left: 0;
  right:0;
  
}

.youtube-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.youtube-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.of-hide{
  width:100%;
}

.swiper-slide .row{
  width:100%!important;
}



.testing{
  margin-top: 200px;
}

.post-swiper-container{
  position: relative;
}

.promo-description{
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 50px;
}

.it-icon-btn{
  padding: 20px 0!important;
}

.price-container{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

.price-tag{
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 10px;
  
}

.price-tag span{
  background: var(--primary-color);
  border-radius: 25px;
  font-size: 12px;
  margin-right: 10px;
  padding: 5px 15px;
  color: #ffffff;  
}


.breadcrumb-wrapper {
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  position: relative;
}

.tax-breadcrumb-wrapper {
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.menu-title{
  padding: 30px 0;
}

.tax-menu-grid-wrapper{
  border-radius: 15px;
  overflow: hidden;
  background-color: #f2ddcd;
}

.menu-info{
  padding: 20px;
}

#tax-menu-page{
  padding: 60px 0;
}  

.divider-1::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.7);
}



.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
  overflow: hidden;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sb-menu{
  padding: 30px 10px;
  background: #f2f2f2;
  border-radius: 10px;
  margin-bottom: 30px;
}

.sbmenu-link{
  display: flex;
  align-items: center;
  padding: 10px;
  width: 100%;
  border-bottom:1px dotted #999999;
}

.childmenu-link{
  display: flex;
  font-family: var(--primary-font);
  color: var(--default-color);
  font-size: 18px;
  align-items: center;
  padding: 5px 15px;
  width: 100%;
  border-bottom:1px dotted #999999;
}


.subchild-menu{
  padding: 20px;
}

.active-sb-menu > a {
  background: #ffffff;
}

.tax-icon{
  width: 35px;
  height: 35px;
}

.childmenu-link i{
  font-size: 5px;
  padding-right: 10px;
}

.tax-title{
  font-family: var(--heading-font);
  color: var(--primary-color);
  font-size: 26px;
  font-weight: 700;
  padding: 0 15px;
}

.nav-links{
  display: flex;
  align-items: center;
}

.page-numbers{
  display: block;
  padding: 10px 20px;
  background: var(--primary-color);
  color: #ffffff;
  margin:1px;
}

.page-numbers.current{
  background: #e2e2e2!important;
  color: var(--primary-color)!important;
  font-weight: 700;
}

.prev{
  border-radius: 10px 0 0 10px;
}

.next{
  border-radius:  0 10px 10px 0;
}

.tax-title h2{
  font-size: 25px;
  
}

.sidebar-menu{
  list-style: none;
  padding: 0;
}

.subchild-menu{
  list-style: none;
}

.content-wrapper{
  margin: 60px 0;
  position: relative;
}

.single-img{
  border-radius: 25px;
  overflow: hidden;
  position: relative;
}

.single-content{
  padding: 30px 0;
 
}

.sidebar-postlist{
  border-radius: 20px;  
  padding: 30px 20px;
  background: #f8f8f8;
}

.sidebar-title{
  padding: 15px;
  margin-top: 60px;
  border-radius: 15px 15px  0  0;
  background-color: var(--primary-color);
}

.sidebar-title h2{
  color: #ffffff;
}

.sidebar-item{
  padding: 10px 0;
  border-bottom: 2px dotted #999999;
}
.sidebar-item a{
  display: flex;
  align-items: center;
}

.sidebar-img{
  width: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.post-carousel-container{
  position: relative;
  
}

.promo-description h2 {
  font-size: 50px;
  font-weight: 700;
  color: var(--primary-color);
}

.additional-crust{
  margin:60px 0;
}

.additional-context p{
  font-size: 16px;
}

.circle-img{
  border-radius: 25px;
  overflow: hidden;
}

.yoast-breadcrumbs a{
  color: #ffffff!important;
}

.breadcrumb_last{
  color: #222222;
}

.single-menu .single-content p{
    text-align: center;
}

.price-tag{
    color: #ff5b00;
}






