@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap");

:root {
	/* Colors */
	--primary-color: #0b1f38; /* Dark Blue - Elegant marine vibe */
	--accent-color: #d4af37; /* Gold/Sand - Luxury */
	--text-dark: #333333;
	--text-light: #ffffff;
	--bg-light: #f9f9f9;
	--transition: all 0.3s ease-in-out;

	/* Typography */
	--font-heading: "Playfair Display", serif;
	--font-body: "Montserrat", sans-serif;
}

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

body {
	font-family: var(--font-body);
	color: var(--text-dark);
	line-height: 1.6;
	background-color: var(--bg-light);
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	font-weight: 400;
}

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

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

/* Navbar */
header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	padding: 20px 0;
	transition: var(--transition);
}

header.scrolled {
	background-color: var(--primary-color);
	padding: 10px 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo h1 {
	color: var(--text-light);
	font-size: 1.8rem;
	letter-spacing: 2px;
}

.header-logo {
	max-height: 50px;
	width: auto;
	transition: var(--transition);
}

header.scrolled .header-logo {
	max-height: 40px;
}

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

.nav-links li a {
	color: var(--text-light);
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: var(--transition);
}

.nav-links li a:hover,
.nav-links li a.active {
	color: var(--accent-color);
}

/* Hamburger */
.hamburger {
	display: none;
	cursor: pointer;
	flex-direction: column;
	gap: 5px;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background-color: var(--text-light);
	transition: var(--transition);
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 12px 30px;
	background-color: var(--accent-color);
	color: var(--text-light);
	font-family: var(--font-body);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	border: 1px solid var(--accent-color);
	cursor: pointer;
	transition: var(--transition);
}

.btn:hover {
	background-color: transparent;
	color: var(--accent-color);
}

.btn-outline {
	background-color: transparent;
	color: var(--text-light);
	border: 1px solid var(--text-light);
}

.btn-outline:hover {
	background-color: var(--text-light);
	color: var(--primary-color);
}

/* Hero Sections */
.hero {
	height: 100vh;
	min-height: 500px;
	background-size: cover;
	background-position: center;
	background-attachment: scroll;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.hero::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(11, 31, 56, 0.5); /* Primary color overlay */
}

.hero-content {
	position: relative;
	z-index: 1;
	color: var(--text-light);
}

.hero-content h1 {
	font-size: 4rem;
	margin-bottom: 20px;
}

.hero-content p {
	font-size: 1.2rem;
	margin-bottom: 30px;
	font-family: var(--font-body);
	font-weight: 300;
}

.hero-small {
	height: 50vh;
}

/* Sections */
.section {
	padding: 80px 0;
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.section-subtitle {
	text-align: center;
	font-size: 1.1rem;
	color: #666;
	margin-bottom: 50px;
}

/* Grid Layouts */
.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

/* Cards (Rooms/Services) */
.card {
	background: #fff;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: var(--transition);
}

.card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.card-content {
	padding: 25px;
	text-align: center;
}

.card-content h3 {
	font-size: 1.5rem;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.card-content p {
	color: #666;
	margin-bottom: 20px;
	font-size: 0.95rem;
}

/* Gallery for Single Room */
.room-gallery {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.main-image {
	width: 100%;
	height: 450px;
	object-fit: cover;
	border-radius: 8px;
}
.thumbnail-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
}
.thumbnail {
	width: 100%;
	height: 90px;
	object-fit: cover;
	border-radius: 8px;
	cursor: pointer;
	opacity: 0.5;
	transition: var(--transition);
}
.thumbnail:hover,
.thumbnail.active {
	opacity: 1;
}

/* WhatsApp Button */
.whatsapp-btn {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background-color: #25d366;
	color: white;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 35px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	z-index: 1000;
	transition: var(--transition);
}

.whatsapp-btn:hover {
	transform: scale(1.1);
	background-color: #128c7e;
}

.whatsapp-btn img {
	width: 35px;
	height: 35px;
}

/* Footer */
footer {
	background-color: var(--primary-color);
	color: var(--text-light);
	padding: 50px 0 20px;
	text-align: center;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
	text-align: left;
}

.footer-col h4 {
	color: var(--accent-color);
	font-size: 1.2rem;
	margin-bottom: 20px;
}

.footer-col ul {
	list-style: none;
}

.footer-col ul li {
	margin-bottom: 10px;
}

.footer-col ul li a:hover {
	color: var(--accent-color);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
	font-size: 0.9rem;
}

/* Media Queries */
@media (max-width: 768px) {
	.nav-links {
		position: absolute;
		top: 100%;
		right: -100%;
		background-color: var(--primary-color);
		flex-direction: column;
		width: 250px;
		height: 100vh;
		padding: 30px;
		transition: 0.5s;
	}

	.nav-links.active {
		right: 0;
	}

	.hamburger {
		display: flex;
	}

	.hero-content h1 {
		font-size: 2.5rem;
	}
}

/* Header Booking Button */
.btn-book-header {
	background-color: var(--accent-color);
	color: var(--text-light) !important;
	padding: 8px 20px;
	border-radius: 4px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: var(--transition);
	border: 2px solid var(--accent-color);
	margin-left: 15px;
}

.btn-book-header:hover {
	background-color: transparent;
	color: var(--accent-color) !important;
}

@media (max-width: 768px) {
	.btn-book-header {
		display: inline-block;
		margin-left: 0;
		margin-top: 15px;
		text-align: center;
		width: max-content;
	}
}
