/*
Theme Name: SugarMum Kenya Premium
Theme URI: https://sugarmumkenya.co.ke
Description: A custom, high-performance premium dating theme built specifically for SugarMum Kenya. Features profiles as posts, geolocation, and verification systems.
Author: Replit Agent
Author URI: https://replit.com
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sugarmum-parent
Tags: dating, community, dark-mode, responsive-layout
*/

:root {
  --primary: #e6ac00; /* Gold */
  --primary-hover: #cc9900;
  --bg-dark: #0f172a;
  --bg-card: #1e293b;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --border-color: #334155;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

a:hover {
  color: var(--primary);
}

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

/* Header */
.site-header {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: var(--primary);
}

.main-nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-btn {
  background: var(--primary);
  color: #000;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600;
}

/* Grid System */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  padding: 40px 0;
}

/* Card Styles */
.profile-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.profile-card:hover {
  transform: translateY(-5px);
}

.profile-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  width: 100%;
}

.profile-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  padding: 20px;
}

.profile-role-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(5px);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}

/* Single Page */
.single-profile-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  padding: 40px 0;
}

@media (max-width: 768px) {
  .single-profile-grid {
    grid-template-columns: 1fr;
  }
}

.btn-primary {
  background: var(--primary);
  color: #000;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  display: block;
  text-align: center;
}

.trust-meter {
  background: var(--bg-card);
  padding: 20px;
  border-radius: 12px;
  margin-top: 20px;
}

/* Forms */
input[type="text"], select {
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  color: #fff;
  padding: 10px;
  border-radius: 6px;
  width: 100%;
}
