/* ====================================================================
   bhojendra.com - Main Stylesheet
   ==================================================================== */

:root {
    --color-primary: #1a3e72;      /* deep blue */
    --color-primary-light: #2c5aa0;
    --color-accent: #d4a017;       /* gold */
    --color-accent-light: #f0c14b;
    --color-text: #2b2b2b;
    --color-text-light: #666;
    --color-bg: #ffffff;
    --color-bg-alt: #f7f9fc;
    --color-border: #e3e8ef;
    --color-white: #ffffff;
    --color-pink: #c2185b;

    --font-nepali: 'Noto Sans Devanagari', 'Mukta', sans-serif;
    --font-base: 'Mukta', 'Noto Sans Devanagari', sans-serif;

    --container-width: 1200px;
    --radius: 10px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 18px rgba(0,0,0,0.10);
    --transition: all 0.3s ease;
}

/* ---------- Dark Theme (toggled via .theme-dark on <body>) ---------- */
body.theme-dark,
html.theme-dark-pending body {
    --color-primary: #5a8fe0;
    --color-primary-light: #7badf0;
    --color-accent: #eab843;
    --color-accent-light: #f5d27a;
    --color-text: #e8edf5;
    --color-text-light: #9aa6bd;
    --color-bg: #0e1219;
    --color-bg-alt: #1c2433;
    --color-border: #313d54;
    --color-white: #1c2433;
    --color-pink: #ec6ba0;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.45);
    --shadow-md: 0 6px 24px rgba(0,0,0,0.55);
}
body.theme-dark img:not(.logo-link img):not(.footer-logo) { opacity: 0.92; }
body.theme-dark .icon-card:hover {
    box-shadow: 0 6px 24px rgba(90, 143, 224, 0.25);
}
body.theme-dark .header-search-form input,
body.theme-dark .comment-form input,
body.theme-dark .comment-form textarea,
body.theme-dark select {
    background: var(--color-bg-alt);
    color: var(--color-text);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-base);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    transition: background-color 0.2s ease, color 0.2s ease;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--color-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-accent); }

ul { list-style: none; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--color-primary);
    color: #fff;
    padding: 10px 16px;
    z-index: 9999;
}
.skip-link:focus { left: 10px; top: 10px; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-nepali);
    color: var(--color-primary);
    line-height: 1.3;
}

/* ==================================================================
   HEADER
   ================================================================== */
.site-header {
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    flex-wrap: wrap;
    gap: 14px;
}

.header-logo-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.site-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.header-email {
    font-size: 0.82rem;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 6px;
    font-style: italic;
}
.header-email a { color: var(--color-text-light); font-style: italic; }
.header-email a:hover { color: var(--color-primary); }

.header-right-block {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Theme toggle — pill style */
.site-theme-toggle {
    display: inline-flex;
    align-items: center;
    background: var(--color-bg-alt);
    border: 1.5px solid var(--color-border);
    border-radius: 50px;
    padding: 3px;
    cursor: pointer;
    gap: 0;
    flex-shrink: 0;
    transition: border-color 0.2s;
}
.site-theme-toggle:hover { border-color: var(--color-primary); }
.site-theme-toggle .tt-opt {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-text-light);
    transition: all 0.2s;
    white-space: nowrap;
    font-family: var(--font-base);
    border: none;
    background: none;
    cursor: pointer;
}
.site-theme-toggle .tt-opt.tt-active {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.site-theme-toggle .tt-opt i { font-size: 0.72rem; }

/* Photography button — smaller, cleaner */
.photography-btn {
    background: var(--color-primary);
    color: #fff;
    padding: 7px 14px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
}
.photography-btn i { font-size: 0.8rem; }
.photography-btn:hover {
    background: var(--color-accent);
    color: #fff;
    transform: translateY(-1px);
}

/* Search bar — pill, compact height matching photography button */
.header-search-form {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--color-border);
    border-radius: 50px;
    overflow: hidden;
    background: var(--color-bg);
    transition: border-color 0.2s, box-shadow 0.2s;
    height: 34px;
}
.header-search-form:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(26,62,114,0.08);
}
.header-search-form input {
    border: none;
    padding: 0 12px;
    font-family: var(--font-base);
    font-size: 0.82rem;
    outline: none;
    width: 220px;
    max-width: 45vw;
    background: transparent;
    color: var(--color-text);
    height: 100%;
}
.header-search-form input::placeholder { color: var(--color-text-light); }
.header-search-form button {
    background: var(--color-primary);
    color: #fff;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: background 0.2s;
    flex-shrink: 0;
}
.header-search-form button:hover { background: var(--color-accent); }

/* ==================================================================
   NAVIGATION
   ================================================================== */
.main-nav {
    background: var(--color-primary);
    border-top: 3px solid var(--color-accent);
}

.nav-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    padding: 14px 20px;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    padding: 14px 18px;
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-item > a:hover,
.nav-item.active > a {
    background: rgba(255,255,255,0.12);
    color: var(--color-accent-light);
}

.dropdown-arrow { font-size: 0.7rem; }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    min-width: 220px;
    box-shadow: var(--shadow-md);
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1001;
}

.nav-item.has-dropdown:hover .dropdown-menu,
.nav-item.has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 18px;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
    font-size: 0.9rem;
}
.dropdown-menu li:last-child a { border-bottom: none; }
.dropdown-menu li a:hover {
    background: var(--color-bg-alt);
    color: var(--color-primary);
    padding-left: 24px;
}

/* ==================================================================
   HERO SLIDER (Section 1)
   ================================================================== */
.hero-slider-section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.hero-slide.active { opacity: 1; }

.hero-slide img,
.hero-slide a {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-slide-caption {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(26, 62, 114, 0.8);
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-family: var(--font-nepali);
    max-width: 80%;
}

.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.85);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    color: var(--color-primary);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.hero-slider-nav:hover { background: var(--color-accent); color: #fff; transform: translateY(-50%) scale(1.1); box-shadow: 0 4px 14px rgba(212, 160, 23, 0.4); }
.hero-slider-nav.prev { left: 20px; }
.hero-slider-nav.next { right: 20px; }

.hero-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: var(--transition);
}
.hero-dot.active { background: var(--color-accent); width: 28px; border-radius: 8px; }

.hero-slider-placeholder {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-alt);
}
.hero-slider-placeholder img { max-height: 120px; }

/* ==================================================================
   GENERAL SECTION
   ================================================================== */
.section { padding: 40px 0; }
.section-bg-alt { background: var(--color-bg-alt); }

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.section-title {
    font-size: 1.6rem;
    position: relative;
    padding-bottom: 10px;
}
.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 22px;
    border: 2px solid var(--color-primary);
    border-radius: 30px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
}
.btn-view-all::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.78rem;
    transition: transform 0.25s ease;
}
.btn-view-all:hover {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(26, 62, 114, 0.25);
    transform: translateY(-2px);
}
.btn-view-all:hover::after { transform: translateX(4px); }
body.theme-dark .btn-view-all:hover { box-shadow: 0 4px 14px rgba(90, 143, 224, 0.35); }

.no-content {
    color: var(--color-text-light);
    font-style: italic;
    padding: 20px 0;
}

/* ==================================================================
   TWO COLUMN GRID
   ================================================================== */
.two-col-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.4fr;
    gap: 30px;
}

/* ==================================================================
   ICON CARDS (Section 2 left)
   ================================================================== */
.icons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.icon-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 20px 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.icon-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.icon-card-icon {
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}
.icon-card:hover .icon-card-icon { color: var(--color-accent); }

.icon-card-title {
    font-size: 0.95rem;
    margin-bottom: 0;
    letter-spacing: 1px;
}

/* ==================================================================
   QUOTE CAROUSEL (Section 2 right)
   ================================================================== */
.quote-carousel-wrap {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: var(--radius);
    padding: 30px;
    color: #fff;
    position: relative;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}
.quote-carousel-wrap .section-subtitle { color: #fff; }

.quote-carousel {
    position: relative;
    flex: 1;
    min-height: 160px;
}

.quote-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}
.quote-slide.active { opacity: 1; visibility: visible; position: relative; }

.quote-photo {
    display: block;
    width: 88px;
    height: 88px;
    flex-shrink: 0;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 14px;
    border: 3px solid var(--color-accent);
}
.quote-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    font-size: 1.5rem;
    color: var(--color-accent);
}

.quote-text {
    font-family: var(--font-nepali);
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 10px;
}

.quote-author {
    font-weight: 600;
    color: var(--color-accent-light);
}

.quote-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}
.quote-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
}
.quote-dot.active { background: var(--color-accent); }

/* ==================================================================
   POST CARDS (Blog / Travel / Article / Literature / Misc)
   ================================================================== */
.card-slider { overflow: hidden; }

.card-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.post-card {
    flex: 0 0 calc((100% - 40px) / 3);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.post-card-thumb { display: block; overflow: hidden; height: 170px; }
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.post-card:hover .post-card-thumb img { transform: scale(1.08); }

.post-card-body { padding: 16px; display: flex; flex-direction: column; flex: 1; }

.post-card-title {
    font-size: 1.05rem;
    margin-bottom: 8px;
}
.post-card-title a { color: var(--color-primary); }
.post-card-title a:hover { color: var(--color-accent); }

.post-card-desc {
    font-size: 0.88rem;
    color: var(--color-text-light);
    margin-bottom: 14px;
    flex: 1;
}

.post-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--color-text-light);
    border-top: 1px solid var(--color-border);
    padding-top: 10px;
    flex-wrap: wrap;
    gap: 6px;
}

.post-date i { margin-right: 4px; }

.read-more { font-weight: 600; color: var(--color-accent); }
.read-more:hover { color: var(--color-primary); }
.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--color-primary);
    background: var(--color-bg-alt);
    border: 2px solid var(--color-primary);
    padding: 9px 20px;
    border-radius: 30px;
    transition: var(--transition);
}
.btn-read-more::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.78rem;
    transition: transform 0.25s ease;
}
.btn-read-more:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
    box-shadow: 0 4px 14px rgba(212, 160, 23, 0.3);
    transform: translateY(-2px);
}
.btn-read-more:hover::after { transform: translateX(4px); }

/* Article / Literature / Misc cards without thumbnails */
.post-card.no-thumb .post-card-body { padding: 20px; }

/* Slider controls */
.slider-controls { display: flex; gap: 10px; }
.slider-prev, .slider-next {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-alt);
    border: 2px solid var(--color-border);
    width: 40px; height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--color-primary);
    font-size: 0.95rem;
    transition: var(--transition);
}
.slider-prev:hover, .slider-next:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(26, 62, 114, 0.25);
    transform: scale(1.08);
}
body.theme-dark .slider-prev:hover, body.theme-dark .slider-next:hover {
    box-shadow: 0 4px 14px rgba(90, 143, 224, 0.35);
}

.section-footer-link { text-align: center; margin-top: 24px; }

/* ==================================================================
   PHOTO CAROUSEL (Section 4)
   ================================================================== */
.photo-carousel { position: relative; overflow: hidden; }
.photo-carousel-track {
    display: flex;
    gap: 14px;
    transition: transform 0.5s ease;
}
.photo-carousel-item {
    flex: 0 0 calc((100% - 14px*5) / 6);
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1/1;
    display: block;
}
.photo-carousel-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.photo-carousel-item:hover img { transform: scale(1.1); }
.photo-carousel-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    font-size: 0.75rem;
    padding: 16px 8px 6px;
    text-align: center;
    opacity: 0;
    transition: var(--transition);
}
.photo-carousel-item:hover .photo-carousel-caption { opacity: 1; }

.photo-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 38px; height: 38px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--color-primary);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.photo-carousel-nav.prev { left: -10px; }
.photo-carousel-nav.next { right: -10px; }
.photo-carousel-nav:hover { background: var(--color-accent); color: #fff; transform: translateY(-50%) scale(1.1); box-shadow: 0 4px 14px rgba(212, 160, 23, 0.4); }

/* ==================================================================
   SOUNDCLOUD SECTION
   ================================================================== */
.soundcloud-slider { position: relative; overflow: hidden; }
.soundcloud-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}
.soundcloud-item {
    flex: 0 0 calc((100% - 40px) / 3);
}
.soundcloud-thumb {
    width: 100%;
    height: 140px;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 10px;
}
.soundcloud-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.soundcloud-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-alt);
    color: var(--color-primary);
    font-size: 2.4rem;
}
.soundcloud-item h4 {
    margin-bottom: 8px;
    font-size: 1rem;
}
.soundcloud-embed-wrap iframe { width: 100%; border-radius: var(--radius); }

.soundcloud-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--color-border);
    width: 38px; height: 38px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--color-primary);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.soundcloud-nav.prev { left: -10px; }
.soundcloud-nav.next { right: -10px; }
.soundcloud-nav:hover { background: var(--color-accent); color: #fff; transform: translateY(-50%) scale(1.1); box-shadow: 0 4px 14px rgba(212, 160, 23, 0.4); }

/* ==================================================================
   FOOTER
   ================================================================== */
.site-footer {
    background: var(--color-primary);
    color: #e8edf5;
    margin-top: 40px;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    padding: 50px 20px;
}

.footer-logo {
    height: 55px;
    margin-bottom: 14px;
    background: #fff;
    padding: 6px 10px;
    border-radius: 6px;
}

.footer-thanks {
    margin-bottom: 14px;
    color: #c9d4e6;
    font-size: 0.95rem;
}

.footer-page-list li { margin-bottom: 8px; }
.footer-page-list a { color: #c9d4e6; font-size: 0.92rem; }
.footer-page-list a:hover { color: var(--color-accent-light); }

.footer-heading {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 8px;
}
.footer-heading::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 40px; height: 3px;
    background: var(--color-accent);
}

.footer-social-icons { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-social-icons a {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    transition: var(--transition);
}
.footer-social-icons a:hover { background: var(--color-accent); transform: translateY(-4px); }
.social-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    border-radius: 4px;
}

.footer-archive-list li { margin-bottom: 8px; }
.footer-archive-list a { color: #c9d4e6; font-size: 0.92rem; }
.footer-archive-list a:hover { color: var(--color-accent-light); }
.archive-count { color: #8da3c4; font-size: 0.8rem; }
.text-muted { color: #8da3c4; font-size: 0.9rem; }

.footer-menu-bar {
    background: rgba(0,0,0,0.18);
    padding: 14px 0;
}
.footer-full-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 8px;
    position: relative;
}
.footer-full-menu > li { position: relative; }
.footer-full-menu > li > a {
    color: #dde6f3;
    font-size: 0.88rem;
    padding: 6px 14px;
    display: block;
}
.footer-full-menu > li > a:hover { color: var(--color-accent-light); }
.footer-submenu {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 0;
    background: var(--color-white);
    min-width: 180px;
    box-shadow: var(--shadow-md);
    border-radius: 8px 8px 0 0;
    z-index: 20;
}
.footer-full-menu > li:hover .footer-submenu { display: block; }
.footer-submenu li a { color: var(--color-text); padding: 8px 16px; font-size: 0.85rem; }
.footer-submenu li a:hover { background: var(--color-bg-alt); color: var(--color-primary); }

.footer-bottom {
    text-align: center;
    padding: 16px 0;
    background: rgba(0,0,0,0.28);
    font-size: 0.85rem;
    color: #aebcd4;
}

/* ==================================================================
   BACK TO TOP
   ================================================================== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 999;
    transition: var(--transition);
}
.back-to-top.show { display: flex; }
.back-to-top:hover { background: var(--color-accent); }

/* ==================================================================
   GENERIC CONTENT PAGES (Blog, Article, Literature, Misc listing)
   ================================================================== */
.page-banner {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: #fff;
    padding: 50px 0;
    text-align: center;
}
.page-banner h1 { color: #fff; font-size: 2rem; margin-bottom: 8px; }
.page-banner .breadcrumb { color: #c9d4e6; font-size: 0.9rem; }
.page-banner .breadcrumb a { color: #c9d4e6; }
.page-banner .breadcrumb a:hover { color: var(--color-accent-light); }

.listing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.listing-grid .post-card { flex: none; }

/* Category filter pills */
.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}
.category-filter a {
    padding: 8px 18px;
    border: 1px solid var(--color-border);
    border-radius: 30px;
    font-size: 0.88rem;
    color: var(--color-text);
}
.category-filter a.active,
.category-filter a:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 40px 0;
}
.page-link {
    padding: 8px 14px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    color: var(--color-text);
    font-size: 0.9rem;
}
.page-link:hover { background: var(--color-bg-alt); }
.page-link.active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.page-link.disabled { opacity: 0.4; pointer-events: none; }
.page-ellipsis { padding: 8px 4px; color: var(--color-text-light); }

/* ==================================================================
   SINGLE POST PAGE
   ================================================================== */
.single-post-meta-bar {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    padding: 14px 20px;
    margin-bottom: 20px;
    font-size: 0.88rem;
    color: var(--color-text-light);
}
.single-post-meta-bar span { display: flex; align-items: center; gap: 6px; }

.single-post-title {
    color: var(--color-primary);
    font-size: 2rem;
    margin-bottom: 20px;
}

.single-post-banner {
    width: 100%;
    border-radius: var(--radius);
    margin-bottom: 24px;
    max-height: 480px;
    object-fit: cover;
}

.share-print-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.share-btn {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
}
.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #000; }
.share-btn.whatsapp { background: #25d366; }
.share-btn.print { background: var(--color-text-light); cursor: pointer; border: none; }

.single-post-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--color-text);
    margin-bottom: 40px;
}
.single-post-content img { border-radius: var(--radius); margin: 16px 0; }
.single-post-content h2, .single-post-content h3 { margin: 24px 0 12px; }
.single-post-content p { margin-bottom: 16px; }
.single-post-content blockquote {
    border-left: 4px solid var(--color-accent);
    padding: 12px 20px;
    background: var(--color-bg-alt);
    font-style: italic;
    margin: 20px 0;
}
.single-post-content a { text-decoration: underline; }
.single-post-content table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.single-post-content table td, .single-post-content table th { border: 1px solid var(--color-border); padding: 8px 12px; }

.post-attachments {
    margin: 24px 0;
    padding: 18px 20px;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
}
.post-attachments h3 { font-size: 1.05rem; margin-bottom: 10px; }
.attachment-list { list-style: none; padding: 0; margin: 0; }
.attachment-list li { border-bottom: 1px solid var(--color-border); }
.attachment-list li:last-child { border-bottom: none; }
.attachment-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--color-text);
}
.attachment-list a:hover { color: var(--color-primary); }
.attachment-name { flex: 1; }
.attachment-size { color: var(--color-text-light); font-size: 0.85rem; }

.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.tag-pill {
    background: var(--color-bg-alt);
    color: var(--color-text-light);
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 0.82rem;
}
.form-success { color: #1e7e34; background: #d4edda; padding: 10px 16px; border-radius: var(--radius); margin-bottom: 16px; }
.form-error { color: #a02222; background: #f8d7da; padding: 10px 16px; border-radius: var(--radius); margin-bottom: 16px; }

.post-nav-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid var(--color-border);
    padding-top: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.post-nav-link {
    flex: 1;
    min-width: 200px;
    padding: 14px 18px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition: var(--transition);
}
.post-nav-link:hover { border-color: var(--color-accent); background: var(--color-bg-alt); }
.post-nav-link.next { text-align: right; }
.post-nav-label { font-size: 0.8rem; color: var(--color-text-light); display: block; margin-bottom: 4px; }
.post-nav-title { font-weight: 600; color: var(--color-primary); }

/* Comments */
.comments-section {
    margin-bottom: 40px;
}
.comment-item {
    border-bottom: 1px solid var(--color-border);
    padding: 16px 0;
}
.comment-author { font-weight: 600; color: var(--color-primary); margin-bottom: 4px; }
.comment-date { font-size: 0.78rem; color: var(--color-text-light); margin-left: 8px; }
.comment-form {
    background: var(--color-bg-alt);
    padding: 24px;
    border-radius: var(--radius);
    margin-top: 24px;
}
.comment-form .form-group { margin-bottom: 16px; }
.comment-form label { display: block; margin-bottom: 6px; font-weight: 600; }
.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-family: var(--font-base);
    font-size: 0.95rem;
}
.comment-form textarea { min-height: 120px; resize: vertical; }
.btn-submit {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.btn-submit:hover { background: var(--color-accent); }

/* ==================================================================
   GALLERY / ALBUM PAGES
   ================================================================== */
.album-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}
.album-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: var(--color-white);
}
.album-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.album-cover { height: 160px; overflow: hidden; }
.album-cover img { width: 100%; height: 100%; object-fit: cover; }
.album-info { padding: 14px; }
.album-info h3 { font-size: 1rem; margin-bottom: 4px; }
.album-info p { font-size: 0.82rem; color: var(--color-text-light); }

.photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 30px 0;
}
.photo-grid a { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1/1; }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.photo-grid a:hover img { transform: scale(1.08); }

/* Video grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}
.video-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--color-white);
    cursor: pointer;
    transition: var(--transition);
}
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.video-thumb { position: relative; height: 180px; overflow: hidden; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-play-icon {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.3);
    color: #fff; font-size: 2.5rem;
}
.video-card-body { padding: 14px; }
.video-card-body h3 { font-size: 0.95rem; margin-bottom: 4px; }
.video-card-body p { font-size: 0.82rem; color: var(--color-text-light); }

/* Video modal */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}
.video-modal.active { display: flex; }
.video-modal-content {
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16/9;
    position: relative;
}
.video-modal-content iframe,
.video-modal-iframe-wrap { width: 100%; height: 100%; border-radius: var(--radius); }
.video-modal-iframe-wrap iframe { width: 100%; height: 100%; border-radius: var(--radius); border: none; }
.video-thumb { cursor: pointer; }
.video-modal-close {
    position: absolute;
    top: -40px; right: 0;
    color: #fff;
    font-size: 1.6rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* ==================================================================
   PHOTOGRAPHY PAGE
   ================================================================== */
.photography-story {
    margin-bottom: 50px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 40px;
}
.photography-story h2 { margin-bottom: 12px; }
.photography-story-desc { margin-bottom: 16px; color: var(--color-text-light); }

/* ==================================================================
   SEARCH PAGE
   ================================================================== */
.search-result-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
}
.search-result-item h3 { margin-bottom: 6px; }
.search-result-item .post-card-meta { border-top: none; padding-top: 6px; }

/* ==================================================================
   404
   ================================================================== */
.error-404 {
    text-align: center;
    padding: 80px 20px;
}
.error-404 h1 { font-size: 5rem; }
.error-404 p { margin: 16px 0 24px; color: var(--color-text-light); }

/* ==================================================================
   UTILITIES
   ================================================================== */
.text-center { text-align: center; }
.mt-2 { margin-top: 20px; }
.mb-2 { margin-bottom: 20px; }

/* ==================================================================
   PHOTOGRAPHY PAGE
   ================================================================== */

/* --- Intro Banner --- */
.photo-hero {
    position: relative;
    width: 100%;
    min-height: 420px;
    background: #111;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.photo-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.55;
    transition: opacity 0.4s;
}
.photo-hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 24px;
    max-width: 760px;
}
.photo-hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 14px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.55);
}
.photo-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.82);
    font-weight: 400;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.photo-hero-placeholder {
    min-height: 300px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #0d2245 100%);
}

/* --- Filter Buttons --- */
.photo-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 20px;
    padding: 28px 20px 20px;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 10;
}
.photo-filter-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-base);
    font-size: 0.95rem;
    color: var(--color-text-light);
    padding: 6px 4px;
    position: relative;
    transition: color 0.2s;
    letter-spacing: 0.01em;
}
.photo-filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.25s ease;
}
.photo-filter-btn:hover { color: var(--color-text); }
.photo-filter-btn.active {
    color: var(--color-primary);
    font-weight: 600;
}
.photo-filter-btn.active::after { width: 100%; }

/* --- Masonry Grid --- */
.photo-masonry-section {
    padding: 32px 0 48px;
    background: var(--color-bg);
}
.photo-masonry {
    column-count: 3;
    column-gap: 12px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.photo-masonry-item {
    break-inside: avoid;
    margin-bottom: 12px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 4px;
    display: block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.photo-masonry-item.hidden {
    display: none;
}
.photo-masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.35s ease;
}
.photo-masonry-item:hover img {
    transform: scale(1.03);
}
.photo-masonry-empty {
    text-align: center;
    color: var(--color-text-light);
    padding: 60px 20px;
    font-size: 1.1rem;
    column-span: all;
}

/* --- Lightbox --- */
.photo-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.95);
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.photo-lightbox.open { display: flex; }
.photo-lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.photo-lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    border-radius: 3px;
}
.photo-lightbox-caption {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    margin-top: 12px;
    text-align: center;
    max-width: 600px;
    line-height: 1.5;
    min-height: 20px;
}
.photo-lightbox-close {
    position: fixed;
    top: 18px;
    right: 22px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.2rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.75;
    transition: opacity 0.2s;
    z-index: 10000;
    padding: 4px 10px;
}
.photo-lightbox-close:hover { opacity: 1; }
.photo-lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 16px 14px;
    z-index: 10000;
    transition: background 0.2s;
    border-radius: 3px;
}
.photo-lightbox-nav:hover { background: rgba(255,255,255,0.22); }
.photo-lightbox-prev { left: 12px; }
.photo-lightbox-next { right: 12px; }
.photo-lightbox-counter {
    position: fixed;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    letter-spacing: 0.05em;
}

/* --- Story Footer --- */
.photo-story-footer {
    background: var(--color-primary);
    color: #fff;
    padding: 56px 24px;
    text-align: center;
}
.photo-story-text {
    font-size: 1.08rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.87);
    max-width: 640px;
    margin: 0 auto 32px;
}
.photo-story-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 30px;
}
.photo-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-accent);
    color: #fff;
    padding: 11px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.photo-back-btn:hover { background: var(--color-accent-light); transform: translateX(-3px); }
.photo-story-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.photo-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.photo-social-link:hover { background: var(--color-accent); transform: translateY(-2px); }
.photo-social-link img.social-icon-img { width: 18px; height: 18px; filter: brightness(0) invert(1); }

/* ==================================================================
   PHOTOGRAPHY — SPOTLIGHT SECTION (featured + sidebar)
   ================================================================== */

.photo-spotlight {
    background: #0d0d0d;
    padding: 0;
}
.photo-spotlight-wrap {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 540px;
}

/* ── LEFT: Main Featured Card ── */
.photo-spotlight-main {
    flex: 1 1 0;
    min-width: 0;
    position: relative;
}
.photo-featured-card {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 540px;
    overflow: hidden;
    cursor: pointer;
    display: block;
}
.photo-featured-card-img {
    width: 100%;
    height: 100%;
    min-height: 540px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.photo-featured-card:hover .photo-featured-card-img { transform: scale(1.04); }

/* Expand icon */
.photo-featured-expand {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 4;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.78rem;
    opacity: 0;
    transition: opacity 0.2s, background 0.2s;
}
.photo-featured-card:hover .photo-featured-expand {
    opacity: 1;
    background: rgba(255,255,255,0.25);
}

/* Strong gradient — always ensures white text is readable over any photo */
.photo-featured-gradient {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0)    0%,
        rgba(0,0,0,0)   30%,
        rgba(0,0,0,0.45) 58%,
        rgba(0,0,0,0.82) 80%,
        rgba(0,0,0,0.93) 100%
    );
    pointer-events: none;
}

/* Text panel — sits on top of gradient, always white */
.photo-featured-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 28px 32px 26px;
    color: #fff;
}
.photo-featured-panel-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.photo-featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 50px;
}
.photo-featured-datestamp {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.photo-featured-title {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.18;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.photo-featured-desc {
    font-size: 0.93rem;
    line-height: 1.68;
    color: rgba(255,255,255,0.88);
    margin-bottom: 14px;
    max-width: 580px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.photo-featured-panel-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}
.photo-featured-credit {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    font-style: italic;
}
.photo-featured-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: transform 0.2s, opacity 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}
.photo-featured-more:hover { transform: translateX(3px); opacity: 0.85; }

/* ── RIGHT: Recent Stories Sidebar ── */
.photo-spotlight-sidebar {
    flex: 0 0 300px;
    min-width: 260px;
    background: #111;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255,255,255,0.07);
    overflow-y: auto;
    max-height: 540px;
}
.photo-sidebar-head {
    padding: 16px 18px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
}
.photo-sidebar-heading {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent);
}
.photo-sidebar-list {
    flex: 1;
    overflow-y: auto;
}
.photo-sidebar-list::-webkit-scrollbar { width: 3px; }
.photo-sidebar-list::-webkit-scrollbar-track { background: transparent; }
.photo-sidebar-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 2px; }

/* Each sidebar story card */
.photo-sidebar-item {
    display: flex;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.2s;
    overflow: hidden;
}
.photo-sidebar-item:hover { background: rgba(255,255,255,0.04); }
.photo-sidebar-item:last-child { border-bottom: none; }

.photo-sidebar-thumb-wrap {
    flex: 0 0 88px;
    position: relative;
    overflow: hidden;
}
.photo-sidebar-thumb {
    width: 88px;
    height: 100%;
    min-height: 80px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}
.photo-sidebar-item:hover .photo-sidebar-thumb { transform: scale(1.06); }
.photo-sidebar-thumb-hover {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.25s;
}
.photo-sidebar-item:hover .photo-sidebar-thumb-hover { background: rgba(0,0,0,0.15); }

.photo-sidebar-info {
    flex: 1;
    padding: 10px 13px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    min-width: 0;
}
.photo-sidebar-date {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: block;
}
.photo-sidebar-title {
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.photo-sidebar-credit {
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 3px;
    font-style: italic;
}
.photo-sidebar-more {
    font-size: 0.7rem;
    font-weight: 700;
    margin-top: 3px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    opacity: 0;
    transition: opacity 0.2s;
}
.photo-sidebar-item:hover .photo-sidebar-more { opacity: 0.9; }

/* ==================================================================
   HOMEPAGE — NEW DESIGN (2082)
   ================================================================== */

/* ── Hero ── */
.hp-hero {
    background: var(--color-bg-alt);
    border-bottom: 1px solid var(--color-border);
    padding: 60px 0;
}
.hp-hero-inner {
    display: flex;
    align-items: center;
    gap: 48px;
}
.hp-hero-left { flex: 1; min-width: 0; }
.hp-hero-right { flex-shrink: 0; }

.hp-hero-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
}
.hp-hero-name {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--color-text);
    line-height: 1.15;
    margin-bottom: 14px;
}
.hp-hero-bio {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 500px;
}
.hp-hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.hp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-primary);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.hp-btn-primary:hover { background: var(--color-primary-light); transform: translateY(-2px); }
.hp-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--color-primary);
    padding: 11px 26px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid var(--color-primary);
    transition: all 0.2s;
}
.hp-btn-outline:hover { background: var(--color-primary); color: #fff; transform: translateY(-2px); }

.hp-hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}
.hp-hero-stat { text-align: center; }
.hp-stat-num {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 4px;
}
.hp-stat-lbl {
    font-size: 0.78rem;
    color: var(--color-text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hp-hero-photo-wrap {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--color-accent);
    box-shadow:
        0 0 0 10px rgba(212,160,23,0.12),
        0 0 0 20px rgba(212,160,23,0.06),
        0 20px 60px rgba(0,0,0,0.18);
    position: relative;
    transition: transform 0.4s ease;
}
.hp-hero-photo-wrap:hover { transform: scale(1.03); }
.hp-hero-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.hp-hero-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-border) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--color-text-light);
}

/* ── Quick Access Icons ── */
.hp-icons-section {
    padding: 56px 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
}
.hp-icons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}
.hp-icon-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.hp-icon-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.hp-icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.hp-icon-body { flex: 1; min-width: 0; }
.hp-icon-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hp-icon-desc {
    font-size: 0.75rem;
    color: var(--color-text-light);
    line-height: 1.3;
}
.hp-icon-arrow {
    color: var(--color-text-light);
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: transform 0.2s, color 0.2s;
}
.hp-icon-card:hover .hp-icon-arrow { transform: translateX(4px); color: var(--color-accent); }

/* ── Shared section styles ── */
.hp-section { padding: 60px 0; border-bottom: 1px solid var(--color-border); }
.hp-sec-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}
.hp-sec-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 10px;
}
.hp-sec-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 18px;
    background: var(--color-accent);
    border-radius: 2px;
}
.hp-sec-more {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
}
.hp-sec-more:hover { gap: 8px; }

.hp-card-meta {
    display: flex;
    gap: 14px;
    font-size: 0.78rem;
    color: var(--color-text-light);
    flex-wrap: wrap;
}
.hp-card-meta i { margin-right: 3px; }

.hp-cat-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-accent);
    background: rgba(212,160,23,0.1);
    padding: 2px 8px;
    border-radius: 50px;
    margin-bottom: 6px;
}

/* ── Blog + Article row ── */
.hp-blog-row {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 32px;
    align-items: flex-start;
}
.hp-blog-cards { display: flex; flex-direction: column; gap: 16px; }
.hp-blog-card {
    display: flex;
    gap: 14px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}
.hp-blog-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); transform: translateY(-2px); }
.hp-blog-card-img-wrap {
    flex: 0 0 120px;
    height: 90px;
    overflow: hidden;
    position: relative;
}
.hp-blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s;
}
.hp-blog-card:hover .hp-blog-card-img { transform: scale(1.06); }
.hp-pin-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    background: var(--color-accent);
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
}
.hp-blog-card-body {
    flex: 1;
    padding: 12px 14px 12px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}
.hp-blog-card-title {
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.35;
}
.hp-blog-card-title a { color: var(--color-text); text-decoration: none; }
.hp-blog-card-title a:hover { color: var(--color-primary); }

/* Featured Article */
.hp-featured-article {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.hp-featured-article:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.10); }
.hp-feat-img-wrap {
    display: block;
    height: 180px;
    overflow: hidden;
    position: relative;
}
.hp-feat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}
.hp-featured-article:hover .hp-feat-img { transform: scale(1.04); }
.hp-feat-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.hp-feat-body { padding: 18px; }
.hp-feat-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
}
.hp-feat-title a { color: var(--color-text); text-decoration: none; }
.hp-feat-title a:hover { color: var(--color-primary); }
.hp-feat-desc {
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 12px;
}
.hp-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    margin-top: 8px;
    transition: gap 0.2s;
}
.hp-read-more:hover { gap: 10px; }

/* ── Quote ── */
.hp-quote-section {
    background: var(--color-bg-alt);
    padding: 60px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}
.hp-quote-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 36px 44px;
    width: 100%;
    position: relative;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    display: flex;
    gap: 32px;
    align-items: flex-start;
}
.hp-quote-card-left {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-top: 4px;
}
.hp-quote-big-mark {
    font-size: 5rem;
    color: var(--color-accent);
    font-family: Georgia, serif;
    line-height: 0.8;
    opacity: 0.55;
    display: block;
}
.hp-quote-card-body {
    flex: 1;
    min-width: 0;
}
.hp-quote-carousel { position: relative; }
.hp-quote-slide {
    display: none;
    flex-direction: column;
    gap: 14px;
    animation: hpQuoteFade 0.4s ease;
}
.hp-quote-slide.active { display: flex; }
@keyframes hpQuoteFade { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:translateY(0); } }
.hp-quote-mark { display: none; }
.hp-quote-text {
    font-size: 1.18rem;
    color: var(--color-text);
    line-height: 1.82;
    font-style: italic;
    margin: 0;
}
.hp-quote-author-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--color-border);
}
.hp-quote-photo {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-accent);
    flex-shrink: 0;
}
.hp-quote-photo-placeholder {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    font-size: 0.85rem;
    flex-shrink: 0;
}
.hp-quote-author {
    font-size: 0.82rem;
    color: var(--color-primary);
    font-weight: 700;
    font-style: normal;
}
.hp-quote-dots {
    display: flex;
    gap: 6px;
    margin-top: 16px;
}
.hp-quote-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.hp-quote-dot.active { background: var(--color-accent); transform: scale(1.35); }

/* ── Travel + Literature ── */
.hp-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.hp-travel-list { display: flex; flex-direction: column; gap: 12px; }
.hp-travel-card {
    display: flex;
    gap: 12px;
    align-items: center;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 10px;
    text-decoration: none;
    transition: box-shadow 0.2s, transform 0.2s;
}
.hp-travel-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); transform: translateY(-2px); }
.hp-travel-img-wrap {
    flex: 0 0 80px;
    height: 62px;
    border-radius: 7px;
    overflow: hidden;
}
.hp-travel-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.hp-travel-card:hover .hp-travel-img { transform: scale(1.08); }
.hp-travel-body { flex: 1; }
.hp-travel-title { font-size: 0.88rem; font-weight: 700; line-height: 1.35; margin-bottom: 4px; }
.hp-travel-title a { color: var(--color-text); text-decoration: none; }
.hp-travel-title a:hover { color: var(--color-primary); }

.hp-lit-list { display: flex; flex-direction: column; gap: 0; }
.hp-lit-item {
    display: flex;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
}
.hp-lit-item:last-child { border-bottom: none; }
.hp-lit-accent {
    width: 3px;
    background: var(--color-primary);
    border-radius: 0;
    flex-shrink: 0;
    align-self: stretch;
    margin-top: 2px;
}
.hp-lit-type {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 4px;
}
.hp-lit-title { font-size: 0.9rem; font-weight: 700; line-height: 1.35; margin-bottom: 4px; }
.hp-lit-title a { color: var(--color-text); text-decoration: none; }
.hp-lit-title a:hover { color: var(--color-primary); }

/* ── Photography strip ── */
.hp-photo-section { background: var(--color-bg-alt); }
.hp-photo-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
}
.hp-photo-item {
    display: block;
    position: relative;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
}
.hp-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}
.hp-photo-item:hover img { transform: scale(1.08); }
.hp-photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 0.7rem;
    padding: 5px 8px;
    opacity: 0;
    transition: opacity 0.25s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hp-photo-item:hover .hp-photo-caption { opacity: 1; }

/* ── Audio ── */
.hp-audio-section { background: var(--color-bg); }
.hp-audio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.hp-audio-card {
    display: flex;
    gap: 14px;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 14px;
}
.hp-audio-thumb {
    flex: 0 0 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
}
.hp-audio-thumb img { width: 100%; height: 100%; object-fit: cover; }
.hp-audio-placeholder {
    width: 100%;
    height: 100%;
    background: var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-text-light);
}
.hp-audio-title {
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text);
    line-height: 1.35;
}
.hp-embed-wrap { margin-top: 6px; }
.hp-embed-wrap iframe { width: 100% !important; border-radius: 6px; }
