@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
/* CSS Document */

/* ---------------------------------------------
   DESIGN TOKENS
   Same system as main-2.css, so every page on the
   site shares one heading font, one body font, and
   one color palette.
--------------------------------------------- */
:root {
	--font-heading: 'Quicksand', sans-serif;
	--font-body: 'Lato', sans-serif;

	--color-primary: midnightblue;
	--color-text: #333333;
	--color-muted: #5a6472;
	--color-accent: goldenrod;

	--panel-gradient: linear-gradient(135deg, #d8e6f5, #edf5fc);
	--panel-radius: 18px;
	--panel-shadow: 0 8px 20px rgba(0,0,0,.12);

	--card-radius: 15px;
	--card-shadow: 0 5px 15px rgba(0,0,0,.08);
}

html, body {
	max-width: 100%;
	overflow-x: hidden;
}

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--color-text);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

/* ---------------------------------------------
   HEADER / NAV
   Matches index-2.html exactly, so the nav looks
   and behaves identically across pages.
--------------------------------------------- */
header {
	padding: 20px 0 10px;
}

.wrapper-text {
	max-width: 1200px;
	margin: 0 auto;
	
}

#header-nav ul {
	font-family: var(--font-body);
	margin-left: 0px;
	margin-top: -7px;
	padding: 0;
	list-style: none;
}

#header-nav li {
	margin-bottom: 0;
	list-style: none;
	display: inline-block;
	padding: 20px;
}

#header-nav li a {
	text-decoration: none;
	font-size: 22px;
	font-weight: 700;
	color: var(--color-primary);
	border: 2px solid transparent;
	margin-right: 25px;
}

#header-nav li a:hover {
	cursor: pointer;
	font-weight: 700;
	border: 2px solid var(--color-accent);
	border-radius: 10px;
	padding: 5px;
	transition: 0.2s linear;
}

h3 {
	color: var(--color-primary);
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 40px;
	margin-left: 100px;
	margin-top: 50px;
	margin-bottom: 50px;
}

/* ---------------------------------------------
   AMENITIES + GALLERY
--------------------------------------------- */
.content-section {
	display: flex;
	gap: 60px;
	align-items: flex-start;
	max-width: 1300px;
	margin: 0 auto 60px;
	padding: 0 100px;
	box-sizing: border-box;
}

.text-content {
	flex: 1;
	background: var(--panel-gradient);
	border-radius: var(--panel-radius);
	box-shadow: var(--panel-shadow);
	padding: 30px 40px;
	box-sizing: border-box;
}

.text-content h4 {
	font-family: var(--font-heading);
	color: var(--color-primary);
	font-size: 32px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0 0 50px;
}

ul {
	font-family: var(--font-body);
	font-size: 20px;
	color: var(--color-text);
	margin: 0;
	padding-left: 16px;
}

ul li {
	margin-bottom: 15px;
}

.gallery {
	flex: 2;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}

.gallery img {
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
	border-radius: var(--card-radius);
	box-shadow: var(--card-shadow);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
	transform: scale(1.05);
	box-shadow: 0 10px 22px rgba(0,0,0,.15);
}

/* ---------------------------------------------
   FOOTER / COPYRIGHT
--------------------------------------------- */
#copyright {
	text-align: center;
	font-family: var(--font-body);
	font-size: 14px;
	color: var(--color-muted);
	margin: 0;
	padding: 30px 0;
}

/* ---------------------------------------------
   RESPONSIVE
--------------------------------------------- */
@media (max-width: 900px) {
	#header-nav ul {
		margin-left: 20px;
	}

	#header-nav li {
		padding: 10px;
	}

	#header-nav li a {
		font-size: 18px;
		margin-right: 10px;
	}

	h3 {
		font-size: 28px;
		margin-left: 20px;
	}

	.content-section {
		padding: 0 20px;
	}
}

@media (max-width: 768px) {
	.content-section {
		flex-direction: column;
		gap: 30px;
	}

	.gallery {
		grid-template-columns: repeat(2, 1fr);
	}

	.text-content {
		padding: 20px;
	}
}