/*
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 {
    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;}

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

a.wp-block-button__link.has-background.wp-element-button

/* 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;
}

.dynamic-search-form {display: flex;}
.dynamic-search-form input {
    /* box-shadow: 0px 26px 40px 0px #0000000F; */
    border-radius: 10px 0 0 10px;
    border: 1px solid #777A2533;
    padding: 15px;
    width: 100%;
}
.dynamic-search-form input::placeholder {color: #8D8E90;}
.dynamic-search-form .submit-search {
    background-color: var(--orange);
    border-radius: 0 10px 10px 0;
    padding: 10px;
    border: none;
    color: var(--light_cream);
}

/************************************************** 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%;
}
.header-menu ul a {padding: 20px 0;}
header.header .current-menu-item a {
    background-color: var(--orange);
    color: var(--light_cream) !important;
    padding: 20px 10px !important;
}
.header-menu .menu-item {position: relative;}
.menu-item-has-children:hover > ul.sub-menu{
    opacity: 1;
    z-index: 999;
}
.sub-menu {
    position: absolute;
    z-index: -1;
    opacity: 0;
    top: 100%;
    padding: 10px;
    border-radius: 5px;
    background-color: var(--light_cream);
}
.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-mobile img {
    height: 50px;
    width: auto;
    margin: 0 0 20px !important;
}

.rmp-menu-subarrow.rmp-menu-subarrow {
    border: 1px solid black !important;
    border-radius: 50px;
    font-size: 15px;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

header.header-scroll {
    width: 100% !important;
    border-radius: 0;
    top: 0;
    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;}

/************************************************** FOOTER ***************************************************/
footer.footer {background-color: var(--light_cream);}
footer.footer p {font-size: unset;}

.footer-main {padding: 50px 100px;}

.footer-menu-info-section {display: flex;}
.footer-menu, .footer-info {flex: 1;}

.footer-menu ul {
    display: flex;
    gap: 20px;
    flex-direction: column;
}
.footer-menu * {color: var(--orange) !important;}
.footer-menu a {
    font-family: "Plus Jakarta Sans", sans-serif;
    text-transform: uppercase;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.footer-socials i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    border: 1px solid var(--orange);
    width: 50px;
    height: 50px;
    border-radius: 50px;
}

.footer-logos {margin-top: 30px;}
.footer-logos .wp-block-gallery {justify-content: space-between;}

.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);
}

aside#block-19 {width: 50%;}


/* 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: 0 50px;
    transition: max-height 0.3s ease;
    color: var(--orange);
}
.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;}



/* TEAMS */
.team-card{
    border-radius:25px;
    padding:50px;
    position:relative;
    display: flex;
    gap: 30px;
}
.team-photo img{
    width:200px;
    height:200px;
    border-radius:50%;
    object-fit:cover;
}
.team-info {overflow: hidden;}
.team-name, .team-job-title {padding: 10px 20px;}
.team-content p{font-weight: 500;}

.teams-founders{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    margin-bottom:100px;
}
.team-founder-card {
    border-top-left-radius: 200px;
    flex-direction: column;
    align-items: end;
}

.team-founder-card .team-photo{
    width: max-content;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(0,-25%);
}
.team-founder-card .team-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.team-founder-card .team-info {width: 50%;}
.team-founder-card .team-name {background-color:#F7FFBB;}
.team-founder-card .team-job-title {background-color: #FFF6E2;}

.team-founder-card .team-content {color: #F7FFBB;}

/* MEMBER */
.teams-members {
    display: flex;
    gap: 50px;
    flex-direction: column;
}
.team-member-card {
    width: calc(100% - 100px);
    transform: translateX(100px);
    align-items: center;
}
.team-member-card .team-photo {
    position: absolute;
    left: -100px;
    top: -20px;
}
.team-member-card .team-photo img {
    width: 230px;
    height: 230px;
    border-color: #F07D19 !important;
}
.team-member-card .team-info {
    width: inherit;
    z-index: 9;
    color: var(--light_cream);
	margin-top:100px;
}
.team-member-card .team-name {background-color:#434510;}
.team-member-card .team-job-title {background-color: #CD4B1E;}
.team-member-card .team-content {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--orange);
}

.tour-card-reverse {
    flex-direction: row-reverse;
    transform: none;
}
.tour-card-reverse .team-photo {
    left: unset;
    right: 0;
    transform: translateX(100px);

}


/* REVIEWS */
.reviews-section {
    position: relative;
    z-index: 9;
}
.reviews-section::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 90%;
    height: 100%;
    background-color: #CFD795;
    z-index: -1;
    border-radius: 50px;
    transform: translateX(-50%);
}
.review-item {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    box-shadow: 0px 30px 70px 0px rgba(0, 0, 0, 0.03);
    background-color: white;
    border-radius: 20px;
}

.review-stars {
    color: #FF500A;
    font-size: 30px;
}
.review-link, .review-title {font-size: 20px;}
.review-link {
    text-decoration: underline;
    color: #ED5733 !important;
}
.review-title {color: #00000080;}



/************************************************** TEMPLATES: BOOKING ITEM HOMEPAGE **************************************************/
.tour-item {display: flex;}

.booking-item-homepage-image, .booking-item-homepage-content {flex: 1;}
.booking-item-homepage-image img {
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}
.booking-item-homepage-content {
    background-color: #CFD795;
    padding: 75px 50px 50px 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
}
.booking-item-homepage-title a,
.booking-item-homepage-price p {
    font-family: "Montserrat", sans-serif;
}
.booking-item-homepage-meta {
    color: var(--orange);
    font-weight: 600;
}
.booking-item-homepage-excerpt {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0px;
}
.booking-item-homepage-btns {
    display: flex;
    gap: 20px;
}
.booking-item-homepage-title {font-weight: 700;}
.booking-item-homepage-title a {color:black;}
.booking-item-homepage-price p {
    font-weight: 700;
    font-size: 24px;
    color: #525329;
}
.booking-item-homepage-btns a {
    border-radius: 50px;
    color: white;
    padding: 15px 50px;
    display: block;
}
.booking-item-homepage-btns a:hover {filter:brightness(0.75);}
a.booking-item-homepage-btn-single {background-color: var(--orange);}
a.booking-item-homepage-btn-archive {background-color:var(--green);}


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

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

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

    header.header a {font-size: 15px;}
    .footer-logos img {
        height: 50px;
        width: auto;
    }
    .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: relative;
        padding: 10px 20px;
        top: 0;
        left: 0;
        transform: none;
    }
}

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

    .footer-logos img {
        width: 100%;
        height: auto;
    }


    .homepage-tours .heading2 {text-align: center;}
    .booking-item-homepage {
        flex-direction: column;
    }
    .booking-item-homepage-image img {height: 200px;}
    .booking-item-homepage-content {padding: 20px;}
    .booking-item-homepage-excerpt {
        font-size: 18px;
        line-height: 18px;
        letter-spacing: 0px;
    }
    .booking-item-homepage-btns {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    .booking-item-homepage-btns a {padding: 10px 30px;}

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

    .reviews-section::after {
        width: 100%;
        border-radius: 0;
    }
    .reviews-section .heading3 {padding: 0 50px !important;}
}