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

body {
	font-family: 'Inter';
	background: #fafafa;
	color: #fff;
	line-height: 1.6;
	margin: 0;
}

/* ========================= Header ========================= */
header,
.site-header {
	position: fixed;

	width: 100%;
	background: rgba(13, 27, 42, 0.8);
	backdrop-filter: blur(8px);
	flex-direction: column;
	align-items: center;
	padding: 1rem 3rem;
	z-index: 100;
	transition: all 0.3s ease;
	display: flex;

}

.brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .5rem;
	margin-bottom: 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.brand img,
.logo {
	width: 150px;
	height: 150px;
}
nav,
.main-nav {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem;
}

nav a,
.main-nav a {
	text-decoration: none;
	margin: 0 1rem;
	color: var(--champagne);
	font-size: .9rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: color .25s;
	padding: .5rem .75rem;
	border-radius: 4px;
	font-weight: 500;
	position: relative;
}

nav a:hover,
nav a.active,
.main-nav a:hover,
.main-nav a.active {
	color: #c28e0e;

}

nav .btn-book {
	background: #c28e0e;
	color: #fff;
	padding: .5rem 1rem;
	border-radius: 20px;
	font-weight: 600;
}

nav .btn-book:hover {
	background: #a87400;
}

/* =========================
   Hero Section
   ========================= */
.hero {
	padding-top: 100px;
	/* Matches header height */
	height: 750px;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	position: relative;
}

header {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}


.main-nav {
	display: flex;
	justify-content: center;
	gap: 2rem;
}


.hero::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.45);
	/* dark overlay for readability */
}

.hero-content {
	position: relative;
	z-index: 1;
	background: rgba(0, 0, 0, 0.35);
	padding: 1.5rem 2rem;
	border-radius: 10px;
	animation: fadeInUp 1.5s ease forwards;
}

/* Headline text */
.hero-content h2 {
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 1px;
	margin: 0 0 0.5rem;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
	animation: glow 3s ease-in-out infinite alternate;
}

/* Sub tagline */
.hero-content .slogan {
	font-size: 1.1rem;
	font-style: italic;
	letter-spacing: 0.5px;
	color: #f5f5f5;
	opacity: 0.9;
}

/* Fade-up animation */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}


/* ========================= Sections Headings ========================= */
.section-heading {
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	color: #333;
	margin: 2rem 0 1.5rem;
	letter-spacing: 1px;
	position: relative;
}

.section-heading::after {
	content: "";
	display: block;
	width: 80px;
	height: 4px;
	background: #c28e0e;
	margin: 0.5rem auto 0;
	border-radius: 2px;
}

.featured-room {
	margin-top: 100px;
}

/* ========================= Rooms ========================= */
.rooms {
	padding: 6rem 3rem;
	background: #fafafa;
	text-align: center;
}

.rooms h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2.2rem;
	margin-bottom: 2rem;
	color: #0d1b2a;
}

.room-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.room,
.card,
.offer-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
	transition: transform .3s;
	text-align: center;
}

.room:hover,
.card:hover,
.offer-card:hover {
	transform: translateY(-5px) scale(1.02);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.room img,
.card-img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.card:hover .card-img {
	transform: scale(1.05);
}

.room .info,
.card-content {
	padding: 1.5rem;
}

.room h3,
.card h3,
.offer-card h3 {
	font-size: 1.2rem;
	margin-bottom: .5rem;
	color:#0d1b2a;
}

.room p,
.card p,
.offer-card p {
	font-size: .95rem;
	margin-bottom: 1rem;
	color: #555;
}

.room a {
	text-decoration: none;
	color: #c28e0e;
	font-weight: 600;
}

.price {
	font-weight: 700;
	margin-top: .75rem;
	color: #c28e0e;
	font-size: 1.1rem;
}

/* ========================= Experiences & Offers ========================= */
.experiences,
.offers {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	background: #fff;
	padding: 6rem 3rem;
	gap: 3rem;
	justify-content: center;
}

.experiences img {
	flex: 1;
	max-width: 500px;
	border-radius: 16px;
}

.experiences .text {
	flex: 1;
}

.experiences h2,
.offer-card h3 {
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	margin-bottom: 1rem;
	color:#0d1b2a;
}

.experiences a {
	background: #c28e0e;
	padding: .6rem 1.2rem;
	border-radius: 25px;
	color: #fff;
	text-decoration: none;
}


/*footer*/
.footer {
  background: #0d1b2a;
  color: #fff;
  padding: 40px 20px;
  font-family: "Segoe UI", sans-serif;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}
.footer-section h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #f5e6ca;
}
.footer-section p,
.footer-section a {
  font-size: 14px;
  color: #ddd;
  text-decoration: none;
}
.footer-section a:hover {
  color: #c28e0e;
}
.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section ul li {
  margin-bottom: 8px;
}
.social-links a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  font-size: 16px;
}
.contact-form input,
.contact-form textarea,
.newsletter input {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: none;
  border-radius: 6px;
}
.contact-form button,
.newsletter button {
  background: #c28e0e;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
}
.contact-form button:hover,
.newsletter button:hover {
  background: #a3720c;
}
.footer-bottom {
  text-align: center;
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 13px;
}

/* Card Container */
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}


.card {
  flex: 1 1 280px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards;
  transition: transform .3s ease, box-shadow .3s ease;
}

.card:nth-child(1) { animation-delay: .3s; }
.card:nth-child(2) { animation-delay: .6s; }
.card:nth-child(3) { animation-delay: .9s; }

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.card:hover .card-img { transform: scale(1.05); }

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .4s ease;
}

.card h3 {
  margin: 1rem 0 .5rem;
  font-size: 1.25rem;
  color: #333;
}
.card p {
  margin: .25rem 0;
  color: #555;
}
.price {
  margin-top: .75rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #c28e0e;
}

/* Animation */
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}


.offers {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #fafafa;
	padding: 4rem 2rem;
	gap: 2rem;
}

.offer-cards {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	width: 100%;
	max-width: 900px;
}

.offer-card {
	background: #fff;
	border-radius: 12px;
	padding: 1.8rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-align: center;
	border-left: 4px solid #c28e0e;
}

.offer-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.offer-card h3 {
	font-family: 'Playfair Display', serif;
	font-size: 1.6rem;
	color: #0d1b2a;
	margin-bottom: 0.6rem;
}

.offer-card p {
	font-size: 1.05rem;
	color: #555;
	line-height: 1.6;
}

.offer-card strong {
	color: gold;
}

/* Optional subtle animation */
.offer-card {
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.8s ease forwards;
}
.offer-card:nth-child(1) { animation-delay: 0.2s; }
.offer-card:nth-child(2) { animation-delay: 0.4s; }
.offer-card:nth-child(3) { animation-delay: 0.6s; }
.offer-card:nth-child(4) { animation-delay: 0.8s; }
.offer-card:nth-child(5) { animation-delay: 1s; }
