/* style.css - Unique custom Theme for fidelityhost.net */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;600;700&family=Share+Tech+Mono&family=Inter:wght@400;600;700&family=Outfit:wght@400;600;700&display=swap');

:root {
    --bg-main: #0b0f19;
    --bg-card: #111827;
    --primary: #8b5cf6;
    --secondary: #6d28d9;
    --border-color: rgba(255,255,255,0.08);
    --text-main: #f9fafb;
    --text-muted: #8e8e93;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
}
header {
    background: var(--bg-card);
    border-bottom: 2px solid var(--primary);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1.2rem 2rem;
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-weight: 600; transition: color 0.3s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--text-main); }
.container { max-width: 1200px; margin: 4rem auto; padding: 0 1.5rem; }
.hero {
    text-align: center;
    padding: 5rem 2rem;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 4rem;
}
.hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 1.5rem; color: var(--primary); }
.hero p { font-size: 1.15rem; color: var(--text-muted); max-width: 700px; margin: 0 auto 2.5rem auto; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    transition: transform 0.3s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--primary); }
.badge { display: inline-block; padding: 0.3rem 0.8rem; border-radius: 50px; font-size: 0.8rem; font-weight: 700; background: rgba(255,255,255,0.05); color: var(--secondary); margin-bottom: 1rem; }
.btn { display: inline-block; padding: 0.8rem 2rem; border-radius: 50px; font-weight: 600; text-decoration: none; text-align: center; cursor: pointer; transition: all 0.3s ease; }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { opacity: 0.9; }
.input-label { font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; display: block; }
.select-input, .number-input { width: 100%; padding: 0.8rem; border: 1px solid var(--border-color); border-radius: 8px; background: var(--bg-card); color: var(--text-main); font-family: inherit; font-size: 1rem; margin-bottom: 1.5rem; }
.results-box { margin-top: 2rem; padding: 1.5rem; background: rgba(255,255,255,0.05); border: 1px solid var(--border-color); border-radius: 12px; display: none; }
footer { border-top: 1px solid var(--border-color); padding: 4rem 2rem; text-align: center; color: var(--text-muted); font-size: 0.9rem; margin-top: 6rem; }
