/*Import the fonts used*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;700&display=swap');
/*Basic reset*/
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/*Custom properties — Warm Sandton Palette (ported from gms/01_Core/styles.css.html,
  already approved for the GMS admin dashboard). This is the ONLY palette in the file —
  the previous purple/yellow/christmas tokens are retired.*/
:root {
    --ws-charcoal: #2d2a26;
    --ws-charcoal-light: #3d3935;
    --ws-terracotta: #c48f5e;
    --ws-brown: #a67844;
    --ws-brown-dark: #8a6235;
    --ws-cream: #faf8f5;
    --ws-cream-dark: #f2ede6;
    --ws-cream-light: #fdfcfa;
    --ws-green: #5a9e6f;
    --ws-green-light: #6db882;
    --ws-red: #d45d5d;

    --ws-radius-sm: 6px;
    --ws-radius-md: 10px;
    --ws-radius-lg: 14px;
    --ws-radius-pill: 50px;

    --ws-shadow-sm: 0 1px 3px rgba(45,42,38,0.06);
    --ws-shadow-hover: 0 6px 16px rgba(45,42,38,0.10);

    --ws-transition-fast: 150ms ease;
    --ws-transition-base: 250ms ease;

    --ws-brown-transparent: rgba(166, 120, 68, .7);
    --ws-brown-transparent-alt: rgba(166, 120, 68, 0.5);
    --ws-green-transparent: rgba(90, 158, 111, 0.2);
    --ws-gradient: linear-gradient(to right, var(--ws-terracotta), var(--ws-brown));
    --ws-gradient-alt: linear-gradient(to right, var(--ws-brown), var(--ws-terracotta));
    --ws-gradient-christmas: linear-gradient(to right, var(--ws-green), var(--ws-red));
    --ws-gradient-christmas-alt: linear-gradient(to right, var(--ws-red), var(--ws-green));
}

/*Global Style*/
html{
	font-size: 10px;
}

body{
	font-family: 'Inter', sans-serif;
	font-size: 1.6rem;
	color: var(--ws-charcoal);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
a{
	text-decoration: none;
	color: inherit;
}

ul{
	list-style: none;
}

section{
	padding: 5rem 0;
}

/*resuable content and styles*/
.container{
	width: 100%;
	max-width: 120rem;
	padding: 0 1.5rem;
	margin: 0 auto;
}

.btn{
	color: #fff;
	font-size: 1.3rem;
	font-weight: bold;
	text-transform: uppercase;
	padding: 0.5rem 3.5rem;
	border: none;
	border-radius: 10rem;
}

.form-btn{
	margin-top: 2.5rem;
	cursor: pointer;
}

.btn-gradient {
	background-image: var(--ws-gradient);
	margin: .5rem;
}

.btn-gradient:hover {
	background-image: var(--ws-gradient-alt);
}

.btn-purple {
	background-color: var(--ws-brown);
}

.btn-purple:hover {
	background-color: var(--ws-terracotta);
}

.dots {
	font-size: 1.4rem;
	margin-left: .5rem;
	opacity: .75;
}

.btn-gradient-christmas {
	background-image: var(--ws-gradient-christmas);
	margin: .5rem;
}

.btn-gradient-christmas:hover {
	background-image: var(--ws-gradient-christmas-alt);
}


/*header styles*/
.header{
	width: 100%;
	height: 6rem;
	display: flex;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	background-color: var(--ws-brown-transparent);
	z-index: 99;
	transition: background-color .5s, height .5s;
}

.header.active{
	background-color: var(--ws-brown);
}

/*header styles - nav*/
.nav{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo img{
	max-width: 80%;
	height: 47px;
}

.hamburger-menu{
	font-size: 2.6rem;
	color: #765b58;
	cursor: pointer;
	position: relative;
	z-index: 1500;
}

.hamburger-menu .fa-times{
	display: none;
}

.menu-open .hamburger-menu .fa-times{
	display: block;
}

.menu-open .hamburger-menu .fa-bars {
	display: none;
}

.nav-list{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: var(--ws-brown);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 99;
	opacity: 0;
	transform: scale(0);
	transition: opacity .5s;
}

.menu-open .nav-list{
	opacity: 1;
	transform: scale(1);
}

.nav-item:not(:last-child){
	margin-bottom: .5rem;
}

.nav-link{
	display: block;
	color: #fff;
	font-size: 2.6rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 3px;
	padding: 1rem;
	transition: color .3s, opacity .3s;
}

/*Hero section styles*/
.hero {
	width: 100%;
	height: 100vh;
	background: url("./images/Sandton_Lodge.jpg") center no-repeat;
	background-size: cover;
	display: flex;
	align-items: center;
	text-align: center;
	position: relative;
	z-index: 0;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: inherit;
	height: inherit;
	/*background-color: var(--ws-green-transparent);*/
	z-index: -1;
}

.main-heading{
	color: #fff;
	line-height: 1.1;
	text-shadow: 0 2px 2rem rgba(0,0,0,0.35);
	margin-bottom: 2.5rem;
}

.title{
	font-family: 'Playfair Display', serif;
	font-size: 4.8rem;
	font-weight: 600;
	text-transform: none;
	letter-spacing: -0.5px;
	line-height: 1.15;
}

.subtitle{
	font-size: 3.6rem;
	font-weight: 300;
	font-family: 'Inter', sans-serif;
	color: var(--ws-charcoal);
}



/*Booking section Styles*/
.booking{
	background-image: var(--ws-gradient);
}

.input-group{
	margin-bottom: 1.5rem;
}

.input-label{
	display: block;
	font-size: 1.3rem;
	text-transform: uppercase;
	color: #fff;
	font-weight: bold;
	margin-bottom: 1rem;
}

.input,
.options{
	outline: none;
	border: none;
	width: 100%;
	min-height: 4rem;
	padding: 1rem;
	font-weight: bold;
	color: #a5a5a5;
	letter-spacing: 2px;
	font-family: sans-serif;
	/*resize: none;*/
}

::placeholder{
	color: inherit;
}

/*Christmas Section*/
.christmas-btn-div {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
}

/*Featured Packages section styles*/

.section-head{
	text-align: center;
	margin-bottom: 5rem;
}

.heading {
	display: block;
	font-family: 'Playfair Display', serif;
	font-size: 3.6rem;
	font-weight: 600;
	text-transform: none;
	letter-spacing: -0.3px;
	color: var(--ws-charcoal);
	margin-bottom: 1.2rem;
}

.heading::after {
	content: '';
	display: block;
	width: 5rem;
	height: 3px;
	background-image: var(--ws-gradient);
	margin: 1rem auto 0;
	border-radius: 2px;
}

.sub-heading {
	font-size: 1.6rem;
	font-family: 'Barlow', sans-serif;
	font-weight: 400;
	color: #5a5a5a;
	line-height: 1.7;
	max-width: 65ch;
	margin-left: auto;
	margin-right: auto;
}

.room-tags {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin: 1.5rem auto 2rem;
}

.room-tags .tag {
	font-family: 'Inter', sans-serif;
	font-size: 1.3rem;
	font-weight: 500;
	padding: 0.5rem 1.4rem;
	border-radius: 50px;
	background: rgba(166, 120, 68, 0.08);
	color: #8a6235;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.room-tags .tag i {
	font-size: 1.1rem;
	opacity: 0.7;
}

.price-cards {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin: 0 auto 3rem;
	max-width: 50rem;
}

.price-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: rgba(166, 120, 68, 0.05);
	border: 1px solid rgba(166, 120, 68, 0.12);
	border-radius: 12px;
	padding: 2rem 3rem;
	min-width: 18rem;
}

.price-card-label {
	font-family: 'Inter', sans-serif;
	font-size: 1.2rem;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #888;
	margin-bottom: 0.5rem;
}

.price-card-amount {
	font-family: 'Playfair Display', serif;
	font-size: 2.2rem;
	font-weight: 700;
	color: #222;
}

.price-card small {
	font-size: 1.1rem;
	color: #999;
	margin-top: 0.3rem;
}

.price-card-amount + small + .price-card-amount {
	margin-top: 1.2rem;
	padding-top: 1.2rem;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.grid{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
	grid-gap: 2.5rem;
}

.grid-item{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.featured-packages{
	height: 35rem;
	color: #fff;
	padding: 1rem;
	position: relative;
	z-index: 0;
}

.featured-packages::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--ws-green-transparent);
	z-index: -1;
}

.package-image{
	width:100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
}

.grid-item-special{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.specials-image {
	max-width:400px;
	box-shadow: 0 0 0 0 black;
	cursor: pointer;
	filter: brightness(0.7);
	transition: 0.3s ease-in;
	border: 2px solid var(--ws-green);
}

.christmas-green-text {
	color: var(--ws-green);
}

.specials-image:hover {
	filter: brightness(1);
	transform: scale(1.1);
}

.popup-image {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.9);
	height: 100%;
	width: 100%;
	z-index: 100;
}

.popup-image span {
	position: absolute;
	top: 0;
	right: 10px;
	font-size: 40px;
	font-weight: bolder;
	color: #fff;
	cursor: pointer;
	z-index: 100
}

.popup-image img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 5px;
	height: 90%;
	width: 95%;
	object-fit: contain;
}

.package-name{
	font-family: 'Playfair Display', serif;
	font-size: 2.4rem;
	font-weight: 500;
	letter-spacing: 0.2px;
}

.package-price {
	font-family: 'Inter', sans-serif;
	font-size: 1.6rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	opacity: 0.9;
}

.package-price small {
	display: block;
	font-size: 0.85rem;
	font-weight: 400;
	opacity: 0.75;
	margin-top: 0.2rem;
}

.amenities{
	margin: 3rem 0 2.5rem;
	background-color: rgba(166,120,68,0.3)
}

/*For the special offer section style*/

.specials{
	background: linear-gradient(to right, rgba(90,158,111,0.8), rgba(212,93,93,0.8)),
		url("./images/outside-reception.jpg") bottom center no-repeat;
	background-size: cover;
}

.specials-content{
	background-color: #fff;
	text-align: center;
	padding: 5rem 1rem;
	position: relative;
	overflow: hidden;
}

.discount{
	background-color: var(--ws-green);
	position: absolute;
	top: 0;
	left: 0;
	padding: 1rem;
	font-weight: bold;
	text-transform: uppercase;
	outline: 2px solid var(--ws-green);
	outline-offset: .5rem;
}

.paragraph{
	color: #6b6b6b;
	margin-bottom: 2.5rem;
	padding: 2rem;
	font-size: 1.5rem;
	line-height: 1.8;
}

/*Rooms section styles*/

.rooms{
	background-color: #f2f6f9;
}

.image-wrap{
	position: relative;
	height: 25rem;
}

.image-wrap::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/*background-color: var(--ws-brown-transparent-alt);*/
}

.room-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.room-name{
	font-family: 'Playfair Display', serif;
	font-size: 2.2rem;
	font-weight: 500;
	background-color: var(--ws-green);
	color: #fff;
	padding: .6rem 2.2rem;
	position: absolute;
	left: 0;
	bottom: 2.5rem;
	z-index: 10;
	letter-spacing: 0.3px;
}
/*Contact section styles*/

.contact-content{
	display: flex;
	justify-content: center;

}

.traveler-wrap{
	display: none;
}

.contact-form{
	width: 100%;
	background-image: var(--ws-gradient);
	padding: 2.5rem;

}

.contact-form .input{
	display: block;
	background-color: transparent;
	color: #fff;
	font-weight: normal;
	border-bottom: 2px solid #fff;
	padding-left: 0;
}

 .bar{
	 display: block;
	 position: relative;
 }

.bar::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 3px;
	background-color: var(--ws-terracotta);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .5s;
}

.contact-form .input:focus + .bar::after{
	transform: scaleX(1);
}

/*General Amenities*/

.ga-amenities{
	margin: 1rem 0 2.5rem;
}

.gafeatured-packages{
	height: 35rem;
	color: var(--ws-charcoal);
	padding: 1rem;
	position: relative;
	z-index: 0;
}

.gafeatured-packages::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--ws-brown-transparent-alt);
	z-index: -1;
}

/*Footer section styles*/

.footer{
	padding: 5rem 0;
	background-color: var(--ws-brown);
	color: #fff;
}

.footer-content-brand{
	margin-bottom: 5rem;
}

.footer .paragraph{
	color: inherit;
}

.footer-heading{
	font-family: 'Playfair Display', serif;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 2.5rem;
	font-size: 2rem;
}

.social-media{
	display: flex;
}

.sm-link{
	width: 4rem;
	height: 4rem;
	border: 2px solid var(--ws-green);
	border-radius: 50%;
	display: flex;
	margin-right: 1rem;
	transition: background-color .5s;
}

.sm-link:hover{
	background-color: var(--ws-green);
	color: var(--ws-charcoal);

}
.sm-link i{
	margin: auto;
}

/*Media queries*/
@media screen and (min-width: 768px){
	/*Header Section styles*/
	.header{
		height: 10rem;
	}
	.header.active{
		height: 6rem;
	}
	/*Hero Section Styles*/
	.title{
		font-size: 5.6rem;
	}
	/*contact section styles*/
	.contact-content{
		justify-content: space-between;
	}
	.traveler-wrap{
		display: block;
		flex: 0 0 45%;
	}
	.traveler-wrap img{
		width:100%;
	}
	.contact-form{
		flex: 0 0 50%;
		align-self: flex-start;
	}
	.input-group-wrap{
		display: flex;
	}
	.input-group-wrap .input-group{
		width: 50%;
		margin-right: 2rem;
	}
	.input-group-wrap .input-group::after last-child {
		margin-right: 0;
	}

	/*footer section styles*/
	.footer{
		overflow-x: hidden;
	}
	.footer-content{
		display: flex;
	}
	.footer-content-brand{
		margin-bottom: 0;
		flex: 0 0 60%;
	}
	.footer .paragraph{
		margin-top: 2.5rem;
	}
	.footer-heading{
		margin-bottom: 5rem;
	}
	.social-media-wrap {
		flex: 0 0 40%;
		margin-left: 2.5rem;
	}
}

@media screen and (min-width: 1000px) {
	section:not(.booking){
		padding: 10rem 0;
	}

	/*header section styles*/
	.hamburger-menu{
		display: none;
	}
	.nav-list{
		position: initial;
		width: initial;
		height: initial;
		background-color: transparent;
		flex-direction: row;
		justify-content: initial;
		opacity: 1;
		transform: scale(1)
	}

	.nav-item:not(:last-child){
		margin-right: 3rem;
		margin-bottom: 0;
	}
	.nav-link {
		font-size: 1.3rem;
		font-weight: normal;
		transition: color .5s
	}

	.nav-link:hover{
		color: var(--ws-green)
	}

	/*Hero section styles*/
	.title{
		font-size: 7.2rem;
	}
	.sub-title{
		font-size: 4.6rem;
	}
	/*Booking section styles*/

	.booking .form{
		display: flex;
		justify-content: space-between;
	}
	.booking .input-group{
		margin-bottom: 0;
	}

	.book-form .input-group:first-child{
		flex: 0 0 20%;
	}
	.input,
	.options{
		min-width: 10rem;
	}

	/*Room section styles*/
	.room-grid{
		grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr));
		grid-gap: 8rem;
	}
	.featured-rooms{
		flex-direction: row;
		align-items: flex-start;
	}
	.room-info-wrap{
		margin-left: 1.5rem;
	}
	.popup-image img {
		height: 100%;
	}

	.specials-image:hover {
	transform: scale(1.5);
}
}

@media screen and (min-width: 1200px){
	.book-form .input-group:first-child {
		flex: 0 0 30%;
	}
}

/* ============================================
   Room-type pages (Phase 2). New component set,
   built entirely on the Warm Sandton tokens above.
   ============================================ */
.room-hero {
  width: 100%;
  min-height: 60rem;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.room-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(45,42,38,0.15), rgba(45,42,38,0.55));
}
.room-hero-overlay {
  position: relative;
  z-index: 1;
  color: var(--ws-cream);
}
.room-hero-overlay h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-shadow: 0 2px 2rem rgba(0,0,0,0.35);
}
.room-hero-tag {
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.room-overview {
  padding: 8rem 0;
}
.room-overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}
.room-gallery img {
  width: 100%;
  border-radius: var(--ws-radius-lg);
  box-shadow: var(--ws-shadow-hover);
}
.room-overview-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--ws-charcoal);
  margin-bottom: 1.5rem;
}
.room-desc {
  color: #5a5a5a;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.room-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}
.room-fact {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  color: var(--ws-charcoal);
}
.room-fact i {
  color: var(--ws-terracotta);
}
.room-booking {
  border-top: 1px solid var(--ws-cream-dark);
  padding-top: 2.5rem;
}

.room-card {
  background: var(--ws-cream-light);
  border-radius: var(--ws-radius-md);
  box-shadow: var(--ws-shadow-sm);
  padding: 2rem;
  transition: box-shadow var(--ws-transition-base);
}
.room-card:hover {
  box-shadow: var(--ws-shadow-hover);
}

.rate-card {
  background: var(--ws-cream-dark);
  border-radius: var(--ws-radius-md);
  padding: 1.5rem 2rem;
}
.rate-card-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--ws-cream-light);
  color: var(--ws-charcoal);
}
.rate-card-row:last-child {
  border-bottom: none;
}

.availability-note {
  color: var(--ws-brown-dark);
  background: var(--ws-cream-dark);
  padding: 1rem 1.5rem;
  border-radius: var(--ws-radius-sm);
  text-align: center;
}

.cta-whatsapp {
  display: inline-block;
  background: var(--ws-green);
  color: var(--ws-cream-light);
  padding: 1.2rem 2.4rem;
  border-radius: var(--ws-radius-pill);
  font-weight: 600;
  transition: background var(--ws-transition-fast);
}
.cta-whatsapp:hover {
  background: var(--ws-green-light);
}

.yoco-note {
  color: var(--ws-charcoal-light);
  font-size: 1.4rem;
  margin-top: 1rem;
}

.room-extras {
  background-color: #f2f6f9;
  padding: 8rem 0;
}
.room-extras-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.extras-card {
  background: var(--ws-cream-light);
  border: 1.5px solid var(--ws-cream-dark);
  border-radius: var(--ws-radius-lg);
  padding: 3rem;
}
.extras-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--ws-charcoal);
  margin-bottom: 2rem;
  text-align: center;
}
.extras-card ul {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.extras-card li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.4rem;
  color: var(--ws-charcoal-light);
}
.extras-card li i {
  color: var(--ws-green);
}

.room-pricing {
  padding: 6rem 0;
  text-align: center;
}

.other-rooms {
  padding: 6rem 0 8rem;
}
.other-rooms-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.other-room-link {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 0.9rem 2rem;
  border-radius: var(--ws-radius-pill);
  background: var(--ws-cream-dark);
  color: var(--ws-brown-dark);
  transition: background var(--ws-transition-fast), color var(--ws-transition-fast);
}
.other-room-link:hover {
  background: var(--ws-brown);
  color: var(--ws-cream-light);
}

@media screen and (min-width: 768px) {
  .room-overview-grid {
    grid-template-columns: 1fr 1fr;
  }
  .room-extras-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 768px) {
  .room-hero {
    min-height: 40rem;
  }
  .room-hero-overlay h1 {
    font-size: 3rem;
  }
  .room-facts {
    grid-template-columns: 1fr;
  }
}
