/* ================= RESET ================= */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Montserrat', sans-serif;
	background: #f5f9fc;
	color: #333;
	overflow-x: hidden;
}

a {
	text-decoration: none;
}

/* ================= NAVBAR ================= */
.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	background: #0f766e;
	flex-wrap: wrap;
	position: sticky;
	top: 0;
	z-index: 999;
	transition: background 0.3s ease;
}

.nav-left {
	color: #fff;
	font-weight: bold;
	font-size: 18px;
}

.nav-center,
.nav-right {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.nav-center a,
.nav-right a {
	color: #fff;
	margin: 0 10px;
	font-weight: 600;
	transition: color 0.2s ease;
}

.nav-center a:hover,
.nav-right a:hover {
	color: #ffe066;
}

.nav-right img {
	width: 20px;
	height: 20px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-right img:hover {
	transform: scale(1.2);
	opacity: 0.9;
}

/* ================= HERO ================= */
.hero {
	position: relative;
	height: 90vh;
	background: url('rooms/konkan-sindhu-beach-house-main.webp') center/cover no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
}

.hero-content {
	position: relative;
	z-index: 2;
	padding: 0 20px;
}

.hero h1 {
	font-family: 'Playfair Display', serif;
	font-size: 3rem;
	margin-bottom: 15px;
}

.hero p {
	font-size: 1.3rem;
	margin-bottom: 25px;
}

.hero .btn {
	background: #0f766e;
	color: #fff;
	padding: 14px 30px;
	border-radius: 25px;
	font-weight: 600;
	display: inline-block;
	transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
}

.hero .btn:hover {
	transform: translateY(-3px) scale(1.03);
	background: #0c5f57;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* ================= COMMON ================= */
section {
	padding: 0;
}

.container {
	max-width: 1000px;
	margin: auto;
	padding: 45px 20px;
}

h2 {
	text-align: center;
	color: #0C4A6E;
	font-family: 'Playfair Display', serif;
	font-size: 2.2rem;
	margin-bottom: 30px;
}

/* ================= HIGHLIGHTS ================= */
.highlights {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
}

.highlight {
	background: #fff;
	padding: 25px;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s;
	cursor: default;
}

.highlight:hover {
	transform: translateY(-6px);
}

.highlight i {
	font-size: 36px;
	color: #0C4A6E;
	margin-bottom: 12px;
	display: block;
	transition: color 0.3s;
}

.highlight:hover i {
	color: #0f766e;
}

.highlight h4 {
	font-size: 16px;
	font-weight: 600;
	color: #333;
}

/* ================= AMENITIES ================= */
.amenities-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 25px;
}

.amenity-card {
	background: #fff;
	padding: 25px;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s, box-shadow 0.3s, color 0.3s;
	cursor: default;
}

.amenity-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.amenity-card i {
	font-size: 36px;
	color: #0C4A6E;
	margin-bottom: 12px;
	display: block;
	transition: color 0.3s;
}

.amenity-card:hover i {
	color: #0f766e;
}

.amenity-card h4 {
	font-size: 16px;
	font-weight: 600;
	color: #333;
}

/* ================= SLIDER ================= */
.slider-wrapper {
	position: relative;
	max-width: 1100px;
	margin: auto;
}

.slider {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-behavior: smooth;
	padding: 10px 40px;
}

.slider::-webkit-scrollbar {
	display: none;
}

.slide {
	min-width: 300px;
	height: 220px;
	border-radius: 14px;
	overflow: hidden;
	cursor: pointer;
}

.slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s;
	will-change: transform;
}

.slide:hover img {
	transform: scale(1.08);
}

/* Slider arrows */
.arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	border: none;
	padding: 12px 15px;
	border-radius: 50%;
	cursor: pointer;
	z-index: 10;
	transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
}

.arrow:hover {
	transform: translateY(-50%) scale(1.1);
	background: rgba(0, 0, 0, 0.85);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.left {
	left: 10px;
}

.right {
	right: 10px;
}

/* ================= LIGHTBOX ================= */
.lightbox {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(3px);
	justify-content: center;
	align-items: center;
	z-index: 99999;
}

.lightbox img {
	max-width: 90%;
	max-height: 80%;
}

.lightbox span {
	position: absolute;
	background: rgba(0, 0, 0, .6);
	color: #fff;
	padding: 12px 16px;
	border-radius: 50%;
	cursor: pointer;
}

.close {
	top: 20px;
	right: 25px;
}

.prev {
	left: 25px;
}

.next {
	right: 25px;
}

.caption {
	position: absolute;
	bottom: 40px;
	background: rgba(0, 0, 0, .6);
	color: #fff;
	padding: 10px 20px;
	border-radius: 20px;
}

/* ================= CONTACT ================= */
#contact {
	background: #f8fbfd;
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 35px;
	margin-top: 20px;
}

.contact-grid>div {
	background: #ffffff;
	padding: 30px;
	border-radius: 14px;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

#contact h2 {
	text-align: center;
	margin-bottom: 30px;
}

.contact-grid p,
.contact-grid li {
	font-size: 15px;
	line-height: 1.7;
	color: #333;
}

.contact-grid ul {
	list-style: none;
	padding: 0;
}

.contact-grid li {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
}

.contact-grid i {
	color: #0f766e;
	font-size: 18px;
	margin-right: 10px;
	min-width: 22px;
}

.contact-grid a {
	color: #0f766e;
	font-weight: 500;
}

.contact-grid a:hover {
	color: #0C4A6E;
	text-decoration: underline;
}

.contact-grid iframe {
	width: 100%;
	height: 250px;
	border-radius: 12px;
	border: none;
	margin-top: 15px;
}

/* ================= FOOTER ================= */
footer {
	background: #022c22;
	color: #fff;
	text-align: center;
	padding: 20px;
	transition: background 0.3s;
}

footer:hover {
	background: #014733;
}

/* ================= WHATSAPP ================= */
.whatsapp {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: #25d366;
	color: white;
	padding: 14px 20px;
	border-radius: 50px;
	font-weight: bold;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
	z-index: 999;
	transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.whatsapp:hover {
	transform: scale(1.08);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
	background: #1ebe5b;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
	nav {
		flex-direction: column;
	}

	.container {
		padding: 35px 16px;
	}

	.slide {
		min-width: 220px;
		height: 160px;
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}
}

/* ================= About Us ================= */
.about-text {
	font-size: 16px;
	line-height: 1.8;
	color: #333;
}

.about-text p {
	margin-bottom: 15px;
}