/* FAST LOAD & MODERN MINIMALISM - BLACK & WHITE THEME */
@import url('https://fonts.googleapis.com/css2?family=TASA+Orbiter:wght@400..800&display=swap');

:root {
    --bg-body: #ffffff;
    --bg-card: #ffffff;
    --text-main: #000000;
    --text-muted: #444444;
    --border-light: #000000;
    --accent: #000000;
    --radius: 0px;
    --radius-card: 8px;
    /* Slightly tighter radius */
    --shadow: none;
    /* Removed shadow as requested */
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: 'TASA Orbiter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.8em;
    text-transform: uppercase;
}

p {
    margin-bottom: 1.2rem;
}

/* Navbar - NOW BLACK */
.navbar {
    background: #000000;
    border-bottom: 2px solid #000000;
    padding: 0.5rem 0;
}

.navbar-brand {
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.05em;
    color: #ffffff !important;
    /* White text */
    text-transform: uppercase;
}

.nav-link {
    color: #ffffff !important;
    /* White text */
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

/* Quote Cards - SOFT DESIGN */
.quote-card {
    background: #ffffff;
    border: none;
    /* No border */
    border-radius: 16px;
    /* Rounded corners */
    padding: 2.5rem;
    /* Restored padding */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quote-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.quote-card::before {
    content: '“';
    position: absolute;
    top: -10px;
    right: 15px;
    font-size: 60px;
    /* Smaller quote mark */
    color: #000000;
    opacity: 0.1;
    /* Much subtler */
    font-family: 'TASA Orbiter', sans-serif;
    font-weight: 900;
    line-height: 1;
}

.quote-card .card-body {
    position: relative;
    z-index: 1;
    padding: 0;
    /* Remove inner padding */
}

.quote-text {
    font-family: 'TASA Orbiter', sans-serif;
    font-size: 1.25rem;
    /* Slightly smaller for elegance */
    line-height: 1.5;
    color: #000000;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-style: normal;
}

/* Buttons */
.btn-copy {
    background: #ffffff;
    /* White default */
    color: #000000;
    border: 2px solid #000000;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    /* More rectangular/simple */
    cursor: pointer;
    width: 100%;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-copy:hover {
    background: #000000;
    color: #ffffff;
}

.btn-copy.copied {
    background-color: #198754;
    color: #ffffff;
    border-color: #198754;
}

.btn-outline-dark {
    border: 2px solid #000000;
    color: #000000;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 30px;
    border-radius: 4px;
}

.btn-outline-dark:hover {
    background: #000000;
    color: #ffffff;
}

/* Ad Containers */
.ad-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
    min-height: 1px;
}

.ad-label {
    display: block;
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 600;
}

/* Pagination */
.pagination {
    margin: 0;
    gap: 5px;
}

.page-link {
    border: 1px solid #000000;
    /* Thinner border */
    background: #ffffff;
    color: #000000;
    font-weight: 600;
    border-radius: 4px;
    /* Simpler radius */
    padding: 0.5rem 0.8rem;
}

.page-link:hover,
.page-item.active .page-link {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.page-item.disabled .page-link {
    border-color: #e9ecef;
    color: #ccc;
}

/* Global Border Override for Soft Theme - Reset */
.border,
.card {
    border: none !important;
}

/* Footer */
footer {
    border-top: 2px solid #000000;
    background: #000000;
    /* Black Footer to match Navbar? User only said menu, but footer usually matches. Let's make it Black for consistency. */
    padding: 4rem 0;
    margin-top: 5rem;
    font-size: 1rem;
    color: #ffffff;
    /* White text */
    font-weight: 600;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}