/* Colors */
:root {
	--db-cream: #F5F1E7;
	--db-sage: #8C9A8E;
	--db-wood: #8B5A2B;
	--db-white: #FFFFFF;
	--db-gold: #D4AF37;
	--db-text: #333333;
}

.debali-landing {
	font-family: 'Inter', sans-serif;
	color: var(--db-text);
	background: var(--db-white);
}

.db-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.db-section {
	padding: 80px 0;
}

.bg-cream {
	background-color: var(--db-cream);
}

.text-center { text-align: center; }
.mb-40 { margin-bottom: 40px; }
.mt-20 { margin-top: 20px; }

/* Buttons */
.db-btn {
	display: inline-block;
	padding: 15px 30px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.db-btn-primary {
	background: var(--db-gold);
	color: var(--db-white);
	box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}
.db-btn-primary:hover {
	background: #b8962d;
	color: var(--db-white);
}

.db-btn-secondary {
	background: var(--db-white);
	color: var(--db-wood);
}

/* Hero */
.db-hero {
	position: relative;
	min-height: 80vh;
	display: flex;
	align-items: center;
	background: #ccc; /* fallback */
	text-align: center;
}
.db-hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.4);
}
.db-hero-content {
	position: relative;
	z-index: 1;
	color: var(--db-white);
}
.db-headline {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--db-white);
}
.db-subheadline {
	font-size: 1.2rem;
	margin-bottom: 40px;
}
.db-hero-actions {
	display: flex;
	gap: 20px;
	justify-content: center;
}

/* Grids */
.db-grid-6, .db-grid-3, .db-grid-4 {
	display: grid;
	gap: 20px;
}
.db-grid-6 { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.db-grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.db-grid-4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

/* Features */
.db-feature-item {
	text-align: center;
	padding: 20px;
	background: var(--db-white);
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	transition: transform 0.3s;
}
.db-feature-item:hover { transform: translateY(-5px); }
.db-icon { font-size: 2rem; display: block; margin-bottom: 10px; }

/* About */
.db-split {
	display: flex;
	align-items: center;
	gap: 50px;
}
.db-about-image, .db-about-text { flex: 1; }
.db-image-placeholder {
	background: var(--db-sage);
	border-radius: 20px;
	min-height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--db-white);
}
.db-about-text h2 {
	color: var(--db-wood);
	font-size: 2.5rem;
	margin-bottom: 20px;
}

/* Facilities */
.db-facility-card {
	background: var(--db-white);
	padding: 20px;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.05);
	font-weight: 500;
	color: var(--db-sage);
}

/* CTA */
.db-cta {
	position: relative;
	background: var(--db-wood);
	color: var(--db-white);
}
.db-cta h2 { color: var(--db-white); font-size: 2.5rem; }

/* Footer */
.db-footer {
	background: #111;
	color: #999;
	padding: 60px 0;
}
.db-footer-logo {
	color: var(--db-gold);
	font-size: 1.8rem;
	margin-bottom: 10px;
}
.db-socials a { color: var(--db-white); text-decoration: none; margin: 0 10px; }

/* Sticky WA */
.db-sticky-wa {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background: #25D366;
	color: white;
	padding: 15px 20px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: bold;
	box-shadow: 0 5px 15px rgba(37,211,102,0.4);
	z-index: 99;
}

@media (max-width: 768px) {
	.db-split { flex-direction: column; }
	.db-headline { font-size: 2rem; }
}