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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Poppins', sans-serif;
	color: #2c2c2c;
	background: #faf8f3;
	line-height: 1.8;
}

/* ---------- HEADINGS ---------- */

h1,
h2,
h3 {
	font-family: 'Playfair Display', serif;
}

h4 {
	font-family: 'Playfair Display', serif;
}

h3+h4 {
	margin-top: -20px;
}

h2 {
	font-size: 3rem;
	margin-bottom: 30px;
	color: #6B7A5A;
}

/* ==========================
   NAVIGATION
========================== */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 18px 6%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: rgba(255, 255, 255, .12);
	backdrop-filter: blur(18px);
	transition: .35s;
	z-index: 9999;
}

.navbar-scrolled {
	background: rgba(38, 38, 38, .92);
	box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
}

.logo img {
	height: 90px;
	transition: .3s;
}

.nav-links {
	display: flex;
	gap: 38px;
	list-style: none;
}

.nav-links a {
	text-decoration: none;
	color: white;
	font-weight: 500;
	position: relative;
	transition: .3s;
}

.nav-links a.active {
	color: #C6A66B;
}

.nav-links a.active::after {
	width: 100%;
}

.nav-links a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 0;
	height: 2px;
	background: #C6A66B;
	transition: .3s;
}

.nav-links a:hover::after {
	width: 100%;
}

.nav-book-btn {
	background: #C6A66B;
	color: white;
	padding: 14px 28px;
	border-radius: 40px;
	text-decoration: none;
	transition: .3s;
}

.nav-book-btn:hover {
	transform: translateY(-2px);
	background: #b8924f;
}

.hamburger {
	display: none;
	color: white;
	font-size: 2rem;
	cursor: pointer;
}

/* Mobile menu */
@media (max-width:900px) {
	.navbar {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		padding: 15px 20px;
	}

	.logo img {
		height: 55px;
	}

	.nav-links {
		display: none;
	}

	.nav-book-btn {
		display: none;
	}

	.hamburger {
		display: block;
	}
}

.mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 280px;
	height: 100vh;
	background: #fff;
	display: flex;
	flex-direction: column;
	padding: 40px 30px;
	transition: .35s;
	box-shadow: -10px 0 30px rgba(0, 0, 0, .2);
	z-index: 10000;
}

.mobile-menu.active {
	right: 0;
}

.mobile-menu a.active {
	color: #C6A66B;
	font-weight: 600;
}

.close-menu {
	align-self: flex-end;
	font-size: 2rem;
	cursor: pointer;
	margin-bottom: 40px;
}

.mobile-menu a {
	text-decoration: none;
	color: #333;
	margin-bottom: 20px;
	font-size: 1.1rem;
}

.mobile-book-btn {
	margin-top: auto;
	background: #C6A66B;
	color: white !important;
	padding: 15px;
	text-align: center;
	border-radius: 40px;
}

/* ---------- HERO ---------- */

header {
	min-height: 90vh;

	background:
		linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .45)),
		url("images/hero.jpg");

	background-size: cover;
	background-position: center 30%;

	display: flex;
	justify-content: center;
	align-items: center;
}

@media(max-width:768px) {

	header {

		min-height: 45vh;

	}

}

.hero {
	text-align: center;
	color: white;
}

.hero h1 {
	font-size: clamp(2.2rem, 7vw, 5rem);
	margin-bottom: 20px;
}

.hero p {
	font-size: 1.4rem;
	margin-bottom: 40px;
}

/* ---------- BUTTONS ---------- */

.btn,
.btn-outline {
	display: inline-block;
	padding: 16px 35px;
	border-radius: 40px;
	text-decoration: none;
	margin: 10px;
	transition: .3s;
}

.btn {
	background: #7D5A50;
	color: white;
}

.btn:hover {
	background: #61433b;
}

.btn-outline {
	border: 2px solid white;
	color: white;
}

.btn-outline:hover {
	background: white;
	color: black;
}

/* ---------- SECTIONS ---------- */
section {
	padding: 120px 10%;
	scroll-margin-top: 80px;
}

@media(max-width:768px) {
	section {
		padding: 70px 25px;
	}
}

section p {
	max-width: 900px;
}

/* ---------- CARDS ---------- */

.cards {
	margin-top: 50px;

	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.card {
	background: white;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0, 0, 0, .08);

	transition: .3s;
}

.card:hover {
	transform: translateY(-10px);
}

.card img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.card h3 {
	margin: 25px;
	color: #6B7A5A;
}

.card p {
	margin: 0 25px 30px;
}

/* ===========================================
   GALLERY/TASTE
=========================================== */
.gallery-intro {
	max-width: 700px;
	margin-bottom: 50px;
	color: #666;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	grid-auto-rows: 250px;
	gap: 18px;
}

.gallery-item {
	overflow: hidden;
	border-radius: 22px;
	position: relative;
	cursor: pointer;
	box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .6s;
}

.gallery-item:hover img {
	transform: scale(1.08);
}

.gallery-item.tall {
	grid-row: span 2;
}

.gallery-item.wide {
	grid-column: span 2;
}

.gallery-item::after {
	position: absolute;
	inset: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	font-size: 1.2rem;
	font-weight: 500;
	background: rgba(0, 0, 0, .25);
	opacity: 0;
	transition: .35s;
}

.gallery-item:hover::after {
	opacity: 1;
}

.gallery-item {
	overflow: hidden;
	border-radius: 22px;
	position: relative;
	cursor: pointer;
	box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.taste-item img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: .6s;
}

/* .gallery-item:hover img {
	transform: scale(1.08);
}

.gallery-item.tall {
	grid-row: span 2;
}

.gallery-item.wide {
	grid-column: span 2;
}

.gallery-item::after {
	position: absolute;
	inset: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	font-size: 1.2rem;
	font-weight: 500;
	background: rgba(0, 0, 0, .25);
	opacity: 0;
	transition: .35s;
}

.gallery-item:hover::after {
	opacity: 1;
} */

/* ===========================================
   GALLERY/TASTE MOBILE
=========================================== */
@media (max-width:768px){
    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
        grid-auto-rows:auto;
        gap:10px;
    }

    .gallery-item,
    .gallery-item.tall,
    .gallery-item.wide{

        grid-column:auto !important;
        grid-row:auto !important;

        aspect-ratio:1/1;
        height:auto;
    }

    .gallery-item img{
        width:100%;
        height:100%;
        object-fit:cover;
        display:block;
        border-radius:12px;
    }

}

/* ---------- EXPERIENCES ---------- */

#experiences .card {
	padding: 40px;
	text-align: center;
}

/* ---------- CONTACT ---------- */

#contact {
	text-align: center;
}

#contact p {
	margin-bottom: 20px;
}

/* ---------- FOOTER ---------- */

footer {
	background: #6B7A5A;
	color: white;
	text-align: center;
	padding: 60px 20px;
}

footer h3 {
	margin-bottom: 20px;
}

/* ---------- RESPONSIVE ---------- */

@media(max-width:900px) {

	.hero h1 {
		font-size: 3rem;
	}

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

	.nav-links {
		gap: 20px;
		font-size: .9rem;
	}
}

@media(max-width:768px) {

	.nav-links {
		flex-wrap: wrap;
		justify-content: center;
	}

	.hero h1 {
		font-size: 2.4rem;
	}

	.hero p {
		font-size: 1.1rem;
	}
}

/* =========================
SECTION ANIMATIONS
========================= */

.hidden {
	opacity: 0;
	transform: translateY(50px);
	transition: all 1s ease;
}

.show {
	opacity: 1;
	transform: translateY(0);
}


/* =========================
SCROLL TO TOP BUTTON
========================= */
.top-button {
	position: fixed;
	right: 30px;
	bottom: 30px;
	width: 55px;
	height: 55px;
	border: none;
	border-radius: 50%;
	font-size: 22px;
	background: #7D5A50;
	color: white;
	cursor: pointer;
	opacity: 0;
	transition: .3s;
	z-index: 999;
}

.top-button.visible {
	opacity: 1;
}


/* =========================
WHATSAPP BUTTON
========================= */
.whatsapp-button {
	position: fixed;
	bottom: 100px;
	right: 30px;
	width: 60px;
	height: 60px;
	background: #6B7A5A;
	/*#25D366;*/
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	color: white;
	font-size: 28px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .3);
	z-index: 999;
	transition: .3s;
}

.whatsapp-button:hover {
	transform: scale(1.1);
}
/* ==========================
   PREMIUM LIGHTBOX
========================== */

.lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .96);
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	z-index: 99999;
}

.lightbox.active {
	opacity: 1;
	visibility: visible;
}

.lightbox img {
	max-width: 90%;
	max-height: 82vh;
	border-radius: 18px;
	box-shadow: 0 25px 60px rgba(0, 0, 0, .45);
	animation: fadeIn .3s;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: scale(.96);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

.lightbox-close {
	position: absolute;
	top: 30px;
	right: 40px;
	font-size: 3rem;
	color: white;
	cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 60px;
	height: 60px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, .15);
	color: white;
	font-size: 2rem;
	cursor: pointer;
	transition: .25s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
	background: #C6A66B;
}

.lightbox-prev {
	left: 40px;
}

.lightbox-next {
	right: 40px;
}

.lightbox-caption {
	position: absolute;
	bottom: 35px;
	left: 50%;
	transform: translateX(-50%);
	color: white;
	font-size: 1rem;
}

.lightbox-counter {
	position: absolute;
	top: 35px;
	left: 40px;
	color: white;
	font-size: 1rem;
}

@media(max-width:768px) {

	.lightbox-prev,
	.lightbox-next {
		width: 45px;
		height: 45px;
		font-size: 1.3rem;
	}

	.lightbox-prev {
		left: 10px;
	}

	.lightbox-next {
		right: 10px;
	}
}

/* =====================
GOOGLE MAP & CONTACT INFO
===================== */
.contact-container {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 50px;
	align-items: center;
	margin-top: 50px;
}

.contact-info {
	background: white;
	padding: 50px;
	border-radius: 20px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
}

.contact-info h3 {
	margin-bottom: 30px;
	color: #6B7A5A;
}

.contact-info h4 {
	margin-bottom: 30px;
	color: #6B7A5A;
}

.contact-info p {
	margin-bottom: 25px;
	font-size: 1.1rem;
}

.contact-info img {
	height: 150px;
	width: auto;
}

.map-container {
	overflow: hidden;
	border-radius: 20px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
}

.map-container iframe {
	display: block;
}


/* Mobile */
@media(max-width:900px) {
	.contact-container {
		grid-template-columns: 1fr;
	}
}

/* ===========================================
DISCOVER
=========================================== */
#discover {
	background: #faf8f4;
}

#discover h2 {
	text-align: left;
	margin-bottom: 15px;
}

.discover-intro {
	max-width: 700px;
	margin-bottom: 60px;
	text-align: left;
	color: #666;
}

.discover-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 35px;
	align-items: stretch;
}

.discover-card {
	background: white;
	border-radius: 20px;
	padding: 45px 35px;
	text-decoration: none;
	color: #333;
	box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
	transition: .35s;
	display: flex;
	flex-direction: column;
}

.discover-card img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.discover-card span {
	color: #b68d4c;
	font-weight: 600;
	margin-top: auto;
	text-align: center
}

.discover-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

.discover-icon {
	font-size: 55px;
	margin: 0 25px 30px;
}

.discover-card h3 {
	margin: 25px;
	color: #6B7A5A;
}

.discover-card p {
	margin: 0 25px 30px;
}

@media (max-width:768px){
    .discover-card img{
        height:160px;
    }
}

.hero {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	height: 100%;
	color: white;
}

.hero-content {
	max-width: 850px;
	padding: 20px;
}

.hero-subtitle {
	text-transform: uppercase;
	letter-spacing: 4px;
	font-size: .9rem;
	margin-bottom: 15px;
	opacity: .9;
}

.hero h1 {
	font-size: clamp(3rem, 8vw, 5.8rem);
	margin-bottom: 5px;
	line-height: 1;
}

.hero-brand {
	font-size: 2rem;
	color: #ffffff;
	font-weight: 400;
	margin-bottom: 30px;
}

.hero-description {
	max-width: 650px;
	margin: 0 auto 45px;
	font-size: 1.2rem;
	line-height: 1.8;
}

.hero-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}