:root {
	--Pink: #ff385c;
}

/* Reset and base styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', system-ui;
	line-height: 1.6;
	color: #333;
}

html {
	scroll-behavior: smooth;
}

a {
	text-decoration: none;
	color: inherit;
}

/* Header styles */
header {
	width: 95%;
	max-width: 1300px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 20px 0;
}

.header_block {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0.5rem;
	flex-grow: 1;
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem;
	max-width: 1300px;
	/* height: 8.75rem; */
	flex-grow: 0;
}

.brand {
	display: flex;
	flex-direction: column;
	align-items: end;
}

.name {
	/* font-size: 2.1875rem; */
	font-weight: bold;
	color: var(--Pink);
	letter-spacing: -1px;
	line-height: 0.7;
	font-size: clamp(1.5rem, 5vw, 2.1875rem);
}

.tagline {
	font-family: 'Julius Sans One', sans-serif;
	/* font-size: 1.2094rem; */
	font-weight: 400;
	text-transform: uppercase;
	color: var(--Pink);
	font-size: clamp(0.78rem, 2.6vw, 1.15rem);
}

nav ul {
	display: flex;
	list-style: none;
}

nav ul li {
	margin-left: 1rem;
}

/* .hamburger {
	display: none;
	cursor: pointer;
	font-size: 2rem;
	background: none;
	border: none;
	color: var(--Pink);
} */

.hamburger {
	display: none;
	cursor: pointer;
	background: none; /* Sin fondo */
	border: none; /* Sin borde */
	cursor: pointer; /* Cambia el cursor a puntero */
}

.hamburger svg {
	width: 32px; /* Ajusta el tamaño del ícono */
	height: 32px; /* Ajusta el tamaño del ícono */
	fill: var(--Pink);
}

/* Cambia el color al hacer hover */
.hamburger:hover svg {
	fill: #000; /* Color al pasar el mouse, ajusta según tu diseño */
}

section {
	padding: 5rem 2rem;
	width: 95%;
	max-width: 1300px;
	margin: 0 auto;
}

h1,
h2,
h3 {
	margin-bottom: 1rem;
	line-height: 105%;
	letter-spacing: -1px;
	font-weight: 700;
}

h1 {
	font-size: clamp(2rem, 5vw, 3.4375rem);
}

h2 {
	font-size: clamp(2rem, 3vw, 3rem);
}

h3 {
	font-size: clamp(1.8rem, 3vw, 2.5rem);
}

h4 {
	font-size: clamp(1.4rem, 2.5vw, 2rem);
	line-height: 1;
}

p {
	font-size: clamp(1rem, 2vw, 1.125rem);
}

/* Hero section */
#hero {
	position: relative;
	height: 600px;
	overflow: hidden;
	display: flex;
	align-items: center;
	border-radius: 1rem;
}

.video-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#hero-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#toggle-sound {
	position: absolute;
	bottom: 20px;
	right: 20px;
	background: rgba(0, 0, 0, 0.5);
	color: white;
	border: none;
	padding: 5px;
	font-size: 16px;
	cursor: pointer;
	z-index: 10;
}

.hero-content {
	position: relative;
	z-index: 1;
	text-align: right;
	padding: 8rem 2rem;
	color: #fff;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	width: 50%;
	margin-left: auto;
}

.hero-content p {
	margin-bottom: 2rem;
}

/* Button styles */
.cta-button,
.secondary-button {
	display: inline-block;
	padding: 12px 36px;
	border-radius: 45px;
	font-weight: normal;
	text-transform: uppercase;
	transition: background-color 0.3s ease;
}

.cta-button {
	background-color: var(--Pink);
	color: #fff;
}

.cta-button:hover {
	background-color: #ff3357;
}

.secondary-button {
	background-color: #fff;
	color: var(--Pink);
	border: 1px solid var(--Pink);
}

.secondary-button:hover {
	background-color: var(--Pink);
	color: #fff;
}

#btn_send {
	border: none; /* Elimina el borde predeterminado */
	border-radius: 12px;
	font-weight: bold;
	font-size: 1rem;
	font-family: 'Inter', system ui;
	margin-top: 24px;
}

/* About section */
#about {
	display: flex;
	flex-direction: row;
	gap: 80px;
	align-items: center;
	justify-content: space-between;
}

#about img {
	height: 640px;
	width: 640px;
	border-radius: 10px;
}

.about-content {
	width: 50%;
}

.about-content p {
	margin-bottom: 48px;
}

/* Amenities section */
#amenities {
	background: var(--Pink);
	border-radius: 1em;
	color: #fff;
	display: flex;
	gap: 96px;
	padding-right: 0;
	padding-left: 80px;
	overflow: hidden;
}

#amenities-content {
	width: 26rem;
}

/* Amenities slider */
.amenities-slider {
	position: relative;
	margin: 2rem 0;
	width: 64%;
}

.slider-container {
	overflow: hidden;
	display: flex !important;
	gap: 32px;
}

.slider-container li {
	flex: 0 0 320px;
	width: 320px;
	height: 320px;
	border-radius: 1rem;
	background-size: cover;
	background-position: center;
}

.slider-track {
	display: flex;
	transition: transform 0.3s ease;
	gap: 32px;
}

.slider-button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.5);
	color: white;
	border: none;
	padding: 10px 15px;
	font-size: 20px;
	cursor: pointer;
	z-index: 10;
}

.slider-button.prev {
	left: 10px;
}

.slider-button.next {
	right: 10px;
}

/* Location section */
#location {
	padding-left: 0;
	padding-right: 0;
}

#location iframe {
	max-width: 1300px;
	border-radius: 10px;
	margin-top: 1.5rem;
}

/* Reviews section */
.reviews-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.review {
	background-color: #f8f8f8;
	padding: 1.5rem;
	border-radius: 10px;
}

.review img {
	border-radius: 50%;
}

.rating {
	color: #ffd700;
}

/* Cta section */
#cta {
	height: 440px;
	width: 100%;
	max-width: none;
	background-image: url('assets/img/cta_img.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: white;
	text-align: center;
	padding: 112px 64px 90px 64px;
}

#cta .cta-button {
	margin-top: 4.125rem;
	font-weight: bold;
}

/* Contact section */
.contact-container {
	display: flex;
	gap: 50px;
	padding: 2rem 0;
}

.contact-container img {
	border-radius: 50%;
}

.contact-host {
	flex: 1 1 50%;
	text-align: center;
}

.contact-host p {
	font-size: 0.85rem;
	width: 80%;
	margin: auto;
	padding-top: 1.5rem;
	line-height: 1.6;
}

form {
	display: grid;
	flex: 1 1 50%;
}

input,
textarea {
	width: 100%;
	padding: 0.8rem;
	border: 1px solid #ddd;
	border-radius: 5px;
	margin-bottom: 10px;
}

textarea {
	height: 150px;
}

#form-status {
	font-size: 0.7rem;
	border: 1px solid var(--Pink);
	border-radius: 12px;
	padding: 1rem;
	height: fit-content;
	text-align: center;
	display: none;
}

/* Footer styles */
footer {
	border-top: 1px solid var(--Pink);
	border-bottom: 1px solid var(--Pink);
	color: #222;
	text-align: center;
	padding: 3rem 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 0.5rem;
}

footer p {
	font-size: 0.75rem;
}

footer ul {
	display: flex;
	justify-content: center;
	list-style: none;
	margin: 1rem 0;
}

footer ul li {
	margin: 0 0.5rem;
}

/* Responsive design */
@media (max-width: 1024px) {
	#amenities {
		gap: 2rem;
		padding-left: 50px;
	}
}

@media (max-width: 768px) {
	#cta .cta-button {
		margin-top: 2.5rem;
	}

	.contact-container {
		flex-direction: column-reverse;
	}

	nav {
		flex-direction: column;
		height: fit-content;
	}

	nav {
		display: none;
		flex-direction: column;
		z-index: 1;
		right: 0;
		background: #fff;
		width: 100%;
	}

	nav ul {
		flex-direction: column;
	}

	nav.active {
		display: flex;
	}

	.hamburger {
		display: block;
	}

	#about {
		flex-direction: column;
		text-align: center;
	}

	.about-content {
		width: 100%;
	}

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

	#amenities {
		flex-direction: column;
		gap: 0;
	}

	#amenities-content,
	.amenities-slider {
		width: 100%;
	}

	.reviews-container {
		grid-template-columns: 1fr;
	}

	h2,
	h3 {
		text-align: center;
	}
	#hero {
		width: 100%;
	}

	.hero-content {
		padding: 4rem 1rem;
		text-align: center;
		width: 100%;
	}

	.slider-button {
		padding: 5px 10px;
		font-size: 16px;
	}

	section {
		padding: 5rem 1rem;
	}
}

@media (max-width: 576px) {
	#about img {
		height: 390px;
	}
	#hero {
		height: 450px;
		border-radius: unset;
	}
	#about {
		gap: 0px;
	}
	.about-content a {
		display: none;
	}

	#amenities {
		padding: 2rem;
	}

	p {
		text-align: center;
	}

	.slider-container li {
		flex: 0 0 100%;
	}

	.amenities-slider {
		margin: 2rem 0 0 0;
	}

	#location p {
		padding: 0 1rem 1rem 1rem;
	}
}
