/*
Theme Name: Juver Colas
Theme URI: https://juvercolas.com
Author: Juver Colas
Author URI: https://juvercolas.com
Description: Custom theme by Juver Colas
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: juver-colas
Copyright: © 2026 Juver Colas
*/

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #333;
}
::-webkit-scrollbar-thumb {
    background: #444;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}
:root {
	--tri-width: 500px;
	--tri-height: 350px;
	--tri-bg: #FFD55D;
	--vfx-box-dim: 180px;
	--vfx-accent: #FFD55D;
	--vfx-track: #333;
}
body{
	margin: 0px;
	background-color: #f8f8f8;
	background-image:
		linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
	background-size: 200px 200px;
}
body p{
	margin-block-start: 0  !important;
	margin-block-end: 0 !important;
}
.elementor-button, .slider-nav-btn{
	cursor: pointer;
}
.elementor-element .swiper .elementor-swiper-button{
	display: none !important;
}
.simple-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.4s ease;
}

.item {
  min-width: 33.3333%;
  box-sizing: border-box;
  padding: 10px;
}

.item-inner {
  background: #f2f2f2;
  padding: 40px;
  text-align: center;
  border-radius: 8px;
}

/* Scoped Wrapper to handle the 3D Perspective and Absolute Positioning */
.canvas-3d-wrapper {
    position: relative; /* Change to absolute if you want it floating over other content */
    width: 100%;
    height: 600px; /* Adjust based on your design */
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px; /* Perspective belongs here */
    overflow: visible;
}

.banner-carousel-container {
    --carousel-width: 320px;
    --carousel-height: 240px;
    --radius: 400px;
    
    width: var(--carousel-width);
    height: var(--carousel-height);
    position: relative;
    transform-style: preserve-3d;
    animation: rotate-carousel 30s linear infinite;
}

.banner-carousel-container .bc-item {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    backface-visibility: visible;
}

/* 3D positions */
.banner-carousel-container .bc-item:nth-child(1) { transform: rotateY(0deg) translateZ(var(--radius)); }
.banner-carousel-container .bc-item:nth-child(2) { transform: rotateY(45deg) translateZ(var(--radius)); }
.banner-carousel-container .bc-item:nth-child(3) { transform: rotateY(90deg) translateZ(var(--radius)); }
.banner-carousel-container .bc-item:nth-child(4) { transform: rotateY(135deg) translateZ(var(--radius)); }
.banner-carousel-container .bc-item:nth-child(5) { transform: rotateY(180deg) translateZ(var(--radius)); }
.banner-carousel-container .bc-item:nth-child(6) { transform: rotateY(225deg) translateZ(var(--radius)); }
.banner-carousel-container .bc-item:nth-child(7) { transform: rotateY(270deg) translateZ(var(--radius)); }
.banner-carousel-container .bc-item:nth-child(8) { transform: rotateY(315deg) translateZ(var(--radius)); }

.banner-carousel-container .bc-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes rotate-carousel {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

.home-banner-form form{
	display: flex !important;
	flex-direction: column !important;
	gap: 20px !important; 
}
.home-banner-form form p label{
	font-size: 12px !important;
	font-family: "Outfit", sans-serif !important;
}
.home-banner-form form p label span input, .home-banner-form form p label span select{
	display: block !important;
	width: 100% !important;
	height: 32px !important;
	border: none !important;
	border-bottom: 1px solid #888 !important;
	background: transparent !important;
	font-size: 15px !important;
	font-family: "Outfit", sans-serif !important;
}
.home-banner-form form p label span input:focus, .home-banner-form form p label span select:focus{
	outline: none !important;
}
.home-banner-form p .wpcf7-submit{
	border: none !important;
	padding: 12px 30px !important;
	border-radius: 5px !important;
	font-size: 16px !important;
	background-color: #FFD55D !important;
	color: #000 !important;
}
/* Target all elements starting with "scroll-" */
/* Update this section in your stylesheet */
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

[class*="scroll-"] {
  will-change: transform;
  /* Use a very short duration or remove transition for the most "locked-in" parallax feel */
  transition: transform 0.1s cubic-bezier(0, 0, 0.2, 1); 
  display: inline-block;
}

/* Fix for Elementor Sticky Headers + Lenis */
html.lenis {
  height: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}




.pill-switch-wrapper {
  display: flex;
  justify-content: left;
  margin: 0;
}

.pill-switch-track {
  display: flex;
  background: #f0f0f0 !important;
  border-radius: 100px !important;
  padding: 0 !important; /* Changed to 0 to prevent the gap in your image */
  position: relative;
  width: 340px; /* Adjusted width based on your image */
  height: 38px; /* Fixed height for consistency */
  border: 1px solid #e0e0e0 !important;
  overflow: hidden !important; /* This clips the yellow rectangle into a pill shape */
}

.pill-btn {
  flex: 1;
  background: none !important;
  border: none !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  color: #777 !important;
  z-index: 2;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
}

.pill-btn.active {
  color: #000 !important;
}

.pill-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: #FFD55D !important; /* Your specific yellow color */
  border-radius: 0 !important; /* Reset this since the parent clips it */
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.15);
}

/* Slide logic */
.pill-switch-track.guest-active .pill-indicator {
  transform: translateX(100%);
}

/* Add this to your stylesheet */
.hidden-form {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}


.tassie-header{
	transition: 0.3s;
}
.tassie-header .top-bar{
	max-height: 42px;
	height: 42px;
	opacity: 1;
    overflow: hidden;
	transition: 0.2s;
}
.tassie-header.header-breakpoint .top-bar{
	max-height: 0 !important;
    opacity: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin: 0 !important;
    pointer-events: none;
}
.tassie-header.header-breakpoint{
	background-color: rgba(255,255,255,0.8);
	backdrop-filter: blur(5px);
	box-shadow: 0px 2px 4px rgba(0,0,0,0.1);
}
#jv-hero-slider-section {
    --jv-primary: #FFD55D;
    padding: 20px 0;
    font-family: sans-serif;
    overflow: hidden; /* Contains the clip-path logic */
  }

  /* Target Swiper specifically within our ID to avoid global leaks */
  #jv-hero-slider-section .jv-main-swiper {
    width: 100%;
    overflow: visible !important; 
    clip-path: inset(-100vw -100vw -100vw 0);
  }
#jv-hero-slider-section .swiper-wrapper{
	height: 450px !important;
}
  .jv-slide-item {
    background: #f9f9f9; 
    height: 100%;
    display: flex !important;
    align-items: flex-end !important;
    padding: 0px;
    box-sizing: border-box;
    transition: opacity 0.4s ease;
	 background-position: center;
	  background-size: cover;
	  border: 1px solid #ccc;
  }

  /* Dim the partial slide */
  #jv-hero-slider-section .swiper-slide-next {
    opacity: 1;
  }
.jv-slide-inner-content{
	display: flex !important;
	flex-direction: column !important;
    align-items: flex-start !important;
	justify-content: end !important;
    padding: 40px;
    box-sizing: border-box;
	height: 100%;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 1) 100%);
}
  .jv-slide-inner-content h2 {
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #333;
  }

  .jv-cta-button {
    display: inline-block;
    margin-top: 20px;
    color: #555;
    text-decoration: none;
    font-weight: bold;
  }

  /* Footer Styling */
  .jv-slider-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    border-top: 1px solid #e0e0e0;
    padding-top: 25px;
  }

  .jv-progress-track {
    flex-grow: 1;
    height: 2px;
    background: #e0e0e0;
    margin-right: 50px;
    position: relative;
  }

  .jv-progress-fill {
    position: absolute;
    width: 25%; 
    height: 100%;
    background: var(--jv-primary);
    transition: width 0.3s ease;
  }

  .jv-nav-controls {
    display: flex;
    gap: 20px;
  }

  .jv-btn-prev, .jv-btn-next {
    width: 55px;
    height: 55px;
    border: 1px solid #555 !important;
    border-radius: 50%;
    display: flex;
    align-items: center;      
    justify-content: center;
    cursor: pointer;
    font-size: 22px;
    transition: all 0.3s ease;
    color: #555;
  }

  .jv-btn-prev:hover, .jv-btn-next:hover {
    background: #f4f4f4;
  }



.tassie-fold-section {
	perspective: 3000px; 
}

.tassie-fold-item {
	position: sticky;
	transform-style: preserve-3d;
	margin-bottom: 0px; 
}

/* Z-Index Stacking: Later items sit visually above previous ones */
.tassie-fold-item:nth-child(1) { top: 150px; z-index: 110; }
.tassie-fold-item:nth-child(2) { top: calc(150px + 30px); z-index: 120; }
.tassie-fold-item:nth-child(3) { top: calc(150px + 60px); z-index: 130; }
.tassie-fold-item:nth-child(4) { top: calc(150px + 90px); z-index: 140; }

.tassie-fold-card {
	height: 500px;
	width: 900px;
	display: flex;
	flex-direction: column;
	justify-content: end;
	align-items: start;
	color: #1A1919;
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
	transform-origin: top center;
	will-change: transform;
	transition: transform 0.1s ease-out;
	border: none;
	padding: 30px;
	gap: 5px;
	border: 1px solid #ccc;
	transform-style: preserve-3d;
    backface-visibility: hidden;
}

.tassie-fold-card::after{
	content: "";
	width: 100%;
	height: 70%;
	position: absolute;
	left:0;
	bottom:0;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 1) 70%);
	z-index: 6;
}

/* Perspective Scale: Keeping items physically larger as they stack on top */
.tassie-fold-item:nth-child(2) .tassie-fold-card { transform: scale(1.02); }
.tassie-fold-item:nth-child(3) .tassie-fold-card { transform: scale(1.04); }
.tassie-fold-item:nth-child(4) .tassie-fold-card { transform: scale(1.06); }

.tassie-fold-overlay {
	position: absolute;
	inset: 0;
	background: black;
	opacity: 0;
	pointer-events: none;
	z-index: 5;
}

.tassie-fold-card h2 {
	position: relative;
	z-index: 10;
	font-size: 30px;
	font-weight: 500;
	margin: 0;
	font-family: "Outfit", sans-serif !important;
	cursor: pointer;
}
.tassie-fold-card a {
    display: inline-block;
    position: relative;
    z-index: 21; 
    text-decoration: none;
	cursor: pointer;
}
.tassie-fold-card a h3{
	position: relative;
	font-size: 18px;
	font-weight: 400;
	z-index: 10;
	color: #555;
	margin: 0 !important;
	font-family: "Outfit", sans-serif !important;
	cursor: pointer;
}
.tassie-fold-footer{
	display: flex;
	flex-direction: column;
	width: 100%;
	justify-content: start;
	align-items: start;
	z-index: 10 !important;
}
.tassie-fold-footer button{
	padding: 10px 30px;
	font-family: "Outfit", sans-serif !important;
	background-color: #FFD55D;
	border-radius: 5px;
	color: #000;
	font-size: 16px;
	border: none !important;
	z-index: 10 !important;
	margin-top: 20px;
	cursor: pointer;
}
.tassie-fold-footer button i{
	display: inline-block;
	width: 20px;
	height: 20px;
	background-image: url('https://tassietometro.com/wp-content/uploads/2026/02/arrow-up-right-black.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	vertical-align: middle;
	margin-left: 10px;
	border: none !important;
}
.tassie-fold-card h2, 
.tassie-fold-card a, 
.tassie-fold-footer {
    position: relative;
    z-index: 20 !important;
}
.backdrop-blur-5{
	backdrop-filter: blur(5px);
}
.triangle-wrapper {
	width: var(--tri-width);
	height: var(--tri-height);
	position: relative;
	overflow: visible;
	flex: 0 0 auto;
	z-index: 1;
}

.triangle-wrapper:nth-child(2) {
	z-index: 2;
}

.triangle-wrapper:nth-child(3) {
	z-index: 3;
}

/* Background layer with gradient - clipped to triangle shape */
.triangle-wrapper.point-up .triangle-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-size: cover;
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.triangle-wrapper.point-down .triangle-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-size: cover;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.triangle-wrapper  #tri-bg-1{
	background-image: url('https://lightcoral-chimpanzee-534705.hostingersite.com/wp-content/uploads/2026/01/banner-carousel-img-8.jpeg');
}
.triangle-wrapper #tri-bg-2{
	background-image: url('https://lightcoral-chimpanzee-534705.hostingersite.com/wp-content/uploads/2026/01/banner-carousel-img-16.jpeg');
}
.triangle-wrapper #tri-bg-3{
	background-image: url('https://lightcoral-chimpanzee-534705.hostingersite.com/wp-content/uploads/2026/01/banner-carousel-img-4.avif');
}

/* Triangle layers - no longer needed but keeping for structure */
.triangle-top {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
}

/* TRIANGLE POINTING UP */
.triangle-wrapper.point-up .corner-left,
.triangle-wrapper.point-up .corner-right {
	display: none;
}

.triangle-wrapper.point-up .tri-content {
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50%;
	max-width: 280px;
	text-align: center;
	z-index: 10;
}

/* TRIANGLE POINTING DOWN */
.triangle-wrapper.point-down .corner-left,
.triangle-wrapper.point-down .corner-right {
	display: none;
}

.triangle-wrapper.point-down .tri-content {
	position: absolute;
	top: 37%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50%;
	max-width: 280px;
	text-align: center;
	z-index: 10;
}

/* Content styling */
.tri-content h3 {
	font-family: "Outfit", sans-serif !important;
	margin: 0 0 10px 0;
	font-size: 22px;
	font-weight: 700;
	color: #000;
	text-shadow: 0px 0px 4px white;
	line-height: 1;
}

.tri-content p {
	margin: 0;
	line-height: 1;
	color: #000;
	font-size: 15px;
	text-shadow: 0px 0px 4px white;
}
.tri-step-count{
	position: absolute;
	font-family: "Outfit", sans-serif;
	font-size: 500px;
	font-weight: 900;
	color: rgba(255,255,255,0.8);
}
.tassie-grow-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f5f0f0;
    
    transition: transform 0.1s linear;
    z-index: 1;
    transform-origin: center center;
    transform: scale(var(--tassie-reveal-scale, 0));
    border-radius: 15px;
    z-index: 1;
    will-change: transform;
}
.sticky-0{
	position: sticky !important;
	top: 0px !important;
}
.sticky-50{
	position: sticky !important;
	top: 50px !important;
}
.sticky-80{
	position: sticky !important;
	top: 80px !important;
}
.sticky-100{
	position: sticky !important;
	top: 100px !important;
}
.sticky-150{
	position: sticky !important;
	top: 150px !important;
}
.sticky-200{
	position: sticky !important;
	top: 200px !important;
}
.sticky-250{
	position: sticky !important;
	top: 250px !important;
}
.sticky-300{
	position: sticky !important;
	top: 300px !important;
}


.tassie-list-container{
	display: grid;
	grid-template-columns: repeat(4, 1fr); 
	gap: 30px;
}
.tassie-list-container .tassie-property-item{
	display: flex;
	flex-direction: column;
	padding: 20px;
	border: 1px solid #ccc;
	gap: 10px;
	height: 400px;
	justify-content: end;
	background-size: cover;
	background-position: center;
	position: relative;
}
.tassie-list-container .tassie-property-item::before{
	content:"";
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height:100%;
	background: linear-gradient(
	  to bottom,
	  rgba(255,255,255,0) 50%,
	  rgba(255,255,255,1) 70%
	);
	z-index: 2;
}
.tassie-list-container .tassie-property-item a h3{
	font-size: 18px;
	font-weight: 500;
	font-family: "Outfit", sans-serif !important;
	margin: 0;
	position: relative;
	color: #2B2A2A;
	z-index: 5;
}
.tassie-list-container .tassie-property-item p{
	position: relative;
	font-size: 16px;
	font-weight: 400;
	font-family: "Outfit", sans-serif !important;
	margin: 0;
	z-index: 5;
}
.tassie-list-container .tassie-property-item p i{
	position: relative;
	display: inline-block;
	width: 18px;
	height: 18px;
	background-image: url('https://lightcoral-chimpanzee-534705.hostingersite.com/wp-content/uploads/2026/02/location.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	margin-right: 10px;
}
.tassie-list-container .tassie-property-item .tassie-price{
	position: absolute;
	top: 20px;
	left: 20px;
	padding: 5px 10px;
	border-radius: 100px;
	background-color: rgba(255,255,255, 0.9);
	color: #2B2A2A !important;
	z-index: 5;
	font-size: 14px;
	font-weight: 400;
	font-family: "Outfit", sans-serif !important;
}
.tassie-list-container .tassie-property-item .tassie-quick-info{
	display: flex;
	flex-direction: row;
	gap: 30px;
	z-index: 5;
	font-weight: 400;
	align-items: center;
}
.tassie-list-container .tassie-property-item .tassie-quick-info div{
	display: flex;
	flex-direction: row;
	gap: 10px;
	align-items: center;
}

.tassie-search-wrapper{
	display: flex;
	flex-direction: row;
	gap: 0px;
	width: 100%;
}
.tassie-search-wrapper .search-row{
	display: flex;
    width: 100%;
    flex-direction: row;
    gap: 15px; /* Slightly reduced gap to help fit on smaller screens */
    align-items: flex-end; /* Aligns all items to the bottom so labels don't float */
    flex-wrap: nowrap;
}
.tassie-search-wrapper .search-field{
	display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1; /* Automatically calculates equal width for all 5 fields */
    min-width: 0;
}
.tassie-search-wrapper .search-actions{
	display: flex;
    flex-direction: row;
    gap: 10px;
    width: auto; /* Let the buttons determine the width */
    padding-bottom: 0;
}
.tassie-search-wrapper .search-actions .search-btn, .tassie-search-wrapper .search-actions .clear-btn{
	padding: 12px 30px;
	border: none !important;
	font-family: "Outfit", sans-serif !important;
	font-size: 15px;
	cursor: pointer;
}
.tassie-search-wrapper .search-actions .clear-btn{
	background-color: #2B2A2A;
	color: #fff;
}
.tassie-search-wrapper .search-field label, .tassie-search-wrapper .search-field input, .tassie-search-wrapper .search-field select{
	font-family: "Outfit", sans-serif !important;
	width: 100%;
}
.tassie-search-wrapper .search-field label{
	font-size: 14px;
	font-weight: 400;
}
.tassie-search-wrapper .search-field input, .tassie-search-wrapper .search-field select{
	height: 35px;
	padding: 0px;
	border: none;
	border-bottom: 1px solid #ccc;
	font-size: 16px;
}
.tassie-search-wrapper .search-field input:focus, .tassie-search-wrapper .search-field select:focus{
	outline: none !important;
}
.elementor .property-img{
	height: 400px !important;
	width: 100% !important;
	object-fit: cover !important;
	position: relative;
}
.description-container{
	position: relative;
	max-height: 500px !important;
    overflow: hidden !important;
    transition: max-height 0.3s ease;
	padding: 20px;
	background-color: white;
	border-radius: 10px;
}
.description-container.expanded {
    max-height: none !important;
}
.description-container.expanded .description-content{
	padding-bottom: 50px;
}
.property-amenities{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.amenity-group{
	border: 1px solid #D3D3D3;
	padding: 20px;
	border-radius: 10px;
}
.amenity-group h4{
	margin: 0px;
	font-size: 18px; 
	font-weight: 500;
	color: #434343;
	line-height: 1.2;
}
.amenity-list{
	color: #434343;
	line-height: 1.2;
	font-size: 14px;
	font-weight: 400;
}
.blog-content .elementor-widget-text-editor ul{
	margin: 0 !important;
}

@media (max-width: 1024px) {
	.tassie-fold-card {
		height: 400px !important;
		width: 100% !important;
	}
	.tassie-fold-card::after{
		content: "";
		width: 100%;
		height: 100%;
		background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 1) 60%) !important;
	}
	body #page.hfeed.site{
		overflow: hidden !important;
	}
	.tassie-search-wrapper{
		display: flex;
		flex-direction: column;
		gap: 20px;
	}
	.tassie-search-wrapper .search-row{
		display: flex;
		flex-direction: column;
	}
	.tassie-search-wrapper{
		display: flex;
		flex-direction: column;
		gap: 20px;
	}
	.tassie-search-wrapper .search-field{
		display: flex;
		flex-direction: column;
		gap: 3px;
		width: 100%;
	}
	.tassie-search-wrapper .search-actions{
		display: flex;
		flex-direction: row;
		gap: 10px;
		width: 100%;
		align-items: end;
	}
	.tassie-list-container {
        grid-template-columns: 1fr; /* Switches to 1 column */
        gap: 20px; /* Slightly smaller gap looks better on small screens */
    }
	.property-amenities{
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.amenity-group h4{
		font-size: 16px;
	}
}