﻿/*
 * alnokhba-footer-design.css
 * Matches Footer.tsx exactly: 4-column grid, minimal editorial, black bg.
 */

/* ============================================================
   FOOTER SHELL
   ============================================================ */

.an-footer {
	background: #000;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 4rem 1.5rem;
	direction: rtl;
}

.an-footer__inner {
	max-width: 80rem;
	margin: 0 auto;
}

/* ============================================================
   GRID — 4 columns on desktop, stacked on mobile
   ============================================================ */

.an-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
	.an-footer__grid {
		grid-template-columns: 2fr 1fr 1fr;
		gap: 2.5rem;
	}
}

/* ============================================================
   BRAND COLUMN
   ============================================================ */

.an-footer__brand {
	display: flex;
	flex-direction: column;
}

.an-footer__salon-label {
	font-family: 'Inter', sans-serif;
	font-size: 0.5625rem;
	letter-spacing: 0.4em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.3);
	margin: 0 0 0.25rem;
}

.an-footer__brand-name {
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	font-weight: 400;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: #fff;
	margin: 0 0 1rem;
	line-height: 1;
}

.an-footer__desc {
	font-family: 'Inter', sans-serif;
	font-size: 0.875rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.4);
	max-width: 22rem;
	margin: 0 0 1.5rem;
}

/* Social icons row */
.an-footer__social {
	display: flex;
	gap: 1rem;
}

.an-footer__social-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	cursor: pointer;
	color: rgba(255, 255, 255, 0.3);
	text-decoration: none;
	transition: color 0.2s ease;
	padding: 0;
	line-height: 0;
}

.an-footer__social-btn:hover {
	color: #fff;
}

/* ============================================================
   LINKS + CONTACT COLUMNS
   ============================================================ */

.an-footer__col-label {
	font-family: 'Inter', sans-serif;
	font-size: 0.625rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.4);
	margin: 0 0 1.25rem;
}

/* Quick links */
.an-footer__links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.an-footer__links li a,
.an-footer__links li a:visited {
	font-family: 'Inter', sans-serif;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	transition: color 0.2s ease;
}

.an-footer__links li a:hover {
	color: #fff;
}

/* Contact list */
.an-footer__contact {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.an-footer__contact li,
.an-footer__contact li a,
.an-footer__contact li a:visited {
	font-family: 'Inter', sans-serif;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	transition: color 0.2s ease;
}

.an-footer__contact li a:hover {
	color: #fff;
}

.an-footer__hours {
	font-size: 0.75rem !important;
	color: rgba(255, 255, 255, 0.3) !important;
	padding-top: 0.25rem;
}

/* ============================================================
   BOTTOM BAR
   ============================================================ */

.an-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

@media (min-width: 768px) {
	.an-footer__bottom {
		flex-direction: row;
	}
}

.an-footer__copy {
	font-family: 'Inter', sans-serif;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.2);
	margin: 0;
}

.an-footer__crafted {
	font-family: 'Inter', sans-serif;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.2);
	margin: 0;
}
