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

/* Add your custom styles here */
::-moz-selection { /* Code for Firefox */
  color: #fff;
  background: #294829;
}

::selection {
  color: #fff;
  background: #294829;
}



/* Hide the text by default 
.acc-text {
  display: none;
}

.acc-cont:hover .acc-text {
  display: block;
}
*/


body {
	overflow-x: clip;
}

/* [fenomen_special_offers] */
.fenomen-special-offers {
	--fenomen-so-accent: #2e6f76;
	--fenomen-so-surface: #f4fbfb;
	--fenomen-so-text: #1a2e31;
	--fenomen-so-muted: #4a6a6f;
	max-width: 72rem;
	margin-left: auto;
	margin-right: auto;
	padding: clamp(2rem, 5vw, 3.5rem) clamp(1rem, 4vw, 2rem);
}

.fenomen-special-offers__head {
	text-align: center;
	margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.fenomen-special-offers__title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	color: var(--fenomen-so-text);
	letter-spacing: -0.02em;
}

.fenomen-special-offers__subtitle {
	margin: 0;
	font-size: clamp(0.95rem, 1.5vw, 1.1rem);
	line-height: 1.5;
	color: var(--fenomen-so-muted);
	max-width: 36rem;
	margin-left: auto;
	margin-right: auto;
}

.fenomen-special-offers__grid {
	display: grid;
	gap: clamp(1rem, 3vw, 1.5rem);
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.fenomen-special-offers__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.fenomen-special-offers__card {
	position: relative;
	background: var(--fenomen-so-surface);
	border: 1px solid rgba(46, 111, 118, 0.15);
	border-radius: 12px;
	padding: 1.35rem 1.25rem 1.5rem;
	box-shadow: 0 8px 24px rgba(26, 46, 49, 0.06);
}

.fenomen-special-offers__badge {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #fff;
	background: var(--fenomen-so-accent);
	padding: 0.25rem 0.55rem;
	border-radius: 999px;
	margin-bottom: 0.75rem;
}

.fenomen-special-offers__card-title {
	margin: 0 0 0.5rem;
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--fenomen-so-text);
	line-height: 1.3;
}

.fenomen-special-offers__card-text {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.55;
	color: var(--fenomen-so-muted);
}




/* ===========================================
   Luxury custom cursor (see js/luxury-cursor.js)
   =========================================== */

body.fenomen-has-luxury-cursor {
	cursor: none;
}

body.fenomen-has-luxury-cursor a,
body.fenomen-has-luxury-cursor button,
body.fenomen-has-luxury-cursor [role="button"],
body.fenomen-has-luxury-cursor .elementor-button,
body.fenomen-has-luxury-cursor label[for] {
	cursor: none;
}

body.fenomen-has-luxury-cursor input:not([type="checkbox"]):not([type="radio"]),
body.fenomen-has-luxury-cursor textarea {
	cursor: text;
}

@media (prefers-reduced-motion: reduce) {
	body.fenomen-has-luxury-cursor {
		cursor: auto;
	}

	body.fenomen-has-luxury-cursor a,
	body.fenomen-has-luxury-cursor button,
	body.fenomen-has-luxury-cursor [role="button"],
	body.fenomen-has-luxury-cursor .elementor-button,
	body.fenomen-has-luxury-cursor label[for] {
		cursor: auto;
	}
}

.fenomen-luxury-cursor {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 2147483646;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.35s ease;
}

.fenomen-luxury-cursor.is-visible {
	opacity: 1;
}

.fenomen-luxury-cursor__ring,
.fenomen-luxury-cursor__dot {
	position: fixed;
	left: 0;
	top: 0;
	will-change: transform;
	backface-visibility: hidden;
}

.fenomen-luxury-cursor__ring {
	width: 42px;
	height: 42px;
	margin: -21px 0 0 -21px;
	border: 1px solid rgba(201, 169, 98, 0.65);
	border-radius: 50%;
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.06) inset,
		0 4px 24px rgba(46, 111, 118, 0.12);
	transition:
		width 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		margin 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		border-color 0.35s ease,
		box-shadow 0.35s ease,
		opacity 0.35s ease;
}

.fenomen-luxury-cursor__dot {
	width: 5px;
	height: 5px;
	margin: -2.5px 0 0 -2.5px;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, #f5f0e6, #2e6f76 55%, #1a4a52);
	box-shadow: 0 0 12px rgba(46, 111, 118, 0.45);
	transition:
		transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.35s ease;
}

.fenomen-luxury-cursor.is-hover .fenomen-luxury-cursor__ring {
	width: 56px;
	height: 56px;
	margin: -28px 0 0 -28px;
	border-color: rgba(201, 169, 98, 0.95);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.1) inset,
		0 8px 32px rgba(46, 111, 118, 0.2);
}

.fenomen-luxury-cursor.is-hover .fenomen-luxury-cursor__dot {
	opacity: 0.25;
}

@media (prefers-reduced-motion: reduce) {
	.fenomen-luxury-cursor {
		display: none !important;
	}
}

@media (hover: none), (pointer: coarse) {
	body.fenomen-has-luxury-cursor {
		cursor: auto;
	}

	.fenomen-luxury-cursor {
		display: none !important;
	}
}

/* [fenomen_plitvice_map] — Leaflet (Carto Voyager — lighter basemap) */
.fenomen-plitvice-map-wrap {
	max-width: 100%;
}

.fenomen-plitvice-map {
	width: 100%;
	min-height: 280px;
	border-radius: 0px;
	overflow: hidden;
	border: 1px solid rgba(46, 111, 118, 0.22);
	z-index: 1;
	background: #e8ecf0;
	opacity: 0;
	transition: opacity 0.55s ease;
}

.fenomen-plitvice-map.fenomen-plitvice-map--ready {
	opacity: 1;
}

.fenomen-plitvice-map .leaflet-container {
	font-family: inherit;
	background: #e8ecf0;
}

.fenomen-plitvice-map .leaflet-control-attribution {
	background: rgba(255, 255, 255, 0.92) !important;
	color: #5c6b70 !important;
	font-size: 10px;
	line-height: 1.35;
	border-radius: 6px 0 0 0;
	border: none !important;
	box-shadow: 0 -1px 8px rgba(0, 0, 0, 0.06);
}

.fenomen-plitvice-map .leaflet-control-attribution a {
	color: #2e6f76 !important;
}

.fenomen-plitvice-map .leaflet-bar {
	border: 1px solid rgba(46, 111, 118, 0.2);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(26, 46, 49, 0.12);
}

.fenomen-plitvice-map .leaflet-bar a {
	background: #fff;
	color: #2c3e42;
	border-color: rgba(46, 111, 118, 0.15);
	line-height: 28px;
}

.fenomen-plitvice-map .leaflet-bar a:hover {
	background: #f4fbfb;
	color: #1a2e31;
}

.fenomen-plitvice-map .leaflet-bar a.leaflet-disabled {
	opacity: 0.35;
}

.fenomen-plitvice-map .leaflet-control-scale-line {
	border: 1px solid rgba(46, 111, 118, 0.25);
	background: rgba(255, 255, 255, 0.92);
	color: #3d4f54;
}

.fenomen-plitvice-map .leaflet-popup-content-wrapper {
	background: #fff;
	color: #1a2e31;
	border-radius: 10px;
	border: 1px solid rgba(46, 111, 118, 0.18);
	box-shadow: 0 12px 40px rgba(26, 46, 49, 0.18);
}

.fenomen-plitvice-map .leaflet-popup-tip {
	background: #fff;
	border: 1px solid rgba(46, 111, 118, 0.12);
	box-shadow: none;
}

.fenomen-plitvice-map .leaflet-popup-content {
	margin: 10px 12px;
	font-size: 0.9rem;
}

.fenomen-plitvice-map-legend {
	margin: 0.75rem 0 0;
	font-size: 0.85rem;
	color: #5c7378;
	text-align: center;
	line-height: 1.5;
}

.fenomen-plitvice-map-legend__zg {
	color: #0f766e;
	font-weight: 600;
}

.fenomen-plitvice-map-legend__zd {
	color: #b45309;
	font-weight: 600;
}

.fenomen-plitvice-map-legend__rk {
	color: #4f46e5;
	font-weight: 600;
}

.fenomen-plitvice-map-legend__meta {
	font-weight: 500;
	color: #647a7e;
	font-size: 0.8em;
}

.fenomen-plitvice-map .leaflet-popup-content .fenomen-route-popup-meta {
	color: #5c7378;
	font-size: 0.9em;
}


/* [fenomen_text_ticker] - full-width continuous marquee */
.fenomen-text-ticker {
	--fenomen-ticker-duration: 30s;
	--fenomen-ticker-gap: 0;
	width: 100vw;
	max-width: 100vw;
	margin-left: 50%;
	transform: translateX(-50%);
	overflow: hidden;
	white-space: nowrap;
	padding: 0.55rem 0;
}

.fenomen-text-ticker__lane {
	overflow: hidden;
	width: 100%;
}

.fenomen-text-ticker__content {
	display: flex;
	width: max-content;
	will-change: transform;
	animation: fenomenTicker var(--fenomen-ticker-duration) linear infinite;
}

.fenomen-text-ticker__group {
	display: inline-flex;
	align-items: center;
	padding-right: 0;
}

.fenomen-text-ticker__item,
.fenomen-text-ticker__sep {
	display: inline-block;
	font-family: "Canto Roman", serif;
	font-size: clamp(1.05rem, 2.4vw, 2rem);
	line-height: 1.15;
	letter-spacing: 0.01em;
	text-transform: none;
}

.fenomen-text-ticker__item {
	color: #1a2e31;
	padding: 0 0.55rem;
}

.fenomen-text-ticker__sep {
	color: #2e6f76;
	opacity: 0.8;
	padding: 0 0.2rem;
}

@keyframes fenomenTicker {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-25%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.fenomen-text-ticker__content {
		animation: none;
	}
}
