/* Faith & Fit Premium Design System */

:root {
    --bg-dark: #080C15;
    --bg-card: #131B2C;
    --primary-gold: #D4AF37;
    --primary-gold-dim: #AA8C2C;
    --text-primary: #F1F5F9;
    --text-secondary: #94A3B8;
    --accent-blue: #3B82F6;

    --font-heading: "Playfair Display", serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(19, 27, 44, 0.7);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-gold);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #fff;
}

/* Components */

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

.btn {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dim));
    color: #000;
    font-weight: 700;
    border-radius: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    color: #000;
}

.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(10px);
}

/* Header */

header {
    padding: 24px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8, 12, 21, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-gold);
}

/* Hero Section */

.hero {
    text-align: center;
    padding: 180px 0 140px;
    background: linear-gradient(rgba(8, 12, 21, 0.7), rgba(8, 12, 21, 0.9)), url('images/hero.png');
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 1px solid var(--glass-border);
}

.hero h1 {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero p.lead {
    font-size: 1.5rem;
    max-width: 600px;
    margin: 0 auto 40px;
    color: #e2e8f0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Features Grid */

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 80px 0;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-gold);
}

/* Footer */

footer {
    border-top: 1px solid var(--glass-border);
    padding: 60px 0;
    margin-top: 80px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.6;
}

/* Responsive */

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }
}