/*
Theme Name: A to Z Learning
Theme URI: https://www.atozlearningclub.org/
Author: A to Z Learning Club
Author URI: https://www.atozlearningclub.org/
Description: A custom WordPress theme for A to Z Learning Club - empowering children and families through literacy.
Requires at least: 6.2
Tested up to: 6.8
Requires PHP: 7.4
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: atozlearning
Tags: one-column, custom-menu, custom-logo, featured-images, education, blog
*/

/* ===========================
   Fonts
   =========================== */

/* Default Google Fonts (overridden by Customizer selections via CSS variables) */
@import url('https://fonts.googleapis.com/css2?family=Chewy&family=Caprasimo&family=Kalnia:wdth,wght@75..125,100..700&display=swap');

/* ===========================
   CSS Custom Properties
   =========================== */

:root {
    --atoz-heading-font: 'Kalnia', serif;
    --atoz-body-font: Arial, sans-serif;
}

/* ===========================
   Reset & Base
   =========================== */

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

body {
    font-family: var(--atoz-body-font, 'Arial', sans-serif);
    background-color: #f8f9fa;
    color: #01009b;
}

p {
    margin-bottom: 1rem;
}

header, h1, h2, h3, h4, h5, h6, .button, .mobile-nav {
    font-family: var(--atoz-heading-font, 'Kalnia', serif);
    font-weight: 500;
}

.center {
    text-align: center;
}

/* ===========================
   Forms
   =========================== */

input {
    padding: 1rem;
    border-radius: 3rem;
    outline: none;
    border: none;
    width: 100%;
    display: block;
    font-size: 1.7rem;
    border: 3px solid #01009b;
    box-shadow: 0.5rem 0.5rem #01009b;
}

.email-button {
    display: block;
    padding: 1rem 2rem;
    background-color: white;
    color: #FF6B6B;
    text-decoration: none;
    border-radius: 3rem;
    margin-top: 1rem;
    outline: none;
    border: none;
    width: 100%;
    cursor: pointer;
    font-size: 1.7rem;
}

.email-signup-text {
    max-width: 600px;
    margin: 2rem auto;
}

.email-signup-text h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.email-capture {
    max-width: 400px;
    margin: 2rem auto;
}

/* ===========================
   Layout
   =========================== */

.wrapper {
    max-width: 1200px;
    display: flex;
    margin-top: 2rem;
    margin-bottom: 2rem;
    margin: 0 auto;
}

/* ===========================
   Donation
   =========================== */

.donation {
    display: flex;
    justify-content: space-around;
    margin: 2rem;
}

.donation .column {
    width: 50%;
}

.donation h2 {
    font-size: 2.7rem;
    margin-bottom: 2rem;
}

.donation .right {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

/* ===========================
   Header
   =========================== */

.header {
    background: white;
    padding: 0.5rem;
    border-bottom: 3px solid #01009b;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.header img {
    border: 0px;
    border-radius: 0px;
}

.header-logo {
    max-width: 150px;
    margin-right: 2rem;
}

img.header-logo {
    background-color: white;
}

.header .button {
    margin-top: -0.5rem;
}

.nav {
    padding: 1rem;
}

.nav a {
    color: #01009b;
    text-decoration: none;
    margin: 0 1rem;
}

/* ===========================
   Hero
   =========================== */

.hero {
    background-color: #fff;
    padding: 3rem 1rem;
    text-align: center;
    min-height: 40rem;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero h2 {
    font-size: 5rem;
    text-shadow: 0.25rem 0.25rem 0.25rem rgba(0,0,0,0.3);
    color: white;
}

.hero p {
    font-size: 2rem;
    text-shadow: 0.25rem 0.25rem 0.25rem rgba(0,0,0,0.3);
    color: white;
}

.hero a {
    font-size: 2rem;
}

/* ===========================
   Features
   =========================== */

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 3rem 1rem;
    background-color: #f0f2f5;
}

.feature-card {
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    color: #01009b;
}

.feature-card h3 {
    font-size: 2rem;
}

.feature-card-image {
    display: inline-block;
    height: 20rem;
    width: 20rem;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 2rem;
    border-radius: 50%;
    border: 3px solid #01009b;
}

/* ===========================
   CTA
   =========================== */

.cta {
    background: linear-gradient(135deg, #FF6B6B, #FF9933);
    padding: 3rem 1rem;
    text-align: center;
    color: white;
}

/* ===========================
   Buttons
   =========================== */

.button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #75ce00;
    color: #01009b;
    text-decoration: none;
    border-radius: 4rem;
    border: 3px solid #01009b;
    box-shadow: 0.5rem 0.5rem #01009b;
    margin-top: 1rem;
    text-transform: uppercase;
    transition: all 500ms ease-out;
    font-family: var(--atoz-heading-font, 'Kalnia', serif);
    font-weight: 500;
}

.button:hover {
    box-shadow: 0rem 0rem #01009b;
    transform: translate(0.5rem, 0.5rem);
}

/* ===========================
   Images
   =========================== */

body img {
    border-radius: 10rem;
    border: 3px solid #01009b;
}

/* ===========================
   Our Story
   =========================== */

.our-story .container {
    display: flex;
    flex-wrap: wrap;
    padding: 3rem 1rem;
    background: linear-gradient(to bottom right, #dfc8ff, #ff9c9c);
}

.our-story h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.our-story .column {
    flex: 1;
    padding: 1rem;
}

.our-story .left {
    flex: 1 1 50%;
}

.our-story {
    font-size: 1.3rem;
}

.our-story .right {
    flex: 1 1 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.our-story img {
    max-width: 100%;
}

/* ===========================
   Footer
   =========================== */

.footer {
    background-color: #01009b;
    color: white;
    text-align: center;
    padding: 2rem;
    display: flex;
}

.footer a {
    color: white;
}

.footer-1 {
    width: 300px;
    text-align: center;
}

.footer-1 .header-logo {
    margin-bottom: 1rem;
}

.footer-2 {
    text-align: center;
    width: 100%;
}

.social-links {
    margin-top: 1rem;
    font-size: 2rem;
}

.social-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.social-links a:hover {
    text-decoration: underline;
}

/* ===========================
   Hamburger / Mobile Nav
   =========================== */

.hamburger {
    display: none;
    position: absolute;
    right: 20px;
    top: 20px;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background-color: #01009b;
    border-radius: 3px;
}

.student-images .wrapper {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.student-images img {
    max-width: 40%;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: #01009b;
    height: 100vh;
    flex-direction: column;
    width: 100%;
    padding-left: 2rem;
    padding-top: 2rem;
    z-index: 1;
}

.mobile-nav i {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: white;
    font-size: 2rem;
}

.mobile-nav a {
    display: block;
    padding: 0.5rem 0;
    text-decoration: none;
    font-size: 3rem;
    color: white;
}

.mobile-nav .button {
    margin-top: 2rem;
    font-size: 2rem;
}

.mob.donate-button {
    display: none;
}

/* ===========================
   Cards
   =========================== */

.card-image {
    width: 350px;
    height: 180px;
    border-radius: 2rem;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-contain {
    background-size: contain;
}

.link-card {
    display: flex;
    margin-bottom: 2rem;
    align-items: center;
}

.card-text {
    padding-left: 1rem;
}

/* ===========================
   Current Page
   =========================== */

.current-page {
    border-bottom: 3px solid #ff6704;
}

/* ===========================
   Utilities
   =========================== */

.px-2 {
    padding-left: 2rem;
    padding-right: 2rem;
}

/* ===========================
   BxSlider Overrides
   =========================== */

.bx-wrapper {
    box-shadow: none;
    -webkit-box-shadow: none;
}

.bx-wrapper img {
    border-radius: 3rem;
    margin: 0 auto !important;
}

.recent-events h2 {
    text-align: center;
    font-size: 3rem;
    margin: 2rem auto;
    display: inline-block;
}

video {
    max-width: 100%;
    background-color: #f2f2f2;
    border-radius: 3rem;
    border: 3px solid #01009b;
    margin: 0 auto;
    display: block;
    overflow: hidden;
}

.slider img {
    max-height: 800px;
}

iframe {
    width: 100%;
    height: 100vh;
}

/* ===========================
   Heading Sizes
   =========================== */

.heading-3rem {
    font-size: 3rem;
}

.heading-1p7rem {
    font-size: 1.7rem;
}

/* ===========================
   Home Quote
   =========================== */

#home-quote {
    padding: 2rem;
    background: linear-gradient(135deg, #8cff75, #33f8ff);
}

#home-quote .wrapper {
    flex-direction: column;
}

#home-quote a {
    margin-top: 2rem;
    font-size: 1.7rem;
    padding: 2rem;
    background-color: #b5c7ff;
}

/* ===========================
   Impact Report
   =========================== */

#impact-report-download {
    padding: 2rem;
    background: rgb(252, 157, 255);
}

#impact-report-cover-2025 {
    max-width: 400px;
    border-radius: 1rem;
}

#impact-report-download .wrapper {
    justify-content: space-between;
}

#impact-report-download .image-link {
    display: block;
}

#impact-report-download .button {
    display: block;
    margin-top: 2rem;
}

.line-separator {
    border-bottom: 3px solid #01009b;
    margin: 2rem 0rem;
}

.quote-mark {
    font-size: 7rem;
}

/* ===========================
   About Page
   =========================== */

.about-us {
    min-height: 30rem !important;
    position: relative;
}

.about-image {
    box-shadow: 0.5rem 0.5rem #01009b;
    border-radius: 3rem;
}

.about-us h2 {
    text-align: left;
    position: absolute;
    bottom: 4rem;
}

.board-members {
    margin: 4rem 0rem;
}

.member-list {
    display: flex;
    justify-content: space-around;
    margin-right: -6rem;
}

.board-members .wrapper {
    width: 100%;
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
}

.board-members h2 {
    text-align: center;
    font-size: 2.2rem;
}

.board-members ul {
    margin: 2rem;
    list-style: none;
}

/* ===========================
   Programs Page
   =========================== */

.programs-page h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.programs-page .wrapper {
    margin: 0rem auto;
    padding: 2rem;
}

.book-image {
    border-radius: 0rem;
    border: 0px;
    width: 500px;
    border-radius: 2rem;
}

.blue-bg {
    background-color: #0099ff;
}

.yellow-bg-flat {
    background: yellow;
}

.yellow-bg {
    background: linear-gradient(to right, yellow, rgba(0,0,0,0));
}

.atozf-section {
    background: linear-gradient(to right, rgba(0,0,0,0) 15%, #0099ff 85%);
}

.atoz-section {
    background: linear-gradient(to right, rgba(0,0,0,0) 15%, #75ce00 85%);
}

.little-free-libary-section {
    background: linear-gradient(to left, rgba(0,0,0,0) 15%, rgb(255, 183, 107) 85%);
}

.little-free-libary-button {
    background-color: rgb(36, 189, 201);
}

.program-signup {
    margin-top: 1rem;
    text-align: center;
}

.program-signup .button {
    width: auto;
    padding-left: 6rem;
    padding-right: 6rem;
}

.iss-row {
    flex-direction: row-reverse;
}

.iss-row .column.left {
    margin-left: 2rem;
}

.center-text {
    text-align: center;
}

/* ===========================
   Book Page
   =========================== */

.book-page h1 {
    font-size: 3rem;
}

.book-page .wrapper {
    margin: 2rem auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.book-page .book-image {
    border-radius: 0rem;
    border: 0px;
    min-width: 600px;
}

.book-page .column.left {
    padding-right: 2rem;
}

/* ===========================
   Wishlist Page
   =========================== */

.wishlist-page .about-us {
    min-height: 50rem !important;
    position: relative;
    background-position: center center;
}

.wishlist-page .about-us h2 {
    text-align: left;
    position: absolute;
    top: 2rem;
    right: 6rem;
    bottom: auto;
}

/* ===========================
   Family Hub Page
   =========================== */

.family-hub-page h1 {
    font-size: 3rem;
}

.family-hub-page .wrapper {
    margin: 0rem auto;
    padding: 2rem;
    display: flex;
}

.family-hub-page .first-w {
    padding-top: 2rem !important;
    text-align: center;
}

.family-hub-page .column.left {
    padding-right: 2rem;
    width: 50%;
}

.family-hub-page .column-img {
    padding-top: 2rem;
    text-align: center;
}

.family-hub-page .column-img img {
    width: 90%;
    border: 0px;
}

.family-hub-page .column.right {
    width: 50%;
}

.family-hub-page .book .container {
    background: linear-gradient(to bottom right, #dfc8ff, #ff9c9c);
}

.family-hub-page .heading-3rem {
    border-bottom: 7px solid rgb(252, 157, 157);
    padding-bottom: 2rem;
    margin: 0 auto;
}

.family-hub-link {
    margin: 2rem 0rem;
    font-size: 2rem;
    padding: 2rem;
    background-color: #b5c7ff;
}

/* ===========================
   Blog Page
   =========================== */

.blog-hero {
    min-height: 20rem !important;
}

.blog-hero h2 {
    font-size: 4rem;
}

.blog-content {
    padding: 2rem 1rem;
}

.blog-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.blog-card {
    background: white;
    border-radius: 1.5rem;
    border: 3px solid #01009b;
    overflow: hidden;
    transition: transform 300ms ease, box-shadow 300ms ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0.5rem 0.5rem #01009b;
}

.blog-card-image-link {
    display: block;
    overflow: hidden;
}

.blog-card img.blog-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border: 0;
    border-radius: 0;
    transition: transform 400ms ease;
}

.blog-card:hover img.blog-card-image {
    transform: scale(1.05);
}

.blog-card-image-placeholder {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #dfc8ff, #ff9c9c);
}

.blog-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: #686868;
    margin-bottom: 0.75rem;
    font-family: var(--atoz-body-font, Arial, sans-serif);
}

.blog-card-category {
    background-color: #75ce00;
    color: #01009b;
    padding: 0.15rem 0.6rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-card-title {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.blog-card-title a {
    color: #01009b;
    text-decoration: none;
}

.blog-card-title a:hover {
    text-decoration: underline;
}

.blog-card-excerpt {
    font-size: 0.95rem;
    color: #333;
    flex: 1;
    font-family: var(--atoz-body-font, Arial, sans-serif);
}

.blog-card-excerpt p {
    margin-bottom: 0;
}

.blog-card-read-more {
    display: inline-block;
    margin-top: 1rem;
    color: #01009b;
    font-weight: 700;
    text-decoration: none;
    font-family: var(--atoz-heading-font, 'Kalnia', serif);
    transition: color 200ms ease;
}

.blog-card-read-more:hover {
    color: #75ce00;
}

/* Blog Pagination */

.blog-pagination {
    margin: 3rem 0;
    text-align: center;
}

.blog-pagination ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
}

.blog-pagination li {
    display: inline-block;
}

.blog-pagination a,
.blog-pagination span {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border: 3px solid #01009b;
    border-radius: 2rem;
    color: #01009b;
    text-decoration: none;
    font-family: var(--atoz-heading-font, 'Kalnia', serif);
    font-weight: 500;
    transition: all 300ms ease;
}

.blog-pagination a:hover {
    background-color: #75ce00;
    color: #01009b;
}

.blog-pagination .current {
    background-color: #01009b;
    color: white;
}

/* Blog No Posts */

.blog-no-posts {
    text-align: center;
    padding: 4rem 2rem;
}

.blog-no-posts h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.blog-no-posts p {
    font-size: 1.2rem;
    color: #686868;
}

/* ===========================
   Single Post Page
   =========================== */

.single-post-page {
    background-color: #f8f9fa;
}

/* Hero */
.single-hero {
    position: relative;
    min-height: 22rem;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.single-hero--no-image {
    background: linear-gradient(135deg, #01009b 0%, #3a3aff 100%);
    min-height: 16rem;
    align-items: center;
}

.single-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(1, 0, 155, 0.85) 0%, rgba(1, 0, 155, 0.3) 100%);
}

.single-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.single-hero--no-image .single-hero-content {
    margin-bottom: 0;
}

.single-hero-content h1 {
    font-family: 'Chewy', cursive;
    font-size: 2.8rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

/* Container */
.single-post-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 2rem;
}

/* Breadcrumb */
.single-breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #686868;
}

.single-breadcrumb a {
    color: #01009b;
    text-decoration: none;
    transition: color 0.2s;
}

.single-breadcrumb a:hover {
    color: #75ce00;
}

.single-breadcrumb .separator {
    margin: 0 0.5rem;
    color: #aaa;
}

.single-breadcrumb .current {
    color: #999;
}

/* Article */
.single-article {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* Meta */
.single-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.single-meta-left {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.single-meta-date,
.single-meta-author {
    font-size: 0.95rem;
    color: #686868;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.single-meta-date i,
.single-meta-author i {
    color: #01009b;
}

.single-category-badge {
    display: inline-block;
    background: #75ce00;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}

.single-category-badge:hover {
    background: #01009b;
}

/* Content */
.single-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.single-content h2 {
    font-family: 'Chewy', cursive;
    font-size: 2rem;
    color: #01009b;
    margin: 2rem 0 1rem;
}

.single-content h3 {
    font-family: 'Chewy', cursive;
    font-size: 1.5rem;
    color: #01009b;
    margin: 1.5rem 0 0.75rem;
}

.single-content p {
    margin-bottom: 1.25rem;
}

.single-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.single-content a {
    color: #01009b;
    text-decoration: underline;
    transition: color 0.2s;
}

.single-content a:hover {
    color: #75ce00;
}

.single-content ul,
.single-content ol {
    margin: 1rem 0 1.5rem 2rem;
}

.single-content li {
    margin-bottom: 0.5rem;
}

.single-content blockquote {
    border-left: 4px solid #75ce00;
    background: #f5f8ff;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #444;
}

.single-content pre {
    background: #1e1e2e;
    color: #cdd6f4;
    padding: 1.25rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.single-content code {
    background: #eef;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.95rem;
}

.single-content pre code {
    background: none;
    padding: 0;
}

/* Tags */
.single-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
}

.single-tags i {
    color: #01009b;
    margin-right: 0.25rem;
}

.single-tag {
    display: inline-block;
    background: #f0f0f5;
    color: #01009b;
    font-size: 0.85rem;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.single-tag:hover {
    background: #01009b;
    color: #fff;
}

/* Share */
.single-share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
}

.single-share-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #01009b;
}

.single-share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f0f0f5;
    color: #01009b;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.single-share-link:hover {
    background: #01009b;
    color: #fff;
    transform: scale(1.1);
}

/* Post navigation */
.single-post-nav {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.single-nav-link {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.25rem;
    background: #fff;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s, transform 0.2s;
}

.single-nav-link:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.single-nav-placeholder {
    background: transparent;
    box-shadow: none;
}

.single-nav-next {
    text-align: right;
}

.single-nav-direction {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #75ce00;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.single-nav-next .single-nav-direction {
    justify-content: flex-end;
}

.single-nav-title {
    font-size: 1rem;
    color: #01009b;
    font-weight: 600;
    line-height: 1.4;
}

/* Comments */
.single-comments {
    margin-top: 2.5rem;
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.single-comments h3,
.single-comments .comments-title {
    font-family: 'Chewy', cursive;
    color: #01009b;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.single-comments .comment-respond input[type="text"],
.single-comments .comment-respond input[type="email"],
.single-comments .comment-respond input[type="url"],
.single-comments .comment-respond textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: border-color 0.2s;
}

.single-comments .comment-respond input:focus,
.single-comments .comment-respond textarea:focus {
    border-color: #01009b;
    outline: none;
}

.single-comments .comment-respond .submit {
    background: #75ce00;
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.single-comments .comment-respond .submit:hover {
    background: #01009b;
}

/* ===========================
   Responsive: Desktop
   =========================== */

@media screen and (min-width: 768px) {
    .donation .column.right {
        margin-left: 2rem;
    }
}

/* ===========================
   Responsive: Tablet
   =========================== */

@media screen and (max-width: 850px) {
    .nav a {
        font-size: .8rem;
        margin: 0 .5rem;
    }
}

/* ===========================
   Responsive: Mobile
   =========================== */

@media screen and (max-width: 768px) {
    .header {
        justify-content: space-between;
    }

    .header .nav, .header .donate-button {
        display: none;
    }

    .header-logo {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .hero {
        background-position: top right;
    }

    .hero h2 {
        font-size: 3rem;
        color: white;
    }

    .our-story .container {
        display: block;
    }

    .hamburger {
        display: flex;
    }

    .header .nav {
        display: none;
    }

    .wrapper {
        flex-direction: column-reverse;
    }

    .mob.donate-button {
        display: inline-block !important;
        padding: 1rem 2rem !important;
    }

    .donation .column {
        width: 100%;
    }

    .student-images .wrapper {
        display: block;
        text-align: center;
    }

    .student-images img {
        max-width: 80%;
    }

    .student-images img:first-child {
        margin-bottom: 2rem;
    }

    .link-card {
        flex-direction: column;
        margin-bottom: 2rem;
    }

    #impact-report-download .wrapper div:first-child {
        margin-top: 4rem;
    }

    #impact-report-cover-2025 {
        max-width: 80%;
    }

    /* About mobile */
    .member-list {
        display: block;
        margin: 2rem;
    }

    .member-list ul {
        margin: 0rem;
    }

    .board-members .wrapper {
        width: 100%;
        display: block;
        margin: 0 auto;
    }

    /* Programs mobile */
    .programs-page .iss-row {
        flex-direction: column-reverse;
    }

    .programs-page .iss-row .column.left,
    .programs-page .iss-row .column.right {
        margin-left: 0rem;
        margin-right: 0rem;
    }

    .yellow-bg {
        background: linear-gradient(to bottom, yellow, rgba(0,0,0,0));
    }

    .atozf-section {
        background: linear-gradient(to top, rgba(0,0,0,0) 15%, #0099ff 85%);
    }

    .atoz-section {
        background: linear-gradient(to top, rgba(0,0,0,0) 15%, #75ce00 85%);
    }

    .little-free-libary-section {
        background: linear-gradient(to top, rgba(0,0,0,0) 15%, rgb(255, 183, 107) 85%);
    }

    .programs-page .column.left {
        margin-top: 2rem;
        margin-right: 0rem;
    }

    .programs-page .column.right {
        text-align: center;
    }

    .book-image {
        max-width: 100%;
        min-width: 0px;
    }

    /* Book mobile */
    .book-page .wrapper {
        margin: 2rem;
    }

    .book-page .column.left {
        margin-top: 2rem;
        padding-right: 0rem;
    }

    .book-page .column.right {
        text-align: center;
    }

    .book-page .book-image {
        max-width: 100%;
        min-width: 0px;
    }

    /* Wishlist mobile */
    .wishlist-page .about-us {
        min-height: 40rem !important;
        background-position: right -25rem center;
    }

    .wishlist-page .about-us h2 {
        top: 2rem;
        right: 1rem;
    }

    /* Family Hub mobile */
    .family-hub-page .wrapper {
        padding: 0rem 2rem;
        flex-direction: column;
    }

    /* Blog mobile */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-hero {
        min-height: 15rem !important;
    }

    .blog-hero h2 {
        font-size: 3rem;
    }

    /* Single post mobile */
    .single-hero {
        min-height: 16rem;
    }

    .single-hero-content h1 {
        font-size: 1.8rem;
    }

    .single-post-container {
        padding: 1.5rem 1rem;
    }

    .single-article {
        padding: 1.5rem;
    }

    .single-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .single-post-nav {
        flex-direction: column;
    }

    .single-nav-next {
        text-align: left;
    }

    .single-nav-next .single-nav-direction {
        justify-content: flex-start;
    }

    .single-share {
        flex-wrap: wrap;
    }

    .family-hub-page .column.left {
        margin-top: 2rem;
        padding-right: 0rem;
        margin-bottom: 2rem;
        width: 100%;
    }

    .family-hub-page .column.right {
        text-align: center;
        width: 100%;
    }
}
