/* ═══════════════════════════════════════════════
   SYSTEM / GENERAL STYLES (public pages)
   ═══════════════════════════════════════════════ */

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.has-public-navbar {
    padding-top: 70px;
}

main {
    flex: 1;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.table > :not(caption) > * > * {
    vertical-align: middle;
}


/* ═══════════════════════════════════════════════
   HOMEPAGE STYLES (migrated from monzurmoin.md)
   ═══════════════════════════════════════════════ */

html {
    scroll-behavior: smooth;
}

:root {
    --primary: #283b38;
    --accent: #4fa081;
    --surface: #eef5f1;
    --text: #1d2725;
    --muted: #58645c;
}

body {
    font-family: "Segoe UI", sans-serif;
    color: var(--text);
    background: #f7faf7;
}

.custom-navbar {
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff !important;
}

.navbar-nav {
    gap: 0.35rem;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.25s ease, transform 0.25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #ffffff !important;
    transform: translateY(-1px);
}

.navbar-nav .nav-link.active {
    color: #ffffff !important;
    position: relative;
}

.navbar-nav .nav-link.active::after {
    content: "";
    display: block;
    width: 28px;
    height: 2px;
    background: #ffffff;
    margin: 6px auto 0;
    border-radius: 2px;
}


.hero-section {
    padding: 110px 0 80px;
    background: #f6efe5;
}

.hero-intro {
    max-width: 640px;
}

.hero-subtitle {
    color: #8a5d31;
    letter-spacing: 0.22em;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-actions {
    gap: 1rem;
}

.hero-image {
    border-radius: 0;
    box-shadow: none;
}

.section-padding {
    padding: 90px 0;
}

.section-title {
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.04em;
}

.about-section,
.bio-section {
    width: 100%;
}

.about-section {
    background: #f6efe5;
}

.about-wrapper {
    min-height: calc(100vh - 90px);
}

.about-image-col {
    overflow: hidden;
    min-height: 620px;
}

.about-image-col .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.about-text-col {
    background: transparent;
    display: flex;
    align-items: center;
    min-height: 100%;
}

.about-text-inner {
    width: 100%;
}

.about-text-col h1 {
    color: var(--text);
}

.about-text-col p {
    color: #454a44;
}

.eyebrow {
    color: var(--accent);
    letter-spacing: 0.18em;
    font-size: 0.88rem;
}

.about-text-col p,
.bio-text {
    color: var(--muted);
    line-height: 1.9;
}

.bio-section {
    background: var(--surface);
    padding: 100px 0;
}

.section-padding.bg-light {
    background: var(--surface) !important;
}

.bio-section .section-title {
    margin-bottom: 1rem;
}

.bio-text {
    max-width: 820px;
    margin: 0 auto;
    font-size: 1.1rem;
    text-align: center;
}

.card {
    background: #ffffff;
    border: 1px solid rgba(40, 59, 56, 0.08);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 50px rgba(40, 59, 56, 0.12);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
}

.card-body h5 {
    color: var(--primary);
    font-weight: 700;
}

.card-body p {
    color: #55615a;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    padding: 0.92rem 1.9rem;
    border-radius: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: none;
    transition: background 0.25s ease, transform 0.25s ease;
}

.btn-primary:hover,
.btn-primary:focus {
    background: #1f3b33;
    transform: translateY(-1px);
}

.btn-outline-accent {
    color: var(--primary);
    background: transparent;
    border: 2px solid var(--primary);
    padding: 0.92rem 1.9rem;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.btn-outline-accent:hover,
.btn-outline-accent:focus {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-1px);
}

.site-footer {
    background: #faf5ef;
    color: var(--muted);
    padding: 1.25rem 0;
    font-size: 0.95rem;
    border-top: 1px solid rgba(40, 59, 56, 0.08);
}

.qr-code {
    max-width: 250px;
}

.card-img-placeholder {
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(40, 59, 56, 0.06);
    color: var(--muted);
    text-align: center;
    padding: 1rem;
    font-size: 0.95rem;
}

.contact-image {
    max-width: 220px;
    max-height: 220px;
    object-fit: contain;
}

.contact-link {
    color: inherit;
    text-decoration: none;
}

.contact-link:hover,
.contact-link:focus {
    text-decoration: none;
    color: var(--accent);
}

.modal-backdrop.show {
    background-color: rgba(15, 29, 17, 0.65);
}

.modal-dialog {
    min-height: calc(100vh - 2rem);
    display: flex;
    align-items: center;
}

.modal-content {
    border-radius: 1.5rem;
    border: none;
    background: #ffffff;
    box-shadow: 0 30px 80px rgba(16, 41, 31, 0.18);
}

.modal-header {
    border-bottom: none;
    padding: 1.5rem 1.5rem 0.9rem;
}

.modal-header h5 {
    color: var(--primary);
    font-weight: 700;
}

.modal-body {
    padding: 1.5rem;
    color: var(--muted);
    line-height: 1.8;
}

.btn-close {
    width: 2rem;
    height: 2rem;
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
}
