@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Baloo+2:wght@400..800&display=swap');

:root {
	--primary-color: #D4915E; /* Portocaliu-cărămiziu cald */
	--secondary-color: #B8764A; /* Nuanță mai închisă de portocaliu */
	--accent-color: #F4E4C1; /* Bej deschis, culoarea casei din logo */
	--warm-beige: #F5F1E8; /* Fundalul principal, bej blând */
	--soft-brown: #8B5A3C; /* Maro închis pentru text și fundal footer */
	--gentle-green: #A8C08A; /* Verdele copacului */
	--sky-blue: #B8E0D2; /* Albastrul cerului */
	--coral-pink: #E8B4B8; /* Nuanța roz de la copacul înflorit */
	--text-dark: #5D4037; /* Maro închis pentru textul principal */
	--text-light: #8D6E63; /* Maro mai deschis */
   --text-green-color: #1e8a58;
   --color-green: #596744;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Poppins', sans-serif;
	background-color: var(--warm-beige);
	color: var(--text-dark);
	line-height: 1.6;
	overflow-x: hidden;
}


/* Navbar */
.navbar {
	background: var(--color-green);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 20px rgba(212, 145, 94, 0.1);
	transition: all 0.3s ease;
	padding: 0;
}

.navbar.scrolled {
	background: var(--color-green);
	box-shadow: 0 2px 30px rgba(212, 145, 94, 0.2);
}

.navbar-brand {
	font-family: 'Baloo 2', cursive;
	font-size: 2rem;
	font-weight: 600;
	color: var(--primary-color) !important;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 10px;
}

.logo-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.2rem;
	animation: gentle-bounce 2s ease-in-out infinite;
}

@keyframes gentle-bounce {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-5px); }
}

.navbar-nav .nav-link {
	color: #fff !important;
	font-weight: 500;
	padding: 0.75rem 1.25rem !important;
	border-radius: 25px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.navbar-nav .nav-link:hover {
	background: var(--primary-color);
	color: white !important;
	transform: translateY(-2px);
}

.dropdown-menu {
	background: var(--warm-beige);
	border: none;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(212, 145, 94, 0.2);
	padding: 1rem;
}

.dropdown-item {
	color: var(--text-dark);
	padding: 0.75rem 1rem;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.dropdown-item:hover {
	background: var(--accent-color);
	color: var(--primary-color);
	transform: translateX(5px);
}

/* Hero Section */
.hero {
	background: linear-gradient(135deg, var(--warm-beige) 0%, var(--accent-color) 100%);
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(212, 145, 94, 0.1) 0%, transparent 70%);
	animation: rotate 20s linear infinite;
}

@keyframes rotate {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero h1 {
	font-family: 'Baloo 2', cursive;
	font-size: 3.5rem;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 1.5rem;
	line-height: 1.2;
	animation: fadeInUp 1s ease-out;
}

.hero p {
	font-size: 1.3rem;
	color: var(--text-light);
	margin-bottom: 2rem;
	animation: fadeInUp 1s ease-out 0.2s both;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.btn-custom {
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	color: white;
	padding: 15px 30px;
	border: none;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1.1rem;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
	box-shadow: 0 5px 20px rgba(212, 145, 94, 0.3);
	animation: fadeInUp 1s ease-out 0.4s both;
}

.btn-custom:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(212, 145, 94, 0.4);
	background: var(--text-green-color);
	color: white;
}

/* Floating Elements */
.floating-elements {
	position: absolute;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.floating-element {
	position: absolute;
	font-size: 2rem;
	color: var(--primary-color);
	opacity: 0.3;
	animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-element:nth-child(2) { top: 60%; right: 15%; animation-delay: 2s; }
.floating-element:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 4s; }
.floating-element:nth-child(4) { top: 40%; right: 30%; animation-delay: 1s; }

@keyframes float {
	0%, 100% { transform: translateY(0px) rotate(0deg); }
	50% { transform: translateY(-20px) rotate(10deg); }
}

/* Sections */
.section {
	padding: 80px 0;
	position: relative;
}

.section-title {
	font-family: 'Baloo 2', cursive;
	font-size: 2.5rem;
	color: var(--primary-color);
	text-align: center;
	margin-bottom: 3rem;
	position: relative;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
	border-radius: 2px;
}

.service-card {
	background: white;
	padding: 2.5rem;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(212, 145, 94, 0.1);
	transition: all 0.3s ease;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(212, 145, 94, 0.2);
}

.service-icon {
	font-size: 3rem;
	color: var(--primary-color);
	margin-bottom: 1.5rem;
	animation: gentle-bounce 2s ease-in-out infinite;
}

.service-card h3 {
	font-family: 'Baloo 2', cursive;
	color: var(--primary-color);
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

/* Footer */
.footer {
	background: linear-gradient(135deg, var(--text-dark) 0%, var(--soft-brown) 100%);
	color: white;
	padding: 60px 0 30px;
	position: relative;
	overflow: hidden;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.footer h5 {
	font-family: 'Baloo 2', cursive;
	color: var(--accent-color);
	margin-bottom: 1.5rem;
	font-size: 1.3rem;
}

.footer a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: all 0.3s ease;
}

.footer a:hover {
	color: var(--accent-color);
	transform: translateX(5px);
}

.footer-social a {
	display: inline-block;
	width: 45px;
	height: 45px;
	background: var(--primary-color);
	border-radius: 50%;
	text-align: center;
	line-height: 45px;
	margin-right: 10px;
	transition: all 0.3s ease;
}

.footer-social a:hover {
	background: var(--accent-color);
	color: var(--primary-color);
	transform: translateY(-3px) scale(1.1);
}

/* General*/
.text-primary{
	color: var(--text-green-color) !important;
}

.navbar-toggler {
	background: #f2e7d1;
}

.img-radius {
	border-radius: 10px;
}
.service-images {
    border-radius: 15px;
}
.img-bg {
	background: #faf3e9;
    border-radius: 5px;
	margin-bottom: 10px;
}
#loadingWeb {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.10);
    z-index: 2000;
    display: none;
}

.loadingContent {
    position: fixed;
    top: calc(50% - 80px);
    left: calc(50% - 40px);
    font-size: 16px;
    text-align: center;
    background: transparent;
    padding: 3px;
    border-radius: 5px;
    user-select: none;
    width: 80px;
}

.icon-result {
    font-size: 100px;
    margin-bottom: 25px;
}


/* Responsive */
.menu-nav-mobile-delimiter{
		margin-top: 136px;
	}
	
@media (max-width: 990px) {
	img.home-hero-imgs {
		height: 100%;
		width: 100%;
	}
	
	.hero-content{
		padding-top: 35px;
		margin-bottom: 30px;
	}
}

@media (max-width: 768px) {
	.hero h1 {
		font-size: 2.5rem;
	}
	.hero p {
		font-size: 1.1rem;
	}
	.section-title {
		font-size: 2rem;
	}
	.floating-element {
		display: none;
	}
	.logosite{
		hei
	}
	
	.imgs-box {
		width: 100%;
	}
}


/* Animation on scroll */
.fade-in {
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.6s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

.baloon-bg {
	width: 300px;
	height: 300px;
	background: url("../images/baloane.jpg") no-repeat center/cover;
	animation: floatRotate 6s ease-in-out infinite;
	background-size: 200px;
}

@keyframes floatRotate {
	0%   { transform: translateY(0) rotate(0deg); }
	25%  { transform: translateY(-15px) rotate(-15deg); }
	50%  { transform: translateY(-30px) rotate(0deg); }
	75%  { transform: translateY(-15px) rotate(15deg); }
	100% { transform: translateY(0) rotate(0deg); }
}
.bg-baloon-success {
	background: #fbebca;
	border-radius: 30px;
}