/* --- Angels & Harlots - Unified Light Premium Theme --- */

:root {
    /* Colors */
    --white: #FFFFFF;
    --bg-light: #FAFAFA;
    --black: #121212;
    --pink: #FF3366;
    --pink-hover: #E62E5C;
    --soft-grey: #F0F2F5;
    
    /* UI Elements */
    --border: #EEEEEE;
    --text-muted: #666666;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    --radius-lg: 20px;
    --radius-md: 10px;
}

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

body {
    background-color: var(--bg-light);
    color: var(--black);
    font-family: 'Inter', -apple-system, sans-serif;
    line-height: 1.6;
}

/* --- Layout --- */

header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 5%;
}

/* --- Branding --- */

.logo {
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: var(--black);
    text-decoration: none;
}

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

/* --- Form & Cards --- */

.post-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 3rem;
    margin-bottom: 2rem;
}

/* Labels: Using Pink for that "Angels" branding pop */
label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--pink);
    margin-bottom: 8px;
    margin-top: 24px;
}

/* Inputs: Removing the "box" feel with soft backgrounds */
input, textarea {
    width: 100%;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--black);
    padding: 14px 18px;
    font-size: 1rem;
    transition: all 0.25s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--pink);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 51, 102, 0.08);
}

/* --- Buttons --- */

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-pink {
    background-color: var(--pink);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-pink:hover {
    background-color: var(--black); /* Switching to black on hover for a high-fashion look */
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 51, 102, 0.25);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--black);
    color: var(--black);
    width: auto;
    padding: 0.6rem 1.4rem;
}

.btn-outline:hover {
    background-color: var(--black);
    color: var(--white);
}

/* --- Components --- */

.locked-overlay {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
}

.text-muted { color: var(--text-muted); font-size: 0.9rem; }

/* Target the specific container for the Profile Image */
.profile-image-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers items horizontally */
    justify-content: center;
    text-align: center;
    padding: 2rem;
    width: 100%;
}

/* Ensure the file input doesn't push left due to default browser styling */
input[type="file"] {
    margin: 1rem auto;
    display: block;
    max-width: 100%;
    font-size: 0.8rem;
}