@import url('google_fonts/google_fonts.css?v=20260208_06');
@import url('ref.css?v=20260208_06');
@import url('hover-utils.min.css?v=20260208_06');
@import url('modal-dialog.css?v=20260208_06');
@import url('navbar.min.css?v=20260208_06');
@import url('section-hero.min.css?v=20260208_06');
@import url('section-about.min.css?v=20260208_06');
@import url('section-about-gallery.min.css?v=20260208_06');
@import url('section-service.min.css?v=20260208_06');
@import url('section-packages.min.css?v=20260208_06');
@import url('section-team.min.css?v=20260208_06');
@import url('section-experience.min.css?v=20260208_06');
@import url('section-contact.min.css?v=20260208_06');
@import url('footer.min.css?v=20260208_06');

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

body {
	font-family: 'Roboto', sans-serif;
	line-height: 1.6;
	color: var(--font-site);
	background-color: var(--white);
	overflow-x: hidden;
}

html {
	scroll-behavior: smooth;
	scrollbar-gutter: stable;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Dosis', 'Roboto', sans-serif;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 1rem;
}

h1 {
	font-size: 3.5rem;
	font-weight: 700;
}

h2 {
	font-size: 2.8rem;
}

h3 {
	font-size: 2.2rem;
}

h4 {
	font-size: 1.8rem;
}

h5 {
	font-size: 1.4rem;
}

h6 {
	font-size: 1.2rem;
}

p {
	margin-bottom: 1rem;
	font-size: 1.15rem;
}

a {
	text-decoration: none;
	transition: var(--transition-fast);
}

img {
	max-width: 100%;
	height: auto;
}

.section-padding {
	padding: 60px 0;
}

.section-title {
	position: relative;
	font-family: 'Dosis-bold';
	font-weight: 700;
	font-size: 2.5rem;
	background: linear-gradient(145deg, var(--font-site-secondary), var(--font-site));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	filter: drop-shadow(var(--green-primary));
	animation: sectionTitleGlow 2.5s ease-in-out infinite alternate;
}

.section-title::after {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: clamp(40px, 4vw, 65px);
	background: linear-gradient(to right, transparent 0%, var(--green-pale) 30%, var(--green-light) 45%, var(--green-secondary) 75%, var(--font-site-senary) 95%);
	border-top-right-radius: 150px;
	border-bottom-right-radius: 150px;
	transform: translateX(-100%);
	opacity: 0;
	z-index: 1;
	max-width: 100%;
	box-sizing: border-box;
}

.section-title.reveal-active::after {
	opacity: 0.7;
	animation: bulletTrail 2.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes bulletTrail {
	0% {
		transform: translateX(-100%);
		opacity: 0;
	}

	10% {
		opacity: 0.7;
	}

	90% {
		opacity: 0.7;
	}

	100% {
		transform: translateX(100%);
		opacity: 0;
	}
}

.section-subtitle {
	display: inline-block;
	font-size: 1.2rem;
	font-family: 'Dosis';
	margin-bottom: 2rem;
	padding: 8px 16px;
	background: linear-gradient(to right, var(--green-secondary) 0%, rgba(255, 255, 255, 0) 100%);
	border-top-left-radius: 36px;
	border-bottom-left-radius: 36px;
	color: var(--color--primary-2);
	line-height: 1.5em;
	margin-bottom: 2rem;
}

#brand {
	position: relative;
	margin-top: 100px;
	z-index: 2;
}

#services,
#packages,
#experience,
#contact {
	margin-top: 0;
}

#contact {
	padding-top: 20px;
}

.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	font-size: 1.2rem;
	border: none;
	color: var(--white);
	border-radius: 50%;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition-fast);
	background: var(--gradient-green-deep);
	z-index: 1000;
}

.back-to-top.show {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover {
	background: var(--gradient-green-site-deep);
	transform: translateY(-3px);
}

::-webkit-scrollbar {
	width: 6px;
}

::-webkit-scrollbar-track {
	background: var(--green-tertiary);
}

::-webkit-scrollbar-thumb {
	background: var(--gradient-green-primary);
	border-radius: 36px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--green-quinary);
	box-shadow: var(--shadow-green-cool);
}

.animate-fade-in {
	opacity: 0;
	animation: fadeIn 1s ease forwards;
	animation-fill-mode: forwards;
}

.animate-slide-in {
	opacity: 0;
	transform: translateX(50px);
	animation: slideIn 1s ease forwards;
	animation-fill-mode: forwards;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateX(50px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.scroll-animate {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
}

.scroll-animate.animate {
	opacity: 1;
	transform: translateY(0);
}