/* ===========================================
   CUSTOM FOOTER STYLES — Astra Child Theme
   =========================================== */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Montserrat:wght@300;400;500&display=swap');

/* Footer fonts */
.footer-brand .brand-name {
    font-family: 'Cinzel', serif !important;
}

.custom-footer-wrap,
.footer-brand p,
.footer-col h4,
.footer-col ul li a,
.footer-copyright,
.footer-credit {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 300 !important;
}

.footer-col h4 {
    font-family: 'Cinzel', serif !important;
    font-weight: 500 !important;
}
.custom-footer-wrap {
	background: #3B010B;
	color: #ccc;
	padding: 48px 24px 24px;
	margin-top: 40px;
}

.custom-footer-inner {
	max-width: 1300px;
	margin: 0 auto;
}

/* ---- Top row: columns ---- */
.custom-footer-top {
	display: flex;
	gap: 48px;
	flex-wrap: wrap;
	padding-bottom: 36px;
	border-bottom: 1px solid rgba(201,169,110,0.2);
}

/* Brand column */
.footer-brand { flex: 1.5; min-width: 200px; }

.footer-brand .brand-name {
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 1px;
	margin: 0 0 10px;
}

.footer-brand p {
	font-size: 13px;
	line-height: 1.7;
	color: #999;
	margin: 0;
}

/* Links columns */
.footer-col { flex: 1; min-width: 160px; }

.footer-col h4 {
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	color: #fff;
	margin: 0 0 16px;
}

.footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
	color: #aaa;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.2s ease;
}
.footer-col ul li a:hover { color: #c9a96e; }

/* ---- Bottom bar ---- */
.custom-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	padding-top: 20px;
}

.footer-copyright {
	font-size: 13px;
	color: #777;
	margin: 0;
}

.footer-copyright span { color: #aaa; }

.footer-credit {
	font-size: 13px;
	color: #666;
	margin: 0;
}

.footer-credit a {
	color: #c9a96e;
	text-decoration: none;
	font-weight: 500;
}
.footer-credit a:hover { text-decoration: underline; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
	.custom-footer-top {
		flex-direction: column;
		gap: 32px;
	}

	.custom-footer-bottom {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 6px;
	}
}