:root {
	--bcc-primary: #8A5100;
	--bcc-primary-hover: #A66200;
	--bcc-secondary: #25292B;
	--bcc-text: #ffffff;
	--bcc-text-light: #cccccc;
	--bcc-bg: #191C1D;
	--bcc-border: #2e3335;
	--bcc-radius: 8px;
	--bcc-shadow: 0 4px 12px rgba(0,0,0,0.3);
	--bcc-shadow-hover: 0 10px 24px rgba(138,81,0,0.25);
	--bcc-transition: all 0.3s ease;
	--bcc-font: 'Poppins', sans-serif;
}

.bcc-btn {
	display: inline-block;
	padding: 10px 20px;
	background: var(--bcc-primary);
	color: var(--bcc-bg);
	border: none;
	border-radius: var(--bcc-radius);
	cursor: pointer;
	text-decoration: none;
	font-weight: 600;
	transition: var(--bcc-transition);
	text-align: center;
}
.bcc-btn:hover { background: var(--bcc-primary-hover); color: var(--bcc-bg); }
.bcc-btn-outline { background: transparent; border: 2px solid var(--bcc-primary); color: var(--bcc-primary); }
.bcc-btn-outline:hover { background: var(--bcc-primary); color: var(--bcc-bg); }

/* Form */
.bcc-form-container { max-width: 840px; margin: 0 auto; background: var(--bcc-bg); padding: 35px; border-radius: var(--bcc-radius); box-shadow: var(--bcc-shadow); border: 1px solid var(--bcc-border); }
.bcc-form-section { margin-bottom: 30px; background: rgba(255,255,255,0.02); padding: 25px; border-radius: var(--bcc-radius); border: 1px solid var(--bcc-border); }
.bcc-section-title { font-size: 1.25rem; margin-top: 0; margin-bottom: 20px; color: var(--bcc-primary); border-bottom: 1px dashed var(--bcc-border); padding-bottom: 10px; font-weight: 700; }
.bcc-form-group { margin-bottom: 20px; }
.bcc-form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--bcc-text); }
.bcc-form-group input[type="text"], .bcc-form-group input[type="email"], .bcc-form-group input[type="tel"], .bcc-form-group input[type="url"], .bcc-form-group textarea, .bcc-select {
	width: 100%; padding: 12px 16px; border: 1px solid var(--bcc-border); border-radius: var(--bcc-radius); background: var(--bcc-secondary); color: var(--bcc-text); font-family: var(--bcc-font); box-sizing: border-box;
}
.bcc-form-group input:focus, .bcc-form-group textarea:focus, .bcc-select:focus { outline: none; border-color: var(--bcc-primary); }
.bcc-form-row { display: flex; flex-wrap: wrap; gap: 15px; }
.bcc-form-row .bcc-form-group { flex: 1; min-width: 220px; }
.bcc-form-actions { display: flex; justify-content: space-between; margin-top: 30px; }

/* Grid / List */
/* Search & Directory Layout */
.bcc-directory-header { display: flex; flex-direction: column; gap: 20px; margin-bottom: 30px; }
@media (min-width: 768px) { .bcc-directory-header { flex-direction: row; justify-content: space-between; align-items: center; } }
.bcc-search-bar { display: flex; flex-wrap: wrap; gap: 12px; width: 100%; align-items: center; }
.bcc-search-group { flex: 1; min-width: 180px; }
.bcc-search-btn-group { flex: 0 0 auto; min-width: 120px; }
.bcc-directory-controls { display: flex; justify-content: space-between; align-items: center; width: 100%; }

.bcc-list-view { display: flex; flex-direction: column; gap: 24px; }

/* List View Card Design */
.bcc-card { background: var(--bcc-bg); border: 1px solid var(--bcc-border); border-radius: var(--bcc-radius); overflow: hidden; box-shadow: var(--bcc-shadow); transition: var(--bcc-transition); display: flex; flex-direction: column; }
@media (min-width: 640px) {
	.bcc-card { flex-direction: row; align-items: stretch; }
}
.bcc-card:hover { transform: translateY(-3px); box-shadow: var(--bcc-shadow-hover); border-color: var(--bcc-primary); }

.bcc-card-image { height: 200px; background-size: cover; background-position: center; position: relative; flex-shrink: 0; }
@media (min-width: 640px) {
	.bcc-card-image { width: 260px; height: auto; min-height: 190px; }
}
.bcc-badge { position: absolute; padding: 4px 10px; border-radius: 4px; font-size: 12px; font-weight: bold; color: #fff; }
.bcc-badge-featured { top: 12px; left: 12px; background: #e74c3c; z-index: 2; }
.bcc-badge-category { display: inline-block; padding: 4px 10px; border-radius: 4px; font-size: 11px; font-weight: 600; background: var(--bcc-primary); color: #fff; margin-bottom: 8px; }

.bcc-card-content { padding: 24px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.bcc-card-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 15px; flex-wrap: wrap; margin-bottom: 8px; }
.bcc-card-title { margin: 0; font-size: 1.35rem; font-weight: 700; font-family: var(--bcc-font); }
.bcc-card-title a { color: var(--bcc-text); text-decoration: none; transition: var(--bcc-transition); }
.bcc-card-title a:hover { color: var(--bcc-primary); }
.bcc-card-city { color: var(--bcc-text-light); font-size: 0.9rem; font-weight: 500; }
.bcc-card-excerpt { color: var(--bcc-text-light); margin: 10px 0 20px; line-height: 1.6; flex: 1; }
.bcc-card-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }

/* Single */
.bcc-single-listing { max-width: 1200px; margin: 0 auto; color: var(--bcc-text); }
.bcc-hero { height: 400px; background-size: cover; background-position: center; position: relative; border-radius: var(--bcc-radius); overflow: hidden; margin-bottom: 30px; }
.bcc-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); display: flex; align-items: flex-end; padding: 40px; }
.bcc-hero-content { color: #fff; position: relative; width: 100%; }
.bcc-hero-content h1 { color: #fff; margin: 10px 0; font-size: 2.5rem; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.bcc-hero-content .bcc-badge { position: relative; display: inline-block; top: 0; left: 0; right: 0; margin-right: 10px; margin-bottom: 10px; }
.bcc-contact-actions { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 40px; }
.bcc-single-layout { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 768px) { .bcc-single-layout { grid-template-columns: 2fr 1fr; } }
.bcc-section { background: var(--bcc-bg); padding: 30px; border-radius: var(--bcc-radius); box-shadow: var(--bcc-shadow); margin-bottom: 30px; }
.bcc-section h2 { margin-top: 0; border-bottom: 2px solid var(--bcc-secondary); padding-bottom: 10px; margin-bottom: 20px; }
.bcc-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 15px; }
.bcc-gallery img { width: 100%; height: 100px; object-fit: cover; border-radius: 4px; transition: var(--bcc-transition); }
.bcc-gallery img:hover { transform: scale(1.05); }
.bcc-social-icons { display: flex; flex-wrap: wrap; gap: 10px; }
.bcc-social-icon { padding: 8px 15px; background: var(--bcc-secondary); color: var(--bcc-text); text-decoration: none; border-radius: 4px; font-weight: 500; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
