html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
header,
hgroup,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
header,
hgroup,
nav,
section {
	display: block;
}

body {
	overflow-x: hidden;
	overflow-y: hidden;
	font-family: "Funnel Sans", sans-serif !important;
	background-color: var(--cream);
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}
body{ position:relative;}

html {
	font-size: 14px;
	overflow-x: hidden;
	font-optical-sizing: auto;
	font-weight: normal;
	font-style: normal;
	font-variation-settings:
		"slnt" 0,
		"CASL" 0,
		"CRSV" 0.5,
		"MONO" 0;
}

:root {
	/* Paleta Miere și Lemn - Culori principale */
	--wood-dark: #5d4e37; /* Lemn închis */
	--wood-medium: #8b7355; /* Lemn mediu */
	--wood-light: #d2b48c; /* Lemn deschis */
	--honey: #daa520; /* Miere */
	--cream: #f5e6d3; /* Cremă */
	--ivory: #fffff0; /* Ivory */
	--forest: #228b22; /* Verde pădure */
	--terracotta: #e2725b; /* Teracotă */
	--stone: #a8a8a8; /* Piatră */
	--text-dark: #2f1b14; /* Text închis */
	--text-light: #ffffff; /* Text deschis */

	/* Remapează variabilele vechi pentru compatibilitate */
	--oxfordBlue: #5d4e37; /* folosim wood-dark */
	--charcoal: #8b7355; /* folosim wood-medium */
	--frenchGray: #d2b48c; /* folosim wood-light */
	--papaya: #f5e6d3; /* folosim cream */
	--peach: #daa520; /* folosim honey */
	--white: #fffff0; /* folosim ivory */
	--greybck: #f5e6d3; /* folosim cream */
	--yellow: #daa520; /* folosim honey */
	--whiteDove: #f5e6d3; /* folosim cream */
	--greekVilla: #f5e6d3; /* folosim cream */
	--portocaliu: #e2725b; /* folosim terracotta */
	--rosu: #daa520; /* folosim honey */
	--rosu-inchis: #5d4e37; /* folosim wood-dark */
	--verde: #228b22; /* folosim forest */
	--albastru-inchis: #8b7355; /* folosim wood-medium */
	--albastru: #daa520; /* folosim honey */
	--negru: #2f1b14; /* folosim text-dark */
	--galben: #daa520; /* folosim honey */
	--galben-inchis: #b8860b; /* honey mai închis */
	--gri-inchis: #8b7355; /* folosim wood-medium */
	--gri: #d2b48c; /* folosim wood-light */
	--gri-deschis: #f5e6d3; /* folosim cream */

	/* Dimensiuni */
	--xs: 9px;
	--s: 11px;
	--m: 13px;
	--l: 20px;
	--xl: 25px;
	--mformobile: 13px;
	--sformobile: 11px;

	/* Pentru compatibilitate cu navigation */
	--primary-gold: #daa520; /* honey */
	--dark-gold: #b8860b; /* honey închis */
	--light-gold: #f5e6d3; /* cream */
	--dark-blue: #5d4e37; /* wood-dark */
	--light-blue: #8b7355; /* wood-medium */
	--shadow: rgba(93, 78, 55, 0.15);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Poppins", sans-serif;
	background: linear-gradient(135deg, var(--cream) 0%, var(--wood-light) 100%);
	min-height: 100vh;
}

/* Header Principal */
.header {
	background: rgba(255, 255, 240, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 10px 30px var(--shadow);
	position: sticky;
	z-index: 999; /* Redus pentru a permite dropdown-urilor să fie deasupra */
	overflow: visible; /* Schimbat din hidden la visible */
	border: 1px solid rgba(93, 78, 55, 0.1);
}




/* Container Navigation */
.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 40px;
	position: relative;
}

/* Logo */
.logo {
	font-size: 28px;
	font-weight: 700;
	color: var(--wood-dark);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 15px;
	transition: all 0.3s ease;
}

.logo:hover {
	color: var(--honey);
	transform: scale(1.05);
}

.logo-icon {
	width: 45px;
	height: 45px;
	background: linear-gradient(45deg, var(--honey), var(--wood-medium));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 20px;
	box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
	transition: all 0.3s ease;
}

.logo:hover .logo-icon {
	transform: rotate(360deg);
	box-shadow: 0 6px 20px rgba(218, 165, 32, 0.5);
}

/* Navigation Menu */
.nav-menu {
	display: flex;
	list-style: none;
	gap: 30px;
	align-items: center;
	position: relative; /* Adăugat pentru context de poziționare */
}

.nav-item {
	position: relative;
	z-index: auto; /* Reset z-index */
}

.nav-link {
	text-decoration: none;
	color: var(--wood-dark);
	font-weight: 500;
	font-size: 16px;
	padding: 12px 20px;
	border-radius: 25px;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 8px;
	position: relative;
	overflow: hidden;
}

.text-cream{
	color: var(--white);
}

.holderInformatiiRegio{
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
	grid-column-gap: 10px;
	justify-items: end;
	text-align: right;
}

.logoRegio{
	max-width: 250px;
}

.bckDemo-content {
	min-height: 90vh;
	position: relative;
	z-index: 0;
	background-image: url("/public/images/cabanaBck.jpg");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	margin-bottom: 10rem;
	/* Overlay pentru contrast cu textul (opțional) */
	background-color: rgba(93, 78, 55, 0.3);
	background-blend-mode: overlay;
}
.textBox {
	color: var(--dark-blue);
}

.nav-link::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, var(--honey), var(--wood-medium));
	transition: left 0.4s ease;
	z-index: -1;
}
.logoHeader img {
	max-width: 7vw;
}

.nav-link:hover::before {
	left: 0;
}


.nav-link i {
	font-size: 14px;
	transition: transform 0.3s ease;
}

.nav-link:hover i {
	transform: scale(1.2);
}

.dropdown {
	position: relative;
	z-index: 1001; /* Mai mare ca header-ul */
}

.dropdown-content {
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--ivory);
	min-width: 220px;
	border-radius: 15px;
	box-shadow: 0 10px 30px var(--shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1002; /* Cel mai mare z-index */
	padding: 15px 0;
	display:none;
	border: 1px solid var(--wood-light);
}
.nav-item.dropdown.open .dropdown-content,
.nav-item.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown:hover .dropdown-content {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-item {
	display: block;
	padding: 12px 25px;
	color: var(--wood-dark);
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
}

.dropdown-item:hover {
	background: var(--cream);
	color: var(--wood-medium);
	padding-left: 35px;
}

.mobile-toggle {
	display: none !important;
	background: none;
	border: none;
	font-size: 24px;
	color: var(--wood-dark);
	cursor: pointer;
	padding: 10px;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.hvr-bounce-to-right:before {
	background:var(--honey) !important;
}

.mobile-toggle:hover {
	background: var(--cream);
	color: var(--wood-medium);
	transform: scale(1.1);
}

.contact-btn {
	background: linear-gradient(45deg, var(--honey), var(--wood-medium));
	color: white;
	padding: 12px 25px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
	position: relative;
	overflow: hidden;
}
.size-medium {
	font-size: 16px;
}
.editCamera{
	text-align: right;
}


.listaFacilitatiCamera ul{
	display:flex;
	flex-direction:column;
}

.size-medium-big {
	font-size: 24px;
}
.textalignLeft {
	text-align: left;
}

.size-big {
	font-size: 36px;
}
.listaFacilitati {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px;
	background: rgba(240, 235, 227, 0.8);
	border-radius: 15px;
	text-align: left;
}

.centerFlexY {
	align-items: center;
}

.facilitati-header {
	margin-bottom: 30px;
}

.facilitati-title {
	color: #999;
	font-weight: 300;
	letter-spacing: 3px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.facilitati-header img {
	max-width: 8rem;
}
.flexRow {
	display: flex;
	flex-direction: row;
}

.facilitati-description {
	color: var(--wood-medium);
	line-height: 1.6;
	max-width: 800px;
	margin-bottom: 10px;
}

.facilitati-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px 40px;
	margin-top: 40px;
}

.facilitati-grid ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.facilitati-grid li {
	position: relative;
	padding-left: 60px;
	margin-bottom: 25px;
	font-size: 1rem;
	line-height: 1.4;
	color: var(--wood-dark);
	min-height: 40px;
	display: flex;
	align-items: center;
}

.facilitati-grid li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background-image: url("/public/images/listIcon.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.facilitati {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 5rem;
	margin: 5rem auto 5rem;
	width: 80%;
}

.footer-nav-links {
	list-style: none;
	padding: 0;
	margin: 0;
}
.listaContact {
	list-style: none;
	padding: 0;
	margin: 0;
}
.listaContactX {
	display: flex;
	flex-direction: row;
	gap: 10px;
	justify-content: space-evenly;
}
.listaContactX li i {
	font-size: 1.5rem;
	color: var(--cream);
}

.listaContact h1 {
	text-align: center;
}



.listaContactX li a {
	color: var(--cream);
	text-decoration: none;
	font-size: 1.2rem;
	transition: color 0.3s ease;
}

.listaContact li {
	position: relative;
	display: flex;
	gap: 10px;
	padding-left: 35px;
	margin-bottom: 20px;
	min-height: 20px;
	display: flex;
	align-items: center;
}

.footer-nav-links li {
	position: relative;
	padding-left: 35px;
	margin-bottom: 20px;
	min-height: 20px;
	display: flex;
	align-items: center;
}

.footerText {
	color: var(--cream);
	font-size: 0.95rem;
	opacity: 0.9;
}

.footer-nav-links li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 40px;
	background-image: url("/public/images/listIcon.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.bckContact,.bckCamere,.bckAboutProject,.bckCamera,.bckRezervare,.bckDespreNoi {
    position: relative;
    min-height: 100vh;
	margin-top:-125px;
}

.bckContact::before,.bckCamere::before,.bckAboutProject::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60vh;
    background: linear-gradient(135deg, 
        #f4e4bc 0%,     /* Miere deschis */
        #e6d09a 25%,    /* Miere mediu */
        #d4b582 50%,    /* Maro miere */
        #c19a5b 75%,    /* Maro auriu */
        #a67c52 100%    /* Maro închis */
    );

    z-index: -2;
}

.bckCamera::before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60vh;
    background-color:var(--wood-medium);
    z-index: -2;
}
.photoSliderCamera {
    max-width: 850px;
    margin: 2rem auto;
    position: relative;
	max-height:600px;
}

.bckRezervare{

}

.photoSliderCamera .slick-slide {
    outline: none;
}

.photoSliderCamera img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* SĂGEȚI CUSTOM */
.photoSliderCamera .slick-prev,
.photoSliderCamera .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 50px;
    height: 50px;
    padding: 0;
    transform: translateY(-50%);
    cursor: pointer;
    background: rgba(166, 139, 91, 0.8);
    border: none;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
}

.photoSliderCamera .slick-prev:hover,
.photoSliderCamera .slick-next:hover {
    background: rgba(166, 139, 91, 1);
    transform: translateY(-50%) scale(1.1);
}

.photoSliderCamera .slick-prev {
    left: 20px;
}

.photoSliderCamera .slick-next {
    right: 20px;
}

.photoSliderCamera .slick-prev:before,
.photoSliderCamera .slick-next:before {
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;
    opacity: 1;
    color: white;
}

.photoSliderCamera .slick-prev:before {
    content: '←';
}

.photoSliderCamera .slick-next:before {
    content: '→';
}

/* PUNCTE CUSTOM */
.photoSliderCamera .slick-dots {
    position: absolute;
    bottom: -60px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.photoSliderCamera .slick-dots li {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 0 8px;
    padding: 0;
    cursor: pointer;
}

.photoSliderCamera .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: rgba(166, 139, 91, 0.4);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.photoSliderCamera .slick-dots li.slick-active button {
    background: #daa520;
    transform: scale(1.3);
}

.photoSliderCamera .slick-dots li:hover button {
    background: rgba(166, 139, 91, 0.7);
    transform: scale(1.1);
}

/* Loading state */
.photoSliderCamera .slick-slide img {
    transition: opacity 0.3s ease;
}

.photoSliderCamera .slick-slide.slick-loading img {
    opacity: 0.5;
}

.bckContact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60vh; 
    background-image: url("/public/images/bckContact.webp");
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(8px) sepia(0.25) hue-rotate(0deg) brightness(1.08) saturate(1.6);
    opacity: 0.8;  /* Pentru a lăsa să se vadă și backgroundul de dedesubt */
    z-index: -1;
}

.bckCamere::after{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60vh; 
    background-image: url("/public/images/bckCamere.webp");
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(8px) sepia(0.25) hue-rotate(0deg) brightness(1.08) saturate(1.6);
    opacity: 0.8;
    z-index: -1;

}

.bckRezervare::after{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60vh; 
    background-image: url("/public/images/bckRezervare.jpg");
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(5px) sepia(0.25) hue-rotate(0deg) brightness(1.08) saturate(1.6);
    opacity: 0.8;
    z-index: -1;
}

.bckAboutProject::after{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60vh; 
    background-image: url("/public/images/bckAboutProject.webp");
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(6px) sepia(0.25) hue-rotate(0deg) brightness(1.08) saturate(1.6);
    opacity: 0.8;
    z-index: -1;

}

.contentDespreNoi {
	background: var(--cream);
}

.bckDespreNoi::after{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60vh; 
    background-image: url("/public/images/bckDespreNoi.webp");
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(6px) sepia(0.25) hue-rotate(0deg) brightness(1.08) saturate(1.6);
    opacity: 0.8;
    z-index: -1;
}

.footer-nav-links a {
	color: var(--cream);
	text-decoration: none;
	font-size: 0.95rem;
	opacity: 0.9;
	transition: all 0.3s ease;
	display: block;
	padding: 5px 0;
}

#mesaj {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
	  color: var(--negru);
    display: none;
    justify-content: center;
    align-items: center;
}

#mesajinner {

    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--yellow);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    width: 400px;
    position: relative;
    display: flex;
	  color: var(--negru);
    flex-direction: column;
    align-items: center;
}

#mesajClose {
    position: absolute;
    right: 12px;
    top: 12px;
    color: var(--negru);
    cursor: pointer;
    transition: all .3s ease;
    padding: 5px;
}

#mesajTitle {
    font-weight: bold;
	  color: var(--negru);
    margin-bottom: 1rem;
    font-size: var(--m);
}

#mesajText {
    text-align: center;
    min-width: 300px;
    line-height: 1.5;
    font-size: var(--m);
}
.footer-nav-links a:hover {
	color: var(--honey);
	opacity: 1;
}



.facilitatiItem {
		background:var(--ivory);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
	 display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.facilitatiItem a{
	color:black;
	text-decoration: none;
}

.facilitatiItem:hover {
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 10px 25px rgba(0, 0, 0, 0.25);
}
.withMargin {
	padding: 3rem 3rem 0 3rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
}

.facImage {
	width: 100%;
	margin-top: 1rem;
	/* Margin negativ pentru a ieși din padding */
	order: 999; /* Forțează să fie ultimul element */
}

.facImage img {
	width: 100%;
	height: auto;
	display: block;
}
.footerLogo img {
	max-width: 10vw;
	height: auto;
}

.facIcon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
	margin:5px;
}

.facIcon i {
	font-size: 18px;
	color: #5d4e37;
}
.contact-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, var(--wood-medium), var(--honey));
	transition: left 0.4s ease;
}


.footer {
	position: relative;
	background: 
        /* Overlay gri-albăstrui ca în imagine */ linear-gradient(
			rgba(47, 27, 20, 0.9),
			/* Text-dark foarte opac */ rgba(93, 78, 55, 0.95) /* Wood-dark foarte opac */
		),
		url("/public/images/bckFooter.jpg");
	background-size: cover;
	background-position: bottom;
	background-attachment: fixed;
	color: #ffffff;
	padding: 60px 0 20px;
	min-height: 10vh;
	margin-top: 100px;
}
.imgMandatory img {
    width: 25vw;
    min-width: 80px; 
    max-width: 170px; 
}
.divImgMandatory{
	display:flex;
	flex-direction:column;
	gap:40px;
}

.divImgAboutus{
	text-align:center;
}


.aboutProject{
	display:flex;
	flex-direction:row;
	align-items: center;
	background-color: var(--cream);
	padding:20px;
	position:relative;
}


.slogan {
	color: var(--text-dark);;
	font-weight: bold;
	background: var(--cream);
	padding: 12px 30px 12px 25px;
	display: inline-block;
	clip-path: polygon(0 0, 15px 30%, 0 50%, 15px 70%, 0 100%, calc(100% - 25px) 100%, 100% 50%, calc(100% - 25px) 0);
	line-height: 1.4;
	font-size: 16px;
	transition: all 0.3s ease;
}

.contentAboutProject{
	display:flex;
	gap:60px;
	flex-direction:column
}



.imgMandatory{
	display:flex;
	flex-direction:row;
	justify-content: space-evenly;
	width:100%;
}

.book-now-fixed {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 1000;
	animation: pulse 2s infinite;
}
.contentRezervare h1, .contentRezervare p{
	color:#2f1b14 !important;
	text-shadow: 0 0 3px var(--cream), 0 0 3px var(--cream), 1px 1px 0 var(--cream), -1px -1px 0 var(--cream), 
				1px -1px 0 var(--cream), -1px 1px 0 var(--cream), 2px 0 0 var(--cream), -2px 0 0 var(--cream), 
				0 2px 0 var(--cream), 0 -2px 0 var(--cream);
}

.contentContact,.contentCamere{
	min-height:60vh;
	display:flex;

	flex-direction:column;
	gap:60px;
}

.input-disabled {
    filter: blur(1px);
    opacity: 0.6;
    pointer-events: none;
    cursor: not-allowed;
    transition: filter 0.2s, opacity 0.2s;
}



.contentCamera,.contentRezervare{
	padding-top:250px;
	display:flex;
	min-height:40vh;
	flex-direction: column;
}

.textCamera{
 text-align:left !important;
}
.bothTerms{
	display:flex !important;
	flex-direction:column;
	gap:0px !important;
}
input:not([type="checkbox"],[type="submit"],[type="radio"]),
textarea,
select
{
    width: 100%;
    padding: 0.5rem 0.5rem !important;
    border: 1px solid rgba(166, 139, 91, 0.3);
    border-radius: 5px;
    font-size: 1.2rem !important; 
    color: #6b5b47;
    background: #f5e6d3;
    backdrop-filter: none; 
    -webkit-backdrop-filter: none;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    min-height: 40px; /* Înălțime minimă */
}

input:focus:not([type="checkbox"]),
textarea:focus,
select:focus{
    border-color: #a68b5b;
    background: #f9f0e1; /* Cream mai deschis la focus */
    box-shadow: 
        0 8px 25px rgba(166, 139, 91, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 0 0 3px rgba(166, 139, 91, 0.1);
    transform: translateY(-1px);
}
.error{
	color:red;
}

.glass-textarea {
    min-height: 120px; /* Textarea mai mare */
    padding: 1.5rem 2rem;
    resize: vertical;
}

.googlemap{
	width: 100%;
	height: 400px;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.googlemap iframe{
	width:100%;
	height:100%;
}
.titleContact{
	display:flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.titleContact h1{
	color:var(--cream);
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.03);
	}
	100% {
		transform: scale(1);
	}
}

.logo-icon img{
	max-width:4rem;
}
.book-now-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: linear-gradient(45deg, var(--honey), var(--wood-dark));
	color: white;
	text-decoration: none;
	padding: 15px 30px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 16px ;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	box-shadow:
		0 8px 25px rgba(218, 165, 32, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	border: 2px solid transparent;
}

.submit-btn-custom {
    width: 75%; /* Mobile */
    max-width: 300px;
    padding: 1rem 2rem;
  	background: linear-gradient(45deg, var(--honey), var(--wood-dark));/* Cream background */
    border: 2px solid #a68b5b; /* Wood border */
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
	color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
	box-shadow:
		0 8px 25px rgba(218, 165, 32, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 auto;
}

/* Wave effect de la stânga la dreapta */
.submit-btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
	background: linear-gradient(45deg, var(--wood-dark), var(--wood-medium)); /* Wood gradient */
    transition: left 0.6s ease;
    z-index: 1;
}

.submit-btn-custom:hover::before {
    left: 0;
}

.submit-btn-logo {
    width: 35px;
    height: 30px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    filter: brightness(1);
}

.submit-btn-text {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.submit-btn-custom:hover {
	transform: translateY(-3px);
	box-shadow:
		0 12px 35px rgba(218, 165, 32, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
	border-color: var(--honey);
	
}

.submit-btn-custom:hover .submit-btn-text {
    color: #ffffff; 
}

.submit-btn-custom:hover .submit-btn-logo { 
    transform: scale(1.1);
		transform: translateY(-15px);
    opacity: 0;
}

.linkuri {
	width: 100%;
	border-top: 1px solid var(--gri);
	padding-top: 20px;
	margin-top: 20px;
	display: flex;
	justify-content: space-between;
}

.linkuri a,
.boxNewAccount a {
	color: var(--albastru-inchis);
	font-weight: 600;
	letter-spacing: 0.2px;
	transition: color .3s ease;
	font-size: var(--s);
}

.linkuri a:hover,
.boxNewAccount a:hover {
	color: var(--albastru);
}
.form-group{
	margin:0.5rem;
}


.book-now-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, var(--wood-dark), var(--wood-medium));
	transition: left 0.5s ease;
	z-index: 1;
}

.book-now-btn:hover::before {
	left: 0;
}

.book-now-btn:hover {
	transform: translateY(-3px);
	box-shadow:
		0 12px 35px rgba(218, 165, 32, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
	border-color: var(--honey);
}

.book-now-btn span,
.book-now-btn i {
	position: relative;
	z-index: 2;
}

.book-now-btn:hover span,
.book-now-btn:hover i {
	color: var(--ivory);
}

/* Logo în buton */
.book-now-btn .logo-icon {
	width: 24px;
	height: 24px;
	background: var(--ivory);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	color: var(--wood-dark);
	font-weight: bold;
	transition: all 0.3s ease;
}

.book-now-btn:hover .logo-icon {
	background: var(--honey);
	transform: translateY(-15px);
    opacity: 0;
}


/* Păstrează banda decorativă de sus */
.footer::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--honey) 0%, var(--wood-light) 50%, var(--honey) 100%);
	z-index: 3;
}
.formularContact{
	width:60%;
}
.colFooter2 h1,
.colFooter3 h1 {
	color: var(--wood-light);
	margin-bottom: 20px;
}
.contentFooter {
	display: grid;
	align-items: start;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 1rem;
}

.colFooter1{
	display:flex;
	flex-direction:column;
    justify-content: space-around;
	align-items: center;
	height:100%;
}
.colFooter2{
	display: flex;
    flex-direction: column;
    align-items: center;

}

.pozeAnpc{
	display:flex;
	flex-direction:row;
	gap:0.5rem;
}

.pozeAnpc img{
	max-width: 100%;
	max-height: 35px;
	border-radius: 10px;
}
.colFooter3 ul {
	color: var(--cream);
}
.colFooter3 {
	display:flex;
	flex-direction:column;
	gap:1rem;
}

.press-btn {
	background: linear-gradient(45deg, var(--honey), var(--wood-medium));
	color: white;
	margin-top: 15px;
	padding: 12px 25px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
	position: relative;
	overflow: hidden;
}

.contact-btn:hover::before {
	left: 0;
}

.contact-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(218, 165, 32, 0.4);
}

.contact-btn span {
	position: relative;
	z-index: 1;
}

.scroll-indicator {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--honey), var(--wood-medium));
	z-index: 9999;
	transition: width 0.3s ease;
}

/* Content demo */
.demo-content {
	display: flex;
	height: 70vh;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-align: center;
	color: var(--text-dark);
	backdrop-filter: blur(5px);
	margin: 0 auto;
	border-radius: 100px;
	max-width: 800px;
}

.demo-content a {
	width: 100%;
	font-size: 20px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	display: inline-block;
	padding: 12px 25px;
	border-radius: 25px;
	text-decoration: none;
	background: linear-gradient(45deg, var(--honey), var(--wood-medium));
	color: white;
	font-weight: 600;
	box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
}
.center {
	margin: 0 auto;
	width: 80%;
}

.textCenter {
	text-align: center;
}

.demo-content a::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, var(--wood-medium), var(--honey));
	transition: left 0.4s ease;
	z-index: -1;
}

.demo-content a:hover::before {
	left: 0;
}

.demo-content a:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(218, 165, 32, 0.4);
}

.descriereFrontPage1{
	display:grid;
	grid-template-columns: 1fr 1fr;
	width:80%;
	align-items: center;
	gap:60px;
	margin-top:8rem;
	color:var(--dark-blue);
}
.descriereFrontPage1 div:nth-child(2) {
	display:flex;
	flex-direction:column;
	gap:20px;
}



.descriereFrontPage2{
		display:grid;
	grid-template-columns: 1fr 1fr;
	width:80%;
	align-items: center;
	gap:60px;
	margin-top:8rem;
	color:var(--dark-blue);
}


.descriereFrontPage3{
	display:flex;
	flex-direction:column;
	width:60%;
	align-items: center;
	gap:60px;
	margin-top:8rem;
	color:var(--dark-blue);
}

/* Asigură-te că textul rămâne deasupra */
.demo-content a * {
	position: relative;
	z-index: 1;
}

.demo-content h1 {
	font-family: "Playfair Display", serif;
	font-size: 6rem;
	margin-bottom: 20px;
	text-shadow: 2px 2px 4px rgba(93, 78, 55, 0.3);
	color: var(--cream);
	font-weight: bold;
}

.demo-content p {
	font-size: 2rem;
	max-width: 600px;
	margin: 0 auto;
	font-weight: bold;
	line-height: 1.6;
	opacity: 0.9;
	color: var(--cream);
}
.imgAboutus img{
	max-width:100%;
	max-height: 40vh;
	position:relative;
	z-index:100;
}

.linkAlbastru {
	color: var(--terracotta) !important;
	font-weight: 600;
	transition: color 0.3s ease;
}

.linkAlbastru:hover {
	color: var(--wood-dark) !important;
}

/* Carousel and Slide Styles */
.slideCarousel {
	display: flex;
	align-items: stretch;
	position: relative;
	background: var(--cream);
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(93, 78, 55, 0.2);
}

.divImagineCarousel {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
}

.bckDesktopImg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: sepia(15%) saturate(0.9) brightness(1.05);
}

.logoMandatory {
	flex: 0 0 340px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
	background: rgba(245, 230, 211, 0.95);
	backdrop-filter: blur(10px);
}

.carouselTextArea {
	flex: 1;
	position: relative;
	z-index: 1;
	background: rgba(93, 78, 55, 0.85);
	color: var(--cream);
	padding: 30px;
}
