@font-face {
	font-family: "Roboto";
	src: url("../assets/fonts/Roboto-Regular.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Roboto";
	src: url("../assets/fonts/Roboto-Medium.ttf") format("truetype");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Roboto";
	src: url("../assets/fonts/Roboto-Bold.ttf") format("truetype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Roboto";
	src: url("../assets/fonts/Roboto-Black.ttf") format("truetype");
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

html,
body {
	margin: 0;
	padding: 0;
	font-family: "Roboto", sans-serif;
	scroll-behavior: smooth;
}

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

p {
	font-family: "Roboto", sans-serif !important;
}

h1 {
	font-size: 64px;
	line-height: 64px;
	font-weight: 800;
}

h2 {
	font-size: 40px;
	line-height: 2.5rem;
	font-weight: 400;
}

h3 {
	font-size: 32px;
	line-height: 38px;
	font-weight: 800;
}

button {
	text-align: center;
	cursor: pointer;
}
header .nav-link {
	font-size: 0.875rem;
	font-weight: 400;
	text-transform: uppercase;
}

.btn {
	padding: 0.5rem 1.5rem;
	border-radius: 0.75rem;
	color: white;
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none;
	display: inline-block;
}

.btn:hover {
	text-decoration: none;
}

body {
	overflow-x: hidden;
}

header,
header * {
	transition: all 0.2s ease;
}

input::placeholder,
textarea::placeholder,
select {
	font-size: 13px !important;
	font-weight: normal;
	color: #667085 !important;
}

select {
	appearance: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type="number"] {
	appearance: textfield;
}

input[type="checkbox"] {
	border-color: #d0d5dd !important;
}

.polygon {
	clip-path: polygon(0% 0%, calc(100% - 20px) 0%, 100% 50%, calc(100% - 20px) 100%, 0% 100%);
}

.polygon-label {
	clip-path: polygon(100% 0%, 91% 49%, 100% 100%, 0 100%, 0 50%, 0 0);
}

.nav-link-active {
	color: rgb(240, 78, 35) !important;
}

.animation-1 {
	transition: all 0.5s ease-in-out;
}

.relative {
	position: relative;
	z-index: 1;
}

#customerExperience,
#restaurantOperationEnhancements,
#restaurantStaff {
	transition: width 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
	margin: 0 auto;
	transform-origin: center;
	left: 0;
	right: 0;
}

@media (max-width: 1023px) {
	#customerExperience,
	#restaurantOperationEnhancements,
	#restaurantStaff {
		width: 100% !important;
		margin: 0 auto;
		transition: none;
		position: relative !important;
		top: auto !important;
		height: auto !important;
		min-height: auto;
		padding-top: 2rem;
		padding-bottom: 2rem;
	}

	#restaurantStaff {
		margin-bottom: 0 !important;
	}
}

.section-initial {
	margin: 0 auto;
}

.section-fullwidth {
	width: 100% !important;
	margin: 0 auto;
}

#customerExperience {
	z-index: 10;
}

#restaurantOperationEnhancements {
	z-index: 11;
}

#restaurantStaff {
	z-index: 12;
}

footer,
section:last-child:not(#restaurantStaff) {
	position: relative;
	z-index: 20;
}

.panel-text {
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.drawer {
	transition: all 0.5s ease;
}

.drawer_content {
	overflow: hidden;
	transition: height 0.5s ease, opacity 0.5s ease;
}

.drawer_title {
	transition: color 0.5s ease, font-size 0.5s ease, font-weight 0.5s ease;
}

.plus {
	transition: transform 0.5s ease;
}

.img-wrapper {
	transition: transform 0.8s ease, opacity 0.8s ease;
}

@keyframes fadeInLeftBig {
	from {
		opacity: 0;
		transform: translate3d(-2000px, 0, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInRightBig {
	from {
		opacity: 0;
		transform: translate3d(2000px, 0, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes zoomIn {
	from {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}
	50% {
		opacity: 1;
	}
}

@keyframes bounceInUp {
	from,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	from {
		opacity: 0;
		transform: translate3d(0, 3000px, 0) scaleY(5);
	}
	60% {
		opacity: 1;
		transform: translate3d(0, -20px, 0) scaleY(0.9);
	}
	75% {
		transform: translate3d(0, 10px, 0) scaleY(0.95);
	}
	90% {
		transform: translate3d(0, -5px, 0) scaleY(0.985);
	}
	to {
		transform: translate3d(0, 0, 0);
	}
}

.fade-in-left-big {
	animation: fadeInLeftBig 1s;
}

.fade-in-right-big {
	animation: fadeInRightBig 1s;
}

.zoom-in {
	animation: zoomIn 1s;
}

.bounce-in-up {
	animation: bounceInUp 1s;
}
@keyframes zoomIn {
	0% {
		transform: scale(0.1);
		opacity: 0;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.zoom-in {
	animation: zoomIn 1s ease-out forwards;
}

.accordion-arrow {
	transition: transform 0.5s ease;
	display: inline-block;
	margin-left: 8px;
}

.fa-chevron-down,
.fa-chevron-right {
	transition: transform 0.5s ease;
}

details[open] .fa-chevron-down {
	transform: rotate(0deg);
}

summary i.accordion-arrow {
	float: right;
	margin-right: 15px;
	margin-top: 4px;
}

summary {
	transition: color 0.3s ease;
}

summary span {
	transition: font-size 0.3s ease, font-weight 0.3s ease, transform 0.3s ease;
}

details p {
	transition: opacity 0.5s ease;
}

details[open] p {
	animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

summary::-webkit-details-marker {
	display: none;
}

#ce-image,
#ro-image,
#rs-image {
	transition: transform 800ms ease-in-out, opacity 500ms ease-in-out;
	transform-origin: center;
}

.image-zoom-animation {
	animation: imageZoomIn 1s ease-out forwards;
}

@keyframes imageZoomIn {
	0% {
		transform: scale(0.2);
		opacity: 0;
	}
	50% {
		opacity: 0.5;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

#ce-image.scale-75 {
	transform: scale(0.75);
	opacity: 0.5;
}

#ce-image.zooming-in {
	transform: scale(1);
	transition: transform 1.2s cubic-bezier(0.17, 0.84, 0.44, 1);
}

#next-slide {
	transition: all 0.5s ease-in-out;
	cursor: pointer;
}

#next-slide:hover {
	transform: scale(1.1);
	background-color: #fff9f5;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.accordion-title-active {
	font-size: 1.2em !important;
	font-weight: 600 !important;
	transform: translateX(4px);
}

#downloads-container img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

@media (min-width: 1024px) {
	#downloads-container img {
		width: 32px;
		height: 32px;
	}
}

.error-message {
	display: none;
	color: #ef4444;
	font-size: 0.875rem;
	margin-bottom: 0.75rem;
}
