/**
 * Education for Orphans Theme - Main Stylesheet
 * File: assets/css/main.css
 */

/* ==========================================
   CSS VARIABLES
   ========================================== */
:root {
    --primary-blue: #1e3a8a;
    --light-blue: #3b82f6;
    --accent-red: #dc2626;
    --dark-red: #b91c1c;
    --dark-gray: #1f2937;
    --medium-gray: #4b5563;
    --light-gray: #f3f4f6;
    --white: #ffffff;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    transition: var(--transition);
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 3rem;
    font-weight: 700;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--accent-red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.icon {
    width: 20px;
    height: 20px;
    filter: invert(1);
}

.icon-blue {
    width: 20px;
    height: 20px;
    fill: var(--primary-blue);
}

.icon-large {
    width: 50px;
    height: 50px;
    filter: invert(1);
}

.icon-large-blue {
    width: 50px;
    height: 50px;
    fill: var(--primary-blue);
}

.icon-large:hover,
.icon-large-blue:hover {
    transform: scale(1.1);
}



/* ==========================================
   HEADER
   ========================================== */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top {
    background: var(--primary-blue);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top a {
    color: var(--white);
    text-decoration: none;
    margin-left: 20px;
}

.header-top a:hover {
    opacity: 0.8;
}

/* Main Navigation */
.main-navigation {
    padding: 1rem 0;
}

.main-navigation .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-blue);
    text-decoration: none;
}

.logo-img {
    max-height: 55px;
    width: auto;
}

.logo span {
    color: var(--accent-red);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--light-blue);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
    text-decoration-color: var(--light-blue);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 999;
    padding: 20px;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-gray);
}

.mobile-close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary-blue);
    cursor: pointer;
    line-height: 1;
}

.mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-links li {
    margin-bottom: 20px;
}

.mobile-nav-links a {
    text-decoration: none;
    color: var(--dark-gray);
    font-size: 1.3rem;
    font-weight: 500;
    display: block;
    padding: 10px 0;
}

.mobile-nav-links a:hover {
    color: var(--light-blue);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero-home {
    position: relative;
    box-sizing: border-box;
    height: 55vh;
    min-height: 500px;
    max-height: 750px;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-home::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.55) 100%);
    z-index: 1;
}

.hero-home>* {
    position: relative;
    z-index: 2;
}

.hero-home .container {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: end;
    height: 100%;
    align-items: bottom;
    color: var(--white);
}

.hero h1,
.hero-home h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* ==========================================
   MISSION SECTION
   ========================================== */
.mission {
    padding: 80px 0;
    background: var(--white);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.mission p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1rem;
    color: var(--medium-gray);
}

.mission-image {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
    border-radius: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--white);
    font-size: 1.2rem;
    text-align: center;
    padding: 20px;
}

.mission-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.55) 100%);
    z-index: 1;
}

.mission-image>* {
    position: relative;
    z-index: 2;
}


/* ==========================================
   STATS SECTION
   ========================================== */
.stats {
    background: var(--light-gray);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--dark-gray);
    font-weight: 600;
}

/* ==========================================
   IMPACT SECTION
   ========================================== */
.impact {
    padding: 80px 0;
    background: var(--white);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.impact-card {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 15px;
    transition: var(--transition);
}

.impact-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.impact-icon {
    width: 60px;
    height: 60px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
}

.impact-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.impact-card p {
    color: var(--medium-gray);
    line-height: 1.8;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* ==========================================
   NEWSLETTER/BLOG STYLES
   ========================================== */
.newsletter-single {
    padding: 80px 0;
    background: var(--white);
}

.newsletter-article {
    max-width: 900px;
    margin: 0 auto;
}

.newsletter-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-gray);
}

.newsletter-header h1 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.newsletter-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.newsletter-meta .date {
    color: var(--medium-gray);
    font-size: 1.1rem;
}

.newsletter-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--dark-gray);
    margin-bottom: 3rem;
}

.newsletter-content p {
    margin-bottom: 1.5rem;
}

.newsletter-content h2 {
    color: var(--primary-blue);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.newsletter-content h3 {
    color: var(--dark-gray);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.newsletter-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.prayer-section,
.praise-section {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
}

.prayer-section h2,
.praise-section h2 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.prayer-section ul,
.praise-section ul {
    list-style: none;
    padding-left: 0;
}

.prayer-section li,
.praise-section li {
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
    color: var(--medium-gray);
}

.prayer-section li:last-child,
.praise-section li:last-child {
    border-bottom: none;
}

/* Blog Archive */
.blog-archive {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    height: 200px;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 100%);

}

.blog-card-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.blog-card-content {
    padding: 25px;
}

.blog-card h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.blog-card-excerpt {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray);
}

/* ==========================================
   STAFF/TEAM STYLES
   ========================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 80px 0;
}

.team-member {
    background: var(--white);
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-member-photo {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 100%);
    object-fit: cover;
}

.team-member-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.team-member h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.team-member-position {
    color: var(--accent-red);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-member-location {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-member-bio {
    color: var(--medium-gray);
    line-height: 1.6;
}

.team-member-detail {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 2px solid var(--light-gray);
}

.team-member-detail:last-child {
    border-bottom: none;
}

.team-member-photo-large {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.team-member-photo-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-photo {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    font-weight: bold;
}

.team-member-detail h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.team-member-detail .team-member-position {
    color: var(--accent-red);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-member-detail .team-member-location {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

.team-member-bio p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--medium-gray);
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 600;
}

.footer-section p,
.footer-section a {
    color: #d1d5db;
    text-decoration: none !important;
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--light-blue);
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 0.5rem;
}

.footer-menu li::marker {
    content: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4b5563;
    color: #9ca3af;
    font-size: 0.9rem;
}

/* ==========================================
   STICKY DONATE BUTTON
   ========================================== */
.sticky-donate {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10;
}

.sticky-donate a {
    background: var(--accent-red);
    color: var(--white);
    padding: 18px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.sticky-donate a:hover {
    background: var(--dark-red);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.5);
}

/* ==========================================
   PAGE HERO (Usado en About y Donate)
   ========================================== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================
   ABOUT PAGE STYLES
   ========================================== */
.about-page {
    background: var(--white);
}

.mission-statement {
    padding: 80px 0;
    background: var(--light-gray);
}

.mission-statement h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    text-align: center;
}

.mission-statement .lead {
    font-size: 1.3rem;
    line-height: 1.9;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: var(--medium-gray);
}

.leadership-team {
    padding: 80px 0;
}



.our-story {
    padding: 80px 0;
    background: var(--light-gray);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    text-align: center;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--medium-gray);
}

/* ==========================================
   DONATE PAGE STYLES
   ========================================== */
.donate-page {
    background: var(--white);
}

.donate-main {
    padding: 80px 0;
}

.donate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.donate-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    transition: var(--transition);
}

.donate-card:hover {
    border-color: var(--light-blue);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.donate-card.featured {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    border: none;
}

.donate-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donate-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.donate-card.featured h3 {
    color: var(--white);
}

.donate-card p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.donate-card.featured p {
    color: rgba(255, 255, 255, 0.95);
}

.check-info {
    background: rgba(0, 0, 0, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    line-height: 1.8;
}

.donate-card.featured .check-info {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.benefits-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: bold;
    font-size: 1.2rem;
}

.donate-note {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-top: 1rem;
}

.donate-card.featured .donate-note {
    color: rgba(255, 255, 255, 0.9);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

/* Donation Impact */
.donation-impact {
    padding: 80px 0;
    background: var(--light-gray);
}

.impact-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
}

.impact-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.impact-item p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Tax Info */
.tax-info {
    padding: 60px 0;
}

.info-box {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid var(--accent-red);
    max-width: 800px;
    margin: 0 auto;
}

.info-box h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.info-box p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--medium-gray);
}

.small-text {
    font-size: 0.9rem;
}

/* Other Ways to Support */
.other-ways {
    padding: 80px 0;
    background: var(--white);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.support-card {
    text-align: center;
    padding: 30px;
}

.support-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.support-card p {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.text-link {
    color: var(--light-blue);
    text-decoration: none;
    font-weight: 600;
}

.text-link:hover {
    text-decoration: underline;
}

/* Transparency */
.transparency {
    padding: 80px 0;
    background: var(--light-gray);
}

.lead-text {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    color: var(--medium-gray);
}

.transparency-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.transparency-stat {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
}

/* Donate Questions */
.donate-questions {
    padding: 80px 0;
    text-align: center;
}

.donate-questions h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.donate-questions p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--medium-gray);
}

/* ==========================================
   ARCHIVE PAGES ADDITIONAL STYLES
   ========================================== */
.blog-card-image.placeholder,
.team-member-photo.placeholder {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
}

.pagination {
    margin-top: 60px;
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    padding: 10px 20px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    text-decoration: none;
    color: var(--dark-gray);
    transition: var(--transition);
}

.pagination a:hover {
    background: var(--light-blue);
    color: var(--white);
    border-color: var(--light-blue);
}

.pagination .current {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.no-posts {
    text-align: center;
    padding: 60px 20px;
    font-size: 1.2rem;
    color: var(--medium-gray);
}

/* Help Types Grid */
.help-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.help-type-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.help-type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.help-type-image {
    height: 200px;
    overflow: hidden;
}

.help-type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.help-type-content {
    padding: 30px;
}

.help-type-content h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.help-type-description {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Single Staff Page */
.staff-hero {
    padding: 80px 0;
    background: var(--light-gray);
}

.staff-header-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: center;
}

.staff-photo-large {
    width: 100%;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.staff-photo-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-position-large {
    font-size: 1.5rem;
    color: var(--accent-red);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.staff-location-large {
    font-size: 1.1rem;
    color: var(--medium-gray);
}

.staff-bio {
    padding: 80px 0;
}

.staff-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--medium-gray);
}

.staff-content p {
    margin-bottom: 1.5rem;
}

.staff-cta {
    padding: 40px 0 80px;
    text-align: center;
}

/* Single Help Type */
.help-type-featured-image {
    padding: 0 0 60px;
}

.help-type-featured-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 15px;
}

.help-type-content-section {
    padding: 60px 0;
}

.help-type-main-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.9;
}

.help-type-main-content p {
    margin-bottom: 1.5rem;
    color: var(--medium-gray);
}

.help-type-action {
    padding: 80px 0;
    background: var(--light-gray);
}

.action-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.action-box h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.action-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--medium-gray);
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   BLOG/NEWSLETTER ARCHIVE STYLES
   ========================================== */
.blog-archive-page {
    background: var(--light-gray);
}

.blog-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    margin-bottom: 60px;
}

.blog-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.wp-block-list {
    padding: 15px 50px;
}

.editor-styles-wrapper .srfm-button,
.srfm-form-container .srfm-button {
    padding: 10px 40px !important;
    font-size: var(--srfm-btn-font-size) !important;
    font-weight: var(--srfm-btn-font-weight) !important;
    line-height: var(--srfm-btn-line-height) !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-family: 'Segoe UI' !important;
    background: #dc2626 !important;
    color: #ffffff !important;
    border: 1px solid #dc2626 !important;
}

.sureforms_form {
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    background: var(--white);
}


/* ==========================================
   SWIPER GENERAL STYLES
   ========================================== */

/* Contenedor principal del swiper */
.swiper {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin: 40px 0;
}

/* Wrapper de slides */
.swiper-wrapper {
    align-items: center;
}

/* Cada slide */
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Imagen dentro del slide */
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================
   NAVEGACIÓN (FLECHAS)
   ========================================== */

.swiper-button-next,
.swiper-button-prev {
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
    font-weight: bold;
    color: var(--primary-blue) !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--white);
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.swiper-button-next {
    right: 20px;
}

.swiper-button-prev {
    left: 20px;
}

.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

/* ==========================================
   PAGINACIÓN (DOTS)
   ========================================== */

.swiper-pagination {
    bottom: 20px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--white);
    opacity: 1;
    transition: var(--transition);
}

.swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.8);
}


.swiper-pagination-bullet-active {
    background: var(--white);
    transform: scale(1.2);
}

.swiper-pagination-fraction {
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.swiper-pagination-progressbar {
    background: rgba(255, 255, 255, 0.3);
}

.swiper-pagination-progressbar-fill {
    background: var(--accent-red);
}

/**
 * 404 ERROR PAGE STYLES
 * Agrega esto al final de assets/css/main.css
 */

/* ==========================================
   404 PAGE - MAIN SECTION
   ========================================== */

.error-404-page {
    background: var(--light-gray);
}

.error-404-section {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    text-align: center;
}

.error-404-content {
    max-width: 800px;
    margin: 0 auto;
}

/* ==========================================
   404 NUMBER (Animated)
   ========================================== */

.error-404-number {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 2rem;
    font-size: 10rem;
    font-weight: bold;
    line-height: 1;
}

.error-404-number .four {
    color: var(--white);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: bounce 2s ease-in-out infinite;
}

.error-404-number .four:first-child {
    animation-delay: 0s;
}

.error-404-number .four:last-child {
    animation-delay: 0.3s;
}

.error-404-number .zero {
    width: 180px;
    height: 180px;
    color: var(--white);
    animation: rotate 4s linear infinite;
}

.error-404-number .zero svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ==========================================
   404 TEXT CONTENT
   ========================================== */

.error-404-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.error-404-description {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.95;
}

/* ==========================================
   QUICK LINKS BUTTONS
   ========================================== */

.error-404-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.error-404-links .btn {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* ==========================================
   HELPFUL LINKS SECTION
   ========================================== */

.error-404-helpful {
    padding: 80px 0;
    background: var(--white);
}

.helpful-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.helpful-link-card {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.helpful-link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--light-blue);
}

.helpful-link-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.helpful-link-card p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.link-arrow {
    color: var(--light-blue);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.link-arrow:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
}