/* Calming palette */
:root {
    --primary: #6A8CAF;
    --secondary: #BFD8D5;
    --bg: #F8FAFC;
    --text-dark: #274C5B;
    --accent: #F2E9E4;
}

body {
    background: pink !important;
    font-family: 'Segoe UI', Roboto, sans-serif !important;
    background-color: var(--bg);
    color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6, p, li, span {
    color: var(--text-dark);
}

a {
    color: var(--text-dark);
    text-decoration: none;
}

nav.navbar.noor-navbar {
    background-color: var(--accent);
    height: auto;
    padding: 0.5rem 1rem;
}


nav.navbar.noor-navbar .container {
    display: flex;
    align-items: center;
}

.navbar-brand {
    padding: 0 !important;
    margin: 0; /* Remove default margin */
}

.navbar-logo {
    height: 50px;        /* keep navbar height controlled */
    width: auto;
    transform: scale(1.3);  /* makes it appear wider without affecting layout */
}


.page-content {
    margin-top: 1.5rem;
}

/* Headings */
h1, h2, h3 {
    color: var(--text-dark);
    font-weight: 600;
}

/* Buttons */


/* Navbar tweaks */
.nav-link {
    color: var(--text-dark) !important;
}
.nav-link:hover {
    text-decoration: underline;
}

/* Calm card style for forms & tracker */
.card {
    border-radius: 16px;
    background-color: #ffffff; /* cleaner */
    border: 1px solid #eee;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 1.5rem;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

button.btn {
    border-radius: 10px;
}



.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.form-control {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 10px;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    border-radius: 999px;
    padding: 10px 16px;
}

.insight-card {
    border-radius: 18px;
    background-color: #ffffff;
    border: 1px solid #ece6f5;
}

.insight-card .card-title {
    font-weight: 600;
    color: #4b465c;
}

.insight-card .display-6 {
    font-weight: 700;
    color: #5a4fb3; /* or var(--primary) if you use CSS variables */
}

.affirmation-card {
    border-radius: 18px;
    background-color: #fff7fb;
    border: 1px solid #f3d9f5;
}

.streak-day {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.streak-active {
    background-color: #86efac;
}

.streak-empty {
    background-color: #e5e7eb;
}

/* =========================
   Journal Pages (Resilia)
   ========================= */

/* Journal header */
.journal-header {
    margin-bottom: 1.5rem;
}

.journal-header h2 {
    margin-bottom: 0;
}

/* Journal cards */
.journal-card {
    border-radius: 18px;
    background-color: #ffffff;
    border: 1px solid #e7edf2;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.journal-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

/* Entry type label */
.journal-type {
    font-size: 0.8rem;
    color: #7b8a97;
    margin-bottom: 6px;
}

/* Entry content */
.journal-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Empty state */
.journal-empty {
    padding: 3rem 0;
}

.journal-empty p {
    color: #7b8a97;
    margin-bottom: 1rem;
}

/* Journal form page */
.journal-form-container {
    max-width: 720px;
    margin: 2.5rem auto;
}

.journal-form-card {
    border-radius: 20px;
    background-color: #ffffff;
    border: 1px solid #e7edf2;
    padding: 2rem;
}

/* Larger writing area */
.journal-form-card textarea {
    min-height: 260px;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Calm save button */
.journal-save-btn {
    margin-top: 0.5rem;
    padding: 0.55rem 1.2rem;
    border-radius: 10px;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 8px 12px;
    border: none;
    background: none;
    text-align: left;
    border-radius: 8px;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
}







