:root {
	--brand: #8A1E48;
	--dark: #4B1427;
	--gold: #B0966D;
	--light: #EBD3BB;
}

html {
	scroll-behavior: smooth;
}

body {
	font-size: 14px;

	@media screen and (min-width: 768px) {
		font-size: 16px;
	}
}

h1 {
	color: var(--brand);
}

h2 {
	color: var(--brand);
	line-height: 1.5!important;
}

img {
	user-select: none;
	-webkit-user-drag: none;
}

.button {
	font-size: 0.9em;
	padding: 8px 20px;
	display: inline-flex;
	justify-content: center;
	border-radius: 30px;
	color: white;
	background: var(--gold);
	transition: all 0.3s ease;

	@media screen and (min-width: 768px) {
		padding: 12px 32px;
	}
}

.button:hover {
	background: var(--brand);
}

.section-image-background {
	@media screen and (max-width: 1679.98px) {
		padding-bottom: 0!important;
		background: #F9EBDE!important;
	}
}

.image-background {
	@media screen and (min-width: 1680px) {
		max-width: 1024px;
		margin-top: 48px;
	}
}

.image-background img {
	@media screen and (min-width: 1680px) {
		border-radius: 12px;
		border: 4px solid var(--gold);
		transform: rotate(2deg);
		/* hover: scale-105 hover:rotate-0 hover:shadow-2xl transition overflow-hidden rounded-xl border-4 border-gold rotate-1 */
	}
}

.image-background img:hover {
	@media screen and (min-width: 1680px) {
		transform: scale(1.05);
		box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), 0 25px 50px -12px rgb(0 0 0 / 0.25);
	}
}

.form-field {
	width: 100%;
}

label {
	font-size: 0.9em;
	margin-bottom: 4px;
	display: block;
}

input,
textarea {
	font-size: 0.9em;
	width: 100%;
	padding: 8px 12px!important;
	display: block;
	border-radius: 8px;
	border: 1px solid var(--gold);
	transition: all 0.3s ease;
}

input:focus,
textarea:focus {
	outline: none;
	box-shadow: none;
	box-shadow: 0 0 0 2px rgba(138, 30, 72, 0.3);
	border: 1px solid var(--brand);
}

/* Initial state */
.fade-in {
	@media screen and (min-width: 768px) {
		opacity: 0.2;
		transform: translateY(60px);
		transition: opacity 0.6s ease-out, transform 0.6s ease-out;
	}
}

/* When visible */
.fade-in.is-visible {
	opacity: 1;
	transform: translateY(0);
}