/*
==================================================
*   GLOBAL RESET & LAYOUT
==================================================
*/
:root {
	font-size: 12px;
	--fb-blue: hsl(221, 44%, 41%);
	--purple: hsl(240, 20%, 50%);
	/* #669 */
	--purple-darker: hsl(240, 20%, 40%);
	--orange: hsl(36, 100%, 50%);
	/* #F90 */
	--teal-dark: hsl(198, 50%, 16%);
	--teal-light: hsl(191, 22%, 36%);
	--blue-dark: hsl(240, 64%, 27%);
	font-family: Verdana, Helvetica, sans-serif;
}

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

body {
	background: var(--teal-light);
	margin: 0;
	padding: 0;
	font-family: Verdana, Helvetica, sans-serif;
	color: #333;
}

/* The main "Page" wrapper */
.container {
	background-color: #fff;
	max-width: 1000px;
	margin: 0 auto;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

a {
	text-decoration: none;
	color: #191970;
}

a:hover {
	color: var(--orange);
}

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

header {
	background-color: #fff;
	padding: 10px 0;
}

/*
==================================================
*   Navigation (#topnav)
==================================================
*/

#topnav {
	background: var(--orange);
	border: solid var(--purple);
	border-width: 1px 0px;
}

#topnav ul {
	list-style: none;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 1rem;
	display: grid;
	grid-template-columns: repeat(11, 1fr);
}

#topnav ul li {
	display: inline-flex;
	justify-content: center;
	position: relative;
}

#topnav ul li:hover {
	background: var(--purple);
	cursor: pointer;
}

#topnav ul a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	flex: 1 1 auto;
	padding: 0.4rem 0;
	text-align: center;
	text-decoration: none;
	color: var(--purple);
}

#topnav ul li:hover a {
	color: var(--orange);
}

#topnav ul li a.active {
	color: var(--orange);
	background: var(--purple);
}

/* Separator lines */
#topnav ul li:not(:last-of-type)::after {
	content: "";
	background-color: var(--purple);
	width: 1px;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
}

/*
==================================================
*   MAIN GRID STRUCTURE
==================================================
*/
.main-grid {
	display: grid;
	grid-template-columns: 170px 1fr 230px;
	gap: 0;
	background-color: #333;
	padding-bottom: 2px;
}

/*
==================================================
*   SIDEBAR STYLES (Formerly ".left column")
==================================================
*/
.sidebar-left,
.sidebar-right {
	background-color: #f5f5f5;
	font-family: Verdana, Helvetica, sans-serif;
	color: #333;
	padding: 10px;
}

/* Sidebar Menu Links */
.sidebar-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	background-color: #FFF;
}

.sidebar-menu li {
	background-color: #FFF;
	border-bottom: 2px solid var(--orange);
}

.sidebar-menu li a {
	display: block;
	font-size: 1.1rem;
	padding: 0.4em 0 0.4em 0.4em;
	color: #036;
	text-decoration: none;
}

.sidebar-menu li a:hover {
	color: hsl(240, 20%, 30%);
	background-color: #eee;
}

/* Sidebar Header Image Container */
.sidebar-header {
	background-color: #666699;
	padding: 5px;
	text-align: center;
}

.sidebar-right {
	display: flex;
	flex-direction: column;
	gap: 2em;
}

.sidebar-right div img {
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

/*
==================================================
*   MAIN CONTENT AREA
==================================================
*/
.content-area {
	background-color: #FFF;
	padding: 20px;
	font-family: Verdana, Helvetica, sans-serif;
}

/* Headlines */
.storyheader {
	color: black;
	font-weight: bold;
	font-size: 2.2em;
	font-family: Arial, Helvetica, sans-serif;
	margin-top: 0;
	line-height: 1.2;
	text-align: center;
}

.lodging-header {
	display: flex;
	justify-content: center;
}

/* Body Copy */
.storytext {
	color: #000;
	font-family: "Times New Roman", Georgia, serif;
	line-height: 1.5;
	margin-bottom: 15px;
}

.section-links {
	margin-left: 1em;
}

.section-links li {
	list-style: none;
	padding: 0.2em 0;
	margin: 0;
}

.section-links a {
	font-size: 1.2rem;
}

/*
==================================================
*   LODGING LISTINGS (The PHP Loop items)
==================================================
*/
#lodging h2 {
	background: #EEE;
	padding: 10px;
	font-size: 1.8rem;
	font-family: Verdana, sans-serif;
	margin-top: 30px;
}

/* Individual Listing Container */
.agent {
	padding: 15px 0;
	border-bottom: 1px solid #DDD;
}

.agent h3 {
	font-size: 14px;
	color: #036;
	margin: 0 0 5px 0;
}

/* Address Styling */
.agent address {
	font-style: normal;
	padding-left: 0;
	margin-bottom: 5px;
	display: block;
	color: #555;
}

/* Data Tables inside Listings */
.agent table {
	margin-top: 5px;
	/* width: 100%; */
}

.agent table td {
	color: #333;
	padding: 2px 5px;
	vertical-align: top;
}

.agent table td i {
	color: #666;
	font-weight: bold;
	font-style: normal;
}

/*
==================================================
*   FOOTER
==================================================
*/
footer {
	background-color: #666699;
	color: white;
	text-align: center;
	padding: 15px;
	font-size: 10px;
	font-family: Verdana, sans-serif;
}

footer a {
	color: #fff;
	text-decoration: underline;
}

/*
==================================================
*   UTILITIES & RESPONSIVE
==================================================
*/
.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.flex-between {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 10px;
}

.bold {
	font-weight: 600;
}

.my-1 {
	margin: 1rem 0;
}
.my-2 {
	margin: 2rem 0;
}
.mt-1 {
	margin-top: 1rem;
}
.mt-2 {
	margin-top: 2rem;
}
.mb-1 {
	margin-bottom: 1rem;
}
.mb-2 {
	margin-bottom: 2rem;
}

.py-1 {
	padding: 1rem 0;
}
.py-2 {
	padding: 2rem 0;
}
.pt-1 {
	padding-top: 1rem;
}
.pt-2 {
	padding-top: 2rem;
}
.pb-1 {
	padding-bottom: 1rem;
}
.pb-2 {
	padding-bottom: 2rem;
}

.font-2rem {
	font-size: 2rem;
}

ul {
    list-style-type: none; /* Remove default bullets */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
}

ul.bullets li::marker {
    content: '•';
    font-size: 1rem;
}

ul.bullets li::before {
    /* Controls spacing from bullet */
    content: '';
    margin-left: 6px;
}



/* Mobile View */
@media (max-width: 768px) {
	.main-grid {
		grid-template-columns: 1fr;
	}

	.sidebar-left,
	.sidebar-right {
		order: 2;
	}

	.content-area {
		order: 1;
	}

	.feature-box {
		flex-direction: column;
	}

	.feature-divider {
		width: 100%;
		height: 1px;
		margin: 15px 0;
	}
}