/* Main Wrapper */
.scm-colony-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	font-family: 'Open Sans', Arial, sans-serif;
	color: #333;
	border: 1px solid #ddd;
	background: #fff;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Header */
.scm-header {
	background-color: #222;
	color: #fff;
	text-align: center;
	padding: 20px 10px;
}

.scm-header h2 {
	margin: 0;
	font-size: 3em;
	font-weight: bold;
	color: #fff;
	text-transform: uppercase;
}

.scm-address {
	font-size: 14px;
	margin-top: 10px;
	color: #ccc;
	text-transform: uppercase;
}

/* Marquee / Notice Bar */
.scm-notice-bar {
	background-color: #fff;
	color: #d32f2f;
	text-align: center;
	padding: 15px;
	font-weight: bold;
	font-size: 1.2em;
	border-bottom: 5px solid #d32f2f;
}

/* Layout Grid */
.scm-grid-layout {
	display: flex;
	flex-wrap: wrap;
	padding: 20px;
	gap: 20px;
}

.scm-left-col {
	flex: 0 0 300px;
	max-width: 300px;
}

.scm-right-col {
	flex: 1;
}

/* Compass */
.scm-compass {
	text-align: center;
	margin-bottom: 20px;
}

.scm-compass img {
	max-width: 150px;
}

/* Facilities List */
.scm-facilities h3 {
	display: none;
	/* Hidden as per design usually just list */
}

.scm-facility-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.scm-facility-list li {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
	font-size: 16px;
	font-weight: 600;
	color: #333;
}

.scm-check-icon {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 24px;
	height: 24px;
	background-color: #7CB342;
	color: #fff;
	font-size: 14px;
	margin-right: 10px;
	border-radius: 3px;
}

/* Map */
.scm-layout-map img {
	width: 100%;
	height: auto;
	box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

/* Plot Table Section */
.scm-plots-section {
	padding: 20px;
}

.scm-legend {
	display: flex;
	gap: 20px;
	margin-bottom: 15px;
	font-weight: bold;
}

.scm-legend-item {
	display: flex;
	align-items: center;
}

.scm-badge-box {
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-right: 8px;
	border: 1px solid #ccc;
	border-radius: 3px;
}

/* Plot Table Header Title */
.scm-table-header-title {
	background: #FFD54F;
	color: #000;
	font-weight: bold;
	padding: 10px 20px;
	border-radius: 8px 8px 0 0;
	display: inline-block;
	font-size: 1.2em;
}

.scm-plot-table {
	width: 100%;
	border-collapse: collapse;
	font-family: sans-serif;
}

.scm-plot-table th {
	background-color: #eee;
	color: #333;
	padding: 10px;
	text-align: center;
	border: 1px solid #ddd;
}

.scm-plot-table td {
	padding: 8px;
	text-align: center;
	border: 1px solid #ddd;
	font-weight: bold;
}

/* Status dots or text? Design shows Text "Available" / "Sold Out" */
/* We will stick to text for clarity based on photo 2 */

/* Contact Section */
.scm-contact-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 30px;
	background-color: #fff;
}

.scm-contact-box {
	background-color: #FFF59D;
	/* Light Yellow */
	border: 1px solid #FBC02D;
	padding: 20px 40px;
	text-align: center;
	border-radius: 10px;
	margin-bottom: 20px;
	width: 100%;
	max-width: 600px;
}

.scm-contact-title {
	font-size: 1.2em;
	font-weight: bold;
	margin-bottom: 5px;
}

.scm-phone {
	font-size: 2em;
	font-weight: 900;
	color: #333;
}

.scm-book-btn {
	background-color: #689F38;
	color: #fff !important;
	font-size: 1.5em;
	font-weight: bold;
	text-decoration: none;
	padding: 15px 40px;
	border-radius: 50px;
	display: inline-block;
	transition: background 0.3s;
	text-transform: uppercase;
}

.scm-book-btn:hover {
	background-color: #558B2F;
}

/* Footer Checks */
.scm-footer-checks {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	margin-top: 20px;
}

.scm-footer-item {
	display: flex;
	align-items: center;
	font-size: 14px;
}

.scm-check-small {
	color: #689F38;
	margin-right: 5px;
	font-weight: bold;
}

@media (max-width: 768px) {
	.scm-left-col {
		flex: 1;
		max-width: 100%;
		order: 2;
		/* Map first usually? Or keep standard */
	}

	.scm-header h2 {
		font-size: 2em;
	}
}

/* Archive Card Styles */
.scm-colony-card {
	border-radius: 15px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	/* Soft shadow like example */
	margin-bottom: 25px;
	transition: transform 0.2s;
	display: flex;
	flex-direction: column;
	text-align: center;
}

.scm-colony-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.scm-card-image img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
	border-radius: 0;
	/* Image touches corners */
}

.scm-card-content {
	padding: 20px 15px;
}

.scm-card-title {
	margin: 0 0 10px;
	font-size: 1.3em;
	font-weight: 700;
	color: #000;
}

/* Hide address on card if we want to match valid DJ style simplified */
.scm-card-address {
	display: none;
}

.scm-card-btn {
	display: inline-block;
	background: #222;
	/* Black button */
	color: #fff !important;
	text-decoration: none;
	padding: 10px 25px;
	border-radius: 50px;
	/* Pill shape */
	font-size: 0.85em;
	font-weight: bold;
	text-transform: uppercase;
	margin-top: 10px;
	border: 2px solid #222;
	transition: all 0.3s;
}

.scm-card-btn:hover {
	background: #444;
	color: #fff;
	border-color: #444;
}