:root {
	--bg-color: #ddcbdf;
	--text-main: #2c2d39;
	--accent: #8b5ca2;
	--soft-sand: #d6c9dc;
	--dark-slate: #3f3f4f;
}
html,
body {
	max-width: 100%;
	overflow-x: hidden;
	position: relative;
}
body {
	font-family: 'Inter', sans-serif;
	color: var(--text-main);
	background-color: var(--bg-color);
	line-height: 1.6;
}

h1,
h2,
h3 {
	font-weight: 400;
	letter-spacing: -0.02em;
}

.btn-primary {
	display: inline-block;
	padding: 1rem 2.5rem;
	background-color: var(--accent);
	color: white;
	border-radius: 99px;
	font-weight: 600;
	transition: all 0.3s ease;
	text-align: center;
}

.btn-primary:hover {
	background-color: var(--dark-slate);
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
	display: inline-block;
	padding: 1rem 2.5rem;
	border: 2px solid var(--dark-slate);
	color: var(--dark-slate);
	border-radius: 99px;
	font-weight: 600;
	transition: all 0.3s ease;
	text-align: center;
}

.btn-outline:hover {
	background-color: var(--dark-slate);
	color: white;
}

/* Анимации появления */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

main section {
	animation: fadeIn 1s ease-out forwards;
}

/* Форма */
#meditation-form input {
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

#meditation-form input:focus {
	border-color: var(--accent);
	background-color: white;
}
