/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Global Layout CSS */
.page-header {
	display: none;
}
.slider-card .blur {
	background: rgba(255, 255, 255, 0.1) !important;
	backdrop-filter: blur(4px);
	transition: all 300ms ease-in-out;
}
.slider-card:hover .blur {
	backdrop-filter: blur(14px);
}
.swiper-wrapper {
	cursor: grab;
}
section[id],
div[id] {
    scroll-margin-top: 100px;
}

/* Filter CSS */
.project-filter-wrapper {
    width: 100%;
}
.project-filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}
.filter-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 600;
    color: #333333;
}
.filter-dot {
    width: 10px;
    height: 10px;
    background: #8B4513;
    border-radius: 50%;
    display: inline-block;
}
/* Filter Chips */
.project-filter-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.project-chip {
    padding: 10px 22px;
    border: 1.5px solid #8B4513;
    border-radius: 30px;
    background: transparent;
    font-size: 14px;
    color: #8B4513;
    cursor: pointer;
    transition: all 0.3s ease;
}
.project-chip:hover {
    border-color: #8B4513;
    color: #fff;
	background: #8B4513;
}
.project-chip.active {
    background: #8B4513;
    border-color: #8B4513;
    color: #ffffff;
}
/* Counter */
.project-counter {
    font-size: 14px;
    color: #888888;
    margin-bottom: 25px;
}
/* Grid */
.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
/* Card */
.project-card {
    text-decoration: none;
    color: #333333;
    display: block;
    transition: opacity 0.3s ease;
}
.project-card.hidden {
    display: none;
}
.project-card-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
}
.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.project-card:hover .project-card-image img {
    transform: scale(1.05);
}
/* Tags di dalam gambar */
.project-card-tags {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.project-tag {
    background: rgba(255, 255, 255, 0.9);
    color: #333333;
    font-size: 12px;
    padding: 5px 14px;
    border-radius: 20px;
    font-weight: 500;
    backdrop-filter: blur(4px);
	transition: all 300ms ease-in-out;
}
.project-tag:hover {
	background: #8B4513;
	color: #fff;
}
/* Card Footer */
.project-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}
.project-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #222222;
    margin: 0;
}
.project-card-year {
    font-size: 16px;
    color: #2B2B2B;
}
/* Responsive */
@media (max-width: 768px) {
    .project-grid {
        grid-template-columns: 1fr;
    }
    .project-filter-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Navbar */
.main-navbar.scrolled .navbar-container {
	box-shadow: 0px 10px 15px -5px rgba(0,0,0,0.5);
}
.btn-mobile-nav {
    width: 25px;
    height: 40px;
	position: relative;
	display: flex;
    align-items: center;
    justify-content: flex-end;
	cursor: pointer;
	border: unset;
}
.burger-line {
	width: 25px;
	height: 3px;
	background: #2B2B2BB2;
	position: relative;
	display: block;
	transition: all 0.5s ease;
}
.burger-line:before, .burger-line:after {
	content: '';
	width: 25px;
	height: 3px;
	background: #2B2B2BB2;
	position: absolute;
	transition: all 0.5s ease;
}
.burger-line.black {
	width: 25px;
	height: 2px;
	background: #222831;
	position: relative;
	display: block;
	transition: 0.5s ease;
}
.burger-line.black:before, .burger-line.black:after {
	content: '';
	width: 25px;
	height: 2px;
	background: #222831;
	position: absolute;
	transition: 0.5s ease;
}
.burger-line:before {
	top: -8px;
	left: 0;
}
.burger-line:after {
	bottom: -8px;
	left: 0;
}
.btn-mobile-nav.active .burger-line {
    transform: rotate(45deg);
	background: #2B2B2BB2;
}
.btn-mobile-nav.active .burger-line:before {
    transform: rotate(90deg);
	top: 0px;
	background: #2B2B2BB2;
}
.btn-mobile-nav.active .burger-line:after {
    transform: rotate(90deg);
	bottom: 0px;
	background: #2B2B2BB2;
}
.burger-shortcode {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	position: fixed;
	top: 10px;
}
.mobile-navbar nav, .footer-navbar nav {
	background: transparent !important;
}
.mobile-navbar {
	width: 100%;
}
.mobile-navbar a {
	border-bottom: 1px solid #ededea;
	padding: 15px 10px;
}
.mobile-navbar a:focus {
	background-color: transparent !important;
	color: #2B2B2BB2 !important;
}
.mobile-navbar a.elementor-item-active {
	background-color: transparent !important;
}

/* Homepage CSS */
.blur-btn a {
	background-color: rgba(255, 255, 255, 0.1) !important;
	transition: all 300ms ease-in-out;
	backdrop-filter: blur(4px);
}
.blur-btn a:hover {
	backdrop-filter: blur(14px);
}
.blur-btn a .elementor-button-content-wrapper {
	transition: gap 300ms ease-in-out;
}
.blur-btn a:hover .elementor-button-content-wrapper {
	gap: 10px;
}
.underline-custom-2 p::after {
	content: " ";
	display: block;
	height: 2px;
	width: 100%;
	background: #EDEDEA;
	margin-top: 3px;
	border-radius: 5px;
	transition: opacity 300ms ease-in-out;
	opacity: 0;
}
.underline-custom-2:hover p::after {
	opacity: 1;
}
.blur .underline-custom p::after {
	content: " ";
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #EDEDEA;
	top: 100%;
	border-radius: 5px;
	transition: opacity 300ms ease-in-out;
	opacity: 0;
}
.blur:hover .underline-custom p::after {
	opacity: 1;
}
.image-animation .image {
	transform: scale(1);
	transition: transform 300ms ease-in-out;
}
.image-animation:hover .image {
	transform: scale(1.1);
}

/* Projects Detail */
.custom-heading-height-1 h3 {
	height: 140px;
}

/* Contact */
.flex-form p {
	display: flex;
	flex-wrap: nowrap;
	gap: 5px;
}
input.wpcf7-form-control, textarea.wpcf7-form-control {
	background: transparent;
	border: unset;
	border-bottom: 1px solid #2B2B2B4D;
	border-radius: 0px;
	padding: 10px 0px;
}
input.wpcf7-form-control:focus-visible, textarea.wpcf7-form-control:focus-visible {
	border: unset !important;
	outline: unset !important;
	border-bottom: 1px solid #2B2B2B4D !important;
}
[data-name="your-email"] input.wpcf7-form-control {
	margin-bottom: 15px;
}
textarea.wpcf7-form-control {
	height: 80px;
}
input.wpcf7-submit {
	padding: 15px 30px;
	background: #864728;
	border-bottom: unset;
	border-radius: 10px;
	color: #fff;
	font-weight: 500;
}
input.wpcf7-submit:hover {
	background: #864728;
}

/* Footer */
.footer-form form .elementor-form-fields-wrapper {
	flex-direction: row;
	flex-wrap: nowrap !important;
}
.footer-form form .elementor-form-fields-wrapper .elementor-field-group {
	width: fit-content;
}
.footer-form form .elementor-form-fields-wrapper #form-field-email {
	background-color: rgba(255, 255, 255, 0.3) !important;
	backdrop-filter: blur(2px);
}

@media (min-width: 769px) and (max-width: 1024px) {
	.custom-offcanvas {
		left: 100% !important;
		transition: all 1.5s ease-in-out;
		padding-top: 100px;
		z-index: 0;
	}
	.custom-offcanvas.active {
		left: 0% !important;
		z-index: 9;
	}
}

@media (max-width: 768px) {
	.custom-offcanvas {
		left: 100% !important;
		transition: left 1s ease;
	}
	.custom-offcanvas.active {
		left: 0% !important;
	}
	.footer-navbar a.elementor-item-active {
		background-color: transparent !important;
	}
	.mobile-navbar a:focus {
		color: #fff !important;
		padding: 15px 10px;
	}
	.elementor-20 .elementor-element.elementor-element-dace283 img {
		max-width: none !important;

        -webkit-object-fit: contain;
        object-fit: contain;

        display: block;
	}
}