/*
Theme Name: Kaki Tours Theme
Author: Fit.al
Author URI: https://fit.al/
Description: The new theme for the Kaki Tours website.
Version: 1.0
Text Domain: kaki
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');


:root {
   --light_cream: #FEF7D8;
   --orange: #FF481F;
   --green: #777A25;
}

@font-face {
    font-family: 'Tw Cen MT';
    src: url('../fonts/Tw-Cen-MT.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Riffic';
    src: url('../fonts/RifficFree-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}


/************************************************** GENERAL ***************************************************/
* {transition: 300ms linear;}

/* TEXTS */
body {font-family: 'Poppins', sans-serif;}
.tw-cen-font {font-family: 'Tw Cen MT', sans-serif !important;}
.manrope-font {
    font-family: "Manrope", sans-serif;
    font-weight: 500;
}
.plus-jakarta-font {font-family: "Plus Jakarta Sans", sans-serif;}

a, button {
    text-decoration: none;
    color: black;
}
/* p, h1, h2, h3, h4, h5, h6, figure {margin: 0;} */
ul {
    list-style: none;
/*     margin:0; */
    padding: 0;
}

.heading1 {
    font-weight: 700;
    font-size: 80px;
    line-height: 87px;
}
.heading2 {
    font-weight: 600;
    font-size: 64px;
    line-height: 120%;
}
.heading3 {
    font-weight: 600;
    font-size: 40px;
    line-height: 45px;
    letter-spacing: 0px;
}
.heading4 {
    font-weight: 600;
    font-size: 36px;
    line-height: 150%;
    letter-spacing: -1.9%;
}
.heading5 {
    font-weight: 600;
    font-size: 26px;
    line-height: 30px;
    letter-spacing: -3%;
}

p {
    font-weight: 300;
    font-size: 24px;
    line-height: 130%;
}
p strong {font-weight: 500;}
.p-small {
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
}
.page p, .blog-page p {font-size: 20px;}

mark {padding: 0;}

a:hover {text-decoration:underline;}

/* BTNS */
.wp-block-button a {
    padding: 15px 50px;
    color: white;
}
.btn-orange a {background: var(--orange);}
.btn-orange a:hover {background-color: #525329;}

/* OTHER */
.round-corner,
.round-corner img {border-radius: 40px;}
.round-corner-20 {border-radius: 20px;}

.width100, 
.width100 img{
    width: 100%;
}
.normal-list {
    list-style: inside;
    list-style-type: disc;
}

.owl-custom-nav {
    display: flex;
    gap: 10px;
}
.owl-custom-nav button {
    border-radius: 50px;
    border: 1px solid var(--orange);
    width: 60px;
    height: 60px;
    color: var(--orange);
    background-color: transparent;
    font-size: 30px;
}
.owl-custom-nav button:hover {
	background-color: var(--orange);
	color:var(--light_cream);
}

.header-owl-nav .wp-block-group__inner-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


input[type="checkbox"],
input[type="radio"]{
    width: 15px;
    height: 15px;
	accent-color:var(--orange);
}

.regulamin {padding:140px 0 0;}

figcaption {
    text-align: center;
    font-size: 12px;
    color: gray;
	font-style:italic;
}

/************************************************** HEADER ***************************************************/
header.header{
    display: flex;
    justify-content: space-between;
    background-color: var(--light_cream);
    border-radius: 50px;
    padding: 0 50px;
    width: 80%;
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    border: 1px solid var(--orange);
}
.header-logo, .header-book-trip {
    display: flex;
    align-items: center;
}
.menu-main-menu-container,
.header-menu ul a {
    display: block;
    height: 100%;
    text-transform: uppercase;
}
.header-mobile {display: none;}

.header-menu ul {
    display: flex;
    gap: 20px;
    height: 100%;
	margin:0;
}
.header-menu ul a {padding: 20px 0;}
.header-menu .current-menu-item > a {
    background-color: var(--orange);
    color: var(--light_cream) !important;
    padding: 20px 10px !important;
}
.header-menu .sub-menu .current-menu-item a {
	padding:15px !important;
	margin:0 !important;
}


.header-menu .menu-item {position: relative;}
.menu-item-has-children:hover > ul.sub-menu{
    opacity: 1;
    z-index: 999;
	pointer-events: auto; /* enable interaction when visible */
}
.sub-menu {
    position: absolute;
    z-index: -1;
    opacity: 0;
    top: 100%;
    border-radius: 5px;
    background-color: var(--light_cream);
	width:max-content;
	height:max-content !important;
	display:block !important;
    box-shadow: 0px 2px 20px #0000005d;
	width: 250px;
    overflow-y: auto;
    max-height: 75vh !important;
	pointer-events: none; /* prevents hover when hidden */
}
.sub-menu::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
.sub-menu::-webkit-scrollbar-track {
    background: transparent;
}

.sub-menu::-webkit-scrollbar-thumb {
	background:rgb(255 72 31 / 25%);
    border-radius: 999px;
}

.sub-menu::-webkit-scrollbar-thumb:hover {
    background: rgb(255 72 31 / 50%);
}

.sub-menu a {
    margin: 0 15px !important;
    border-bottom: 1px solid #ff481f3b;
    padding: 15px 0 !important;
}

.header-menu a:hover {color: var(--orange);}
.header-book-trip a {
    background-color: var(--orange);
    border-radius: 50px;
    color: white;
    padding: 10px 20px;
    display: block;
}
.header-book-trip a:hover {background-color:var(--green);}

.header-mobile img {
    height: 50px;
    width: auto;
    margin: 0 0 20px !important;
}
.header-mobile .current-menu-item a {padding: 0 10px;}


.rmp-topmenu-active a,
.rmp-menu-current-item a,
.rmp-menu-current-item .rmp-menu-subarrow {color:var(--light_cream) !important;}
.current-menu-parent a,
.rmp-topmenu-active .rmp-submenu a,
.rmp-menu-subarrow{color:black !important;}

.rmp-menu-subarrow {
    font-size: 20px;
    display: flex !important;
    justify-content: center;
    align-items: center;
	height:100% !important;
}

header.header-scroll {
    width: 100% !important;
    border-radius: 0;
    top: 0 !important;
    border-top: none;
    border-left: none;
    border-right: none;
    box-shadow: 0px 2px 20px #0000005d;
    z-index: 999;
}
header.header-scroll .current-menu-item a {padding: 25px 10px !important;}


.header-cart {
    display: flex;
	align-items:center;
}
.header-cart .menu-cart {position:relative;}
.header-cart a {
	color:black;
	font-size:20px;
}
.header-cart a:hover i {transform:rotateY(360deg);}
.header-cart a:hover .cart-count {transform:rotateY(-360deg);}

.header-cart .cart-count {
    position: absolute;
    top: -5px;
    right: -7px;
    color: var(--light_cream);
    background-color: var(--orange);
    border-radius: 50%;
    width: 15px;
    height: 15px;
    display: flex;
    font-size: 10px;
    justify-content: center;
    align-items: center;
}

/************************************************** FOOTER ***************************************************/
footer.footer {
	border-top:1px solid #ff481f33;
	background-color: var(--light_cream);
}

footer.footer * {font-size:18px !important;}
.footer-main {
	padding: 50px 100px;
	display:flex;
	gap:20px;
	align-items:center;
	justify-content:center;
}

.footer-bottom p {
    color: var(--orange);
    padding: 20px;
}
.footer-bottom::before {
    content: "";
    display: block;
    margin: 0 auto;
    top: 0;
    right: 0;
    height: 1px;
    width: 97%;
    background-color: var(--orange);
}
.footer-main a {color:var(--orange);}


/* FAQ */
.faq-item {border-bottom: 2px solid #0000001e;}
.faq-item:first-child {border-top: 2px solid #0000001e;}
.faq-question {
    width: 100%;
    padding: 30px 50px;
    font-size: 24px;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
	position:relative;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0px 10px 0 10px;
    transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer {padding: 0px 50px 30px 50px;}

.faq-question::after {
    content: "+";
    float: right;
    transition: transform 0.3s ease;
    background-color: var(--orange);
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
	position:absolute;
	right:20px;
}

.faq-item.active .faq-question::after {content: "-";}

.faq-item.active .faq-answer {max-height: 500px;}

/************************************************** OPTIMIZATION **************************************************/

@media (max-width: 1600px) {
    header.header {
        width: 90%;
        padding: 0 10px;
		top:40px;
    }
}

@media (max-width: 1300px){
    header.header {width: 95%;}
    .header-menu ul {gap: 20px;}

    header.header a {
		font-size: 15px;
		text-transform:uppercase;
	}
    .heading1 {
        font-size: 65px;
        line-height: 87px;
    }
    .heading2 {font-size: 54px;}
    .heading3 {font-size: 40px;}
    .heading4 {font-size: 30px;}
    .heading5 {font-size: 22px;}
    p {font-size: 20px;}

    .d-none-1300 {display: none;}
}

@media (max-width: 1100px) {
    .header-menu {display: none;}
    .header-mobile {display: block;}
    header.header {
        flex-direction: row-reverse;
        width: 100%;
        border-radius: 0;
        position: fixed;
        padding: 10px 20px;
        top: 0;
        left: 0;
        transform: none;
		border:none;
    }
		
	/* 	MARGIN-TOP:70PX BECAUSE OF STICKY HEADER */
	.current-page {margin-top:70px;}
}

@media (max-width: 991px){
    .footer-main .row {gap:50px;}
    aside#block-19 {width: 100%;}
}

@media (max-width: 768px){
    .footer-main {padding: 30px;}
    .header-owl-nav .wp-block-group__inner-container {
        flex-direction: column;
        gap: 10px;
    }
    .owl-custom-nav button {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

@media (max-width: 600px) {
    .d-none-600 {display: none;}
    .py-5 {
        padding-top: 2rem!important;
        padding-bottom: 2rem !important;
    }

    .wp-block-button a {
        padding: 15px 40px;
        font-size: 16px;
    }
    .heading1 {
        font-size: 42px;
        line-height: 50px;
        letter-spacing: -1%;
    }
    .heading2 {
        font-size: 36px;
        line-height: 120%;
        letter-spacing: 0%;
        }
    .heading3 {
        font-size: 28px;
        line-height: 100%;
    }
    .heading4 {
        font-size: 25px;
        line-height: 100%;
    }
    .heading5 {
        font-size: 32px;
        line-height: 36px;
        letter-spacing: -3%;
    }
    p {font-size: 20px;}

    .footer-menu-info-section {
        flex-direction: column;
        gap:50px;
    }
    .footer-logos .wp-block-gallery {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px 50px;
    }

    .faq-question {
        font-size: 18px;
        padding: 10px;
        gap: 10px;
    }
    .faq-item.active .faq-answer {
        padding: 0px 10px 30px 10px;
    }
    .faq-question::after {
        min-width: 30px;
        height: 30px;
        position: relative;
        right: 0;
    }

   
	.footer-logos figure {
		width:100% !important;
		text-align:center;
	}
	.footer-logos img {width:100px !important;}
}