/* Ghanamassage.com Luxury Overhaul 2026 */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Plus+Jakarta+Sans:wght@300;400;600;700&display=swap');

:root {
    --gold: #c5a059;
    --dark: #121212;
    --light-bg: #f8f6f2;
    --white: #ffffff;
    --radius-lg: 32px;
    --radius-sm: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    background-color: var(--light-bg);
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--dark);
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

/* --- Header & Nav Fix --- */
header {
    background: rgba(248, 246, 242, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    text-decoration: none;
    color: var(--dark);
}

.logo span { color: var(--gold); }

.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a { 
    text-decoration: none; 
    color: var(--dark); 
    font-weight: 700; 
    font-size: 0.85rem; 
    text-transform: uppercase; 
    letter-spacing: 1.5px;
}

/* --- Search & Filters Redesign --- */
.filter-section {
    padding: 60px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.directory-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 40px;
}

.search-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    background: var(--white);
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.search-grid input, .search-grid select {
    border: 1px solid #eee;
    padding: 15px 20px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    background: #fafafa;
    flex: 1;
    min-width: 200px;
}

/* --- Card Perfection --- */
.directory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
    gap: 40px;
    padding: 0 5% 100px;
}

.provider-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 45px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
}

.provider-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.06);
}

.hefra-label {
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.provider-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin: 0 0 10px 0;
}

.location-text {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.tag {
    background: #f4f2ee;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* --- Card Footer --- */
.card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-box span {
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    color: #bbb;
    letter-spacing: 1px;
}

.price-box strong {
    font-size: 1.6rem;
    font-weight: 700;
}

.btn-group { display: flex; align-items: center; gap: 25px; }

.visit-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    border-bottom: 2px solid var(--gold);
}

.book-btn {
    background: var(--dark);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    transition: var(--transition);
}

.book-btn:hover {
    background: var(--gold);
}