/*
Theme Name: Finest Homes
Theme URI: https://finesthomes.hu
Description: Luxury real estate theme for Finest Homes Hungary
Version: 1.0
Author: Ront車 Zolt芍n
Author URI: 
Tags: responsive, luxury, real-estate
Text Domain: finest-homes
*/

/* 
 	01001001 00100000 01001100 01001111
	01010110 01000101 00100000 01011001
	01001111 01010101 00100000 01001010
	11000011 10000001 01011010 01001101
	01001001 01001110 00100000 00111100
	00110011 00000000 00000000 00000000
*/

:root {
	--gold: #c5a267;
	--dark: #131113;
	--cream: #f9f7f2;
}

body {
	font-family: 'Playfair Display', serif;
	background-color: var(--cream);
	color: var(--dark);
}

.font-sans {
	font-family: 'Montserrat', sans-serif;
}

@keyframes slow-zoom {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.1);
	}
}

.animate-slow-zoom {
	animation: slow-zoom 20s ease-out infinite alternate;
}

.nav-scrolled {
	background-color: var(--dark) !important;
}

.nav-scrolled .nav-text {
	color: var(--cream) !important;
}

.nav-scrolled .nav-link {
	color: var(--cream) !important;
}

.nav-scrolled .lang-btn {
	color: var(--cream) !important;
}

.nav-scrolled .lang-btn:hover {
	color: var(--gold) !important;
}

.mobile-menu-active {
	transform: translateX(0) !important;
}

section {
	scroll-margin-top: 5rem;
}

/* Custom scrollbar for detail modal */
#detail-modal::-webkit-scrollbar {
	width: 4px;
}

#detail-modal::-webkit-scrollbar-track {
	background: #f1f1f1;
}

#detail-modal::-webkit-scrollbar-thumb {
	background: var(--gold);
}

.single-rental-content p {
	margin-bottom: 12px;
}

/* Property Gallery */
.fh-gallery-thumbs::-webkit-scrollbar {
	height: 4px;
}
.fh-gallery-thumbs::-webkit-scrollbar-track {
	background: #f1f1f1;
}
.fh-gallery-thumbs::-webkit-scrollbar-thumb {
	background: var(--gold);
	border-radius: 2px;
}
.fh-gallery-thumb-btn {
	transition: border-color 0.2s, opacity 0.2s;
}
.fh-gallery-thumb-btn:hover {
	opacity: 1 !important;
}
