/* assets/css/style.css */
/* Neurodance Global Styling */

:root {
    --bg-color: #0b0914;
    /* Deep infinite dark */
    --card-bg: rgba(22, 19, 36, 0.6);
    --border-color: rgba(255, 255, 255, 0.08);
    --text-color: #e2e1e6;
    --text-muted: #848396;

    /* Neon Accents */
    --accent-primary: #ff2a6d;
    /* Cyberpunk pink */
    --accent-secondary: #05d9e8;
    /* Cyan */
    --accent-glow: rgba(255, 42, 109, 0.3);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(255, 42, 109, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(5, 217, 232, 0.06) 0%, transparent 50%);
    background-attachment: fixed;
}

/* ─── TYPOGRAPHY ────────────────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #b3b2c2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

a {
    color: var(--accent-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: var(--accent-primary);
}

/* ─── NAVBAR ────────────────────────────────────────────────────────────── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11, 9, 20, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.logo-accent {
    color: var(--accent-primary);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: #fff;
}

.nav-btn-highlight {
    background: linear-gradient(90deg, var(--accent-primary), #d91c5c);
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.nav-btn-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 42, 109, 0.5);
}

.nav-btn-outline {
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 6px;
}

.nav-btn-outline:hover {
    border-color: var(--accent-secondary);
    background: rgba(5, 217, 232, 0.05);
}

/* ─── MAIN LAYOUT ───────────────────────────────────────────────────────── */
.content-wrapper {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
    min-height: 70vh;
}

/* ─── HERO SECTION ──────────────────────────────────────────────────────── */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
}

.btn-primary {
    background: var(--accent-primary);
    color: #fff !important;
    box-shadow: 0 0 20px var(--accent-glow);
}

.btn-primary:hover {
    transform: scale(1.05);
    background: #ff145a;
    box-shadow: 0 0 30px rgba(255, 42, 109, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #fff !important;
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-secondary);
    background: rgba(5, 217, 232, 0.05);
}

/* ─── GRID LAYOUTS (MODELS & ADMIN) ─────────────────────────────────────── */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* ─── CARDS (GLASSMORPHISM) ─────────────────────────────────────────────── */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
    position: relative;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.model-card {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.model-avatar-wrapper {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.model-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.model-card:hover .model-avatar {
    transform: scale(1.05);
}

.model-info {
    padding: 25px;
}

.model-name {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.model-meta {
    display: flex;
    gap: 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.model-trait {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: var(--accent-secondary);
}

/* ─── FORMS ─────────────────────────────────────────────────────────────── */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-secondary);
    box-shadow: 0 0 0 3px rgba(5, 217, 232, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* ─── FOOTER ────────────────────────────────────────────────────────────── */
.site-footer {
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
    margin-top: 80px;
    background: rgba(0, 0, 0, 0.2);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
}

.footer-links a {
    color: var(--text-muted);
    margin-left: 20px;
}

.footer-links a:hover {
    color: var(--accent-primary);
}

/* ─── UTILITIES ─────────────────────────────────────────────────────────── */
.text-accent {
    color: var(--accent-primary);
}

.badge {
    background: rgba(255, 42, 109, 0.1);
    color: var(--accent-primary);
    border: 1px solid rgba(255, 42, 109, 0.3);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Profile Detail Specifics */
.profile-header {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.profile-avatar-large {
    width: 400px;
    height: 500px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.profile-title {
    font-size: 4rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}