@font-face {
	font-family: 'GoodVibrations';
	src: url('images/GoodVibrations.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'avenir-next-condensed-medium';
	src: url('images/avenir-next-condensed-medium.otf') format('opentype');
	font-weight: normal;
	font-style: normal;
}

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

body,
html {
	height: 100%;
	overflow: hidden;
	font-family: Arial, sans-serif;
}

/* Background carousel */
.background-carousel {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0.3;
}

.carousel-image {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 1.5s ease-in-out;
}

.carousel-image.active {
	opacity: 1;
	z-index: 1;
}

.logo {
	width: 200px;
	height: auto;
}

/* Slide-down logo */
.logo-container {
	position: absolute;
	top: -150px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	animation: slideDown 1.5s ease-out forwards;
	animation-delay: 0.5s;
}

@keyframes slideDown {
	to {
		top: 30px;
	}
}

.hidden {
	opacity: 0;
	pointer-events: none;
}

.visible {
	opacity: 1;
	pointer-events: auto;
}

/* Header Section */
.header-section {
	font-family: GoodVibrations;
	position: absolute;
	top: 220px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 4rem;
	font-weight: 400;
	z-index: 6;
	user-select: none;
	pointer-events: none;
	text-align: center;
	background: linear-gradient(0deg, #732b90, #88c061);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
	transition: opacity 1s ease-in-out;
}

/* Buttons stacked vertically below header */
.bottom-buttons {
	position: absolute;
	top: 450px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	z-index: 10;
	opacity: 0;
	pointer-events: none;
	transition: opacity 1s ease-in-out;
}

.bottom-buttons.visible {
	opacity: 1;
	pointer-events: auto;
}

.action-button {
	padding: 16px 28px;
	font-size: 18px;
	font-weight: 500;
	border: none;
	border-radius: 6px;
	background-color: rgba(255, 255, 255, 0.9);
	color: #333;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease;
	text-align: center;
	width: 300px;
	text-decoration: none;
	display: inline-block;
}

.action-button:hover {
	background-color: #e0e0e0;
	transform: translateY(-2px);
}

/* Modal styles */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

.modal-content {
	background-color: white;
	padding: 30px;
	border-radius: 10px;
	width: 90%;
	max-width: 400px;
	position: relative;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
	font-family: 'avenir-next-condensed-medium', Arial, sans-serif;
}

.modal-content h2 {
	margin-bottom: 20px;
	font-size: 24px;
}

.modal-content label {
	display: block;
	margin-top: 10px;
	margin-bottom: 5px;
	font-size: 14px;
}

.modal-content input,
.modal-content select {
	width: 100%;
	padding: 10px;
	margin-bottom: 10px;
	border-radius: 4px;
	border: 1px solid #ccc;
	font-size: 14px;
}

.modal-content p {
	margin-bottom: 10px;
	font-size: 15px;
}

.modal-close {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 32px;
	cursor: pointer;
	color: #888;
	line-height: 1;
}

.modal-close:hover {
	color: #000;
}

.modal-overlay.hidden {
	display: none;
}

/* Highlighted and centered contact/submit button */
.highlight-button {
	background-color: #732b90;
	color: #fff;
	font-weight: 600;
	margin-top: 20px;
	text-align: center;
	display: block;
	width: 220px;
	margin-left: auto;
	margin-right: auto;
}

.highlight-button:hover {
	background-color: #5e2380;
}

.therapy-price {
  text-align: center;
  margin-top: 10px;
  font-weight: 500;
  font-size: 16px;
}