/* ===== FONTS & IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&family=Open+Sans:wght@400;500;600&display=swap');

/* ===== RESET & BASE ===== */
* {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #e0e0e0;
    background-color: #0a0a0a;
    letter-spacing: 0.3px;
}

img {
    vertical-align: middle;
    max-width: 100%;
    display: inline-block;
    border: 0;
}

a {
    text-decoration: underline;
    background-color: transparent;
    color: #e0e0e0;
}

a:active, 
a:hover {
    outline: 0;
    color: #fff;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 10px;
    font-weight: 700;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

h1 {
    margin-top: 20px;
    font-size: 38px;
    line-height: 44px;
}

h2 {
    margin-top: 20px;
    font-size: 32px;
    line-height: 36px;
}

h3 {
    margin-top: 20px;
    font-size: 24px;
    line-height: 30px;
}

h4 {
    margin-top: 10px;
    font-size: 18px;
    line-height: 24px;
}

p {
    margin-top: 0;
    margin-bottom: 10px;
    color: #c0c0c0;
}

/* ===== HEADER & NAVIGATION ===== */
.site-header {
    background-color: #000;
    padding: 0;
    border-bottom: 1px solid #222;
}

.header-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 25px;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 19px 0;
}

.logo-image {
    width: 70px;
    height: auto;
}

.logo-text {
    color: #fff;
    margin-left: 10px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.nav-menu {
    display: flex;
    gap: 5px;
}

.nav-link {
    color: #e0e0e0;
    text-transform: uppercase;
    padding: 10px 14px;
    margin: 0 5px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.2s;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: #fff;
    background-color: #1a1a1a;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    transform: scale(1.02);
}

.nav-link.active {
    color: #fff;
    text-decoration: underline;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: none;
}

.mobile-menu-toggle img {
    width: 30px;
    height: auto;
    margin-left: 30px;
    filter: invert(1);
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    z-index: 1000;
    background-color: #0f0f0f;
    padding-top: 20px;
    transition: right 0.4s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    border-left: 1px solid #222;
}

.mobile-nav.is-active {
    right: 0;
}

.mobile-nav-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-nav-header {
    text-align: right;
    padding: 10px 20px;
}

.mobile-nav-close {
    cursor: pointer;
    display: inline-block;
    padding: 10px;
    transition: all 0.2s;
}

.mobile-nav-close:hover {
    transform: scale(1.1);
}

.mobile-nav-close img {
    width: 30px;
    height: 30px;
    filter: invert(1);
}

.mobile-nav-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.mobile-nav-links {
    margin-bottom: 30px;
}

.mobile-nav-grid {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.mobile-nav-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all 0.2s;
    background-color: #1a1a1a;
}

.mobile-nav-card:hover {
    background-color: #222;
    border-color: #333;
    transform: translateY(-2px);
}

.mobile-nav-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

.mobile-nav-label {
    color: #e0e0e0;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.mobile-nav-ministries {
    margin: 20px 0;
}

.mobile-nav-link {
    display: block;
    color: #e0e0e0;
    text-align: center;
    padding: 15px;
    text-decoration: none;
    transition: all 0.2s;
    font-family: 'Open Sans', sans-serif;
}

.mobile-nav-link:hover {
    background-color: #1a1a1a;
    color: #fff;
}

.mobile-nav-footer {
    background-color: #0f0f0f;
    border-top: 1px solid #222;
    padding: 30px;
}

.mobile-nav-location {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-nav-location img {
    width: 80px;
}

.mobile-nav-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.mobile-nav-address {
    font-size: 12px;
    text-transform: uppercase;
    color: #999;
}

/* ===== HERO BANNER ===== */
.hero-banner {
    background-image: radial-gradient(circle, rgba(0,0,0,0.4), rgba(0,0,0,0.5)), 
                      url(../images/banner/hero-banner.jpg);
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 62vh;
}

.hero-content {
    text-align: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5px;
}

/* Page-Specific Heroes */
.hero-banner.about-hero {
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), 
                      url(../images/banner/hero-banner.jpg);
}

.hero-banner.media-hero {
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), 
                      url(../images/banner/hero-banner.jpg);
}

.hero-banner.shop-hero {
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), 
                      url(../images/banner/hero-banner.jpg);
}

.hero-banner.bible-hero {
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), 
                      url(../images/banner/hero-banner.jpg);
}

/* Hero content overlay */
.hero-content {
    text-align: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

.hero-title {
    color: #fff;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero-subtitle {
    color: #e0e0e0;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 2px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

/* ===== FEATURED SERMON SECTION ===== */
.featured-sermon-section {
    background-color: #0a0a0a;
    padding: 52px 52px 40px;
}

.featured-sermon-card {
    border-radius: 10px;
    width: 100%;
    max-width: 1300px;
    height: 75vh;
    max-height: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0,0,0,0.5);
    border: 1px solid #222;
}

.sermon-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sermon-thumbnail {
    object-fit: cover;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    filter: brightness(0.8);
}

.sermon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0) 39%, rgba(0,0,0,0.85) 71%);
    border-radius: 10px;
    z-index: 2;
}

.sermon-play-area {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
    z-index: 3;
}

.sermon-content {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 5;
    width: 50%;
    padding: 35px;
}

.sermon-badge {
    background-color: rgba(40,40,40,0.8);
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 12px;
    padding: 5px 13px;
}

.badge-text {
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    letter-spacing: 0.5px;
}

.speaker-info {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.speaker-info:hover {
    transform: translateY(-2px);
}

.speaker-avatar {
    border-radius: 50%;
    width: 30px;
    height: 30px;
    margin-right: 8px;
}

.speaker-name {
    color: #fff;
    font-size: 15px;
    text-decoration: underline;
}

.sermon-title {
    color: #fff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    margin: 0 0 8px 0;
    font-family: 'Montserrat', sans-serif;
}

.sermon-series {
    color: #e0e0e0;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 15px;
}

.sermon-actions {
    margin-top: 15px;
}

/* ===== GIVE PAGE STYLES ===== */

/* Give Tabs Navigation */
.give-tabs-section {
    background-color: #0f0f0f;
    border-bottom: 1px solid #222;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.give-tabs-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 0;
}

.give-tab {
    background: none;
    border: none;
    color: #999;
    padding: 20px 40px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
    border-bottom: 3px solid transparent;
}

.give-tab:hover {
    color: #fff;
    background-color: #1a1a1a;
}

.give-tab.active {
    color: #fff;
    border-bottom-color: #fff;
    background-color: #0a0a0a;
}

/* Give Content Sections */
.give-content-section {
    display: none;
}

.give-content-section.active {
    display: block;
}

.give-section {
    padding: 80px 52px;
    background-color: #0a0a0a;
}

.give-section-alt {
    background-color: #0f0f0f;
}

.give-container {
    max-width: 1300px;
    margin: 0 auto;
}

.give-section-title {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Online Giving Hero Card */
.give-hero-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background-color: #141414;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #222;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.give-card-image {
    height: 100%;
    min-height: 400px;
}

.give-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.give-card-image-fallback {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
}

.give-card-content {
    padding: 40px 60px 40px 0;
}

.give-card-title {
    font-size: 42px;
    line-height: 48px;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.give-card-text {
    font-size: 16px;
    line-height: 26px;
    color: #c0c0c0;
    margin-bottom: 30px;
}

.give-card-note {
    margin-top: 15px;
    font-size: 13px;
    color: #999;
    font-style: italic;
}

/* Give Methods Grid */
.give-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.give-method-card {
    background-color: #141414;
    border: 1px solid #222;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.give-method-card:hover {
    border-color: #333;
    transform: translateY(-5px);
    box-shadow: 0 5px 30px rgba(255,255,255,0.05);
}

.give-method-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
    border-radius: 50%;
    border: 2px solid #333;
}

.give-method-icon img {
    width: 40px;
    height: 40px;
    filter: invert(1);
}

.give-method-icon svg {
    width: 40px;
    height: 40px;
    stroke: #fff;
}

.give-method-title {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 15px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.give-method-text {
    font-size: 15px;
    line-height: 24px;
    color: #c0c0c0;
    margin-bottom: 20px;
}

/* Bank Details */
.bank-details {
    background-color: #0a0a0a;
    border-radius: 6px;
    padding: 20px;
    margin-top: 20px;
}

.bank-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #222;
}

.bank-detail-row:last-child {
    border-bottom: none;
}

.bank-detail-column {
    display: flex;
    flex-direction: column;
    padding: 12px 0;
    border-bottom: 1px solid #222;
}

.bank-label {
    font-weight: 600;
    color: #999;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 8px;
}

.bank-value {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-align: right;
}

.bank-address {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bank-address div {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
}

/* Why Give Section */
.why-give-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.why-give-card {
    background-color: #141414;
    border: 1px solid #222;
    border-radius: 10px;
    padding: 50px 40px;
    box-shadow: 0 0 25px rgba(0,0,0,0.3);
}

.why-give-title {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 25px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.why-give-content p {
    font-size: 16px;
    line-height: 26px;
    color: #c0c0c0;
    margin-bottom: 20px;
}

.scripture-quote {
    background-color: #0a0a0a;
    border-left: 4px solid #fff;
    padding: 25px;
    margin: 30px 0;
    font-size: 16px;
    line-height: 28px;
    color: #e0e0e0;
    font-style: italic;
    border-radius: 4px;
}

.scripture-quote cite {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    color: #999;
    font-style: normal;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.impact-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.impact-list li {
    padding: 12px 0 12px 30px;
    color: #c0c0c0;
    font-size: 15px;
    line-height: 24px;
    position: relative;
}

.impact-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
}

/* ===== ABOUT PAGE STYLES ===== */

/* About Intro Section */
.about-intro-section {
    background-color: #0a0a0a;
    padding: 80px 52px;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
}

.about-intro-card {
    background-color: #141414;
    border: 1px solid #222;
    border-radius: 10px;
    padding: 60px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.about-intro-title {
    font-size: 42px;
    line-height: 50px;
    margin-bottom: 30px;
    text-align: center;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-intro-text {
    color: #c0c0c0;
    font-size: 17px;
    line-height: 30px;
}

.about-intro-text p {
    margin-bottom: 25px;
    color: #c0c0c0;
    font-size: 17px;
    line-height: 30px;
}

.about-intro-text p:last-child {
    margin-bottom: 0;
}

/* ===== TIMELINE STYLES ===== */

.timeline-section {
    background-color: #0f0f0f;
    padding: 100px 52px 120px;
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-main-title {
    font-size: 48px;
    line-height: 56px;
    margin-bottom: 15px;
    text-align: center;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.timeline-subtitle {
    font-size: 18px;
    line-height: 26px;
    color: #999;
    text-align: center;
    margin-bottom: 80px;
    font-family: 'Open Sans', sans-serif;
}

/* Timeline Structure */
.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, 
        #222 0%, 
        #fff 20%, 
        #fff 80%, 
        #222 100%);
}

/* Timeline Items */
.timeline-item {
    display: flex;
    margin-bottom: 80px;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.timeline-item.timeline-item-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Left Items */
.timeline-item-left {
    justify-content: flex-start;
    padding-right: 50%;
}

.timeline-item-left .timeline-content {
    margin-right: 40px;
    text-align: right;
}

/* Right Items */
.timeline-item-right {
    justify-content: flex-end;
    padding-left: 50%;
}

.timeline-item-right .timeline-content {
    margin-left: 40px;
    text-align: left;
}

.timeline-action {
    margin-top: 20px;
    text-align: center;
}

.timeline-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    text-transform: none;
    letter-spacing: 0.5px;
    border: 2px solid #fff;
    cursor: pointer;
}

.timeline-btn:hover {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,255,255,0.2);
    text-decoration: none;
}

/* Timeline items that only contain year badges (no content) */
/* Left side year badges - position to the LEFT of the dot */
.timeline-item-left:not(:has(.timeline-content)) > .timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-120%) translateY(-50%);
    margin: 0;
    top: 18px;
    z-index: 5;
}

/* Right side year badges - position to the RIGHT of the dot */
.timeline-item-right:not(:has(.timeline-content)) > .timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(20%) translateY(-50%);
    margin: 0;
    top: 18px;
    z-index: 5;
}

/* Timeline Content */
.timeline-content {
    background-color: #141414;
    border: 1px solid #222;
    border-radius: 10px;
    padding: 30px;
    max-width: 500px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: #333;
    box-shadow: 0 8px 30px rgba(255,255,255,0.05);
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.timeline-month {
    display: inline-block;
    background: linear-gradient(135deg, #666 0%, #888 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.timeline-title {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 15px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.timeline-text {
    font-size: 15px;
    line-height: 26px;
    color: #c0c0c0;
    margin-bottom: 20px;
}

/* Timeline Images */
.timeline-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
}

.timeline-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Timeline Dots */
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 4px solid #0a0a0a;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 0 4px #222;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    transform: translateX(-50%) scale(1.3);
    box-shadow: 0 0 0 6px #333, 0 0 20px rgba(255,255,255,0.3);
}

/* Adjust dot position for standalone year items */
.timeline-item-left:not(:has(.timeline-content)) .timeline-dot,
.timeline-item-right:not(:has(.timeline-content)) .timeline-dot {
    top: 8px;
}

/* Animation Delays for Staggered Effect */
.timeline-item:nth-child(2) { transition-delay: 0.1s; }
.timeline-item:nth-child(3) { transition-delay: 0.2s; }
.timeline-item:nth-child(4) { transition-delay: 0.3s; }
.timeline-item:nth-child(5) { transition-delay: 0.4s; }
.timeline-item:nth-child(6) { transition-delay: 0.5s; }
.timeline-item:nth-child(7) { transition-delay: 0.6s; }
.timeline-item:nth-child(8) { transition-delay: 0.7s; }
.timeline-item:nth-child(9) { transition-delay: 0.8s; }

/* ===== BUTTONS ===== */
.btn {
    color: #000;
    text-transform: uppercase;
    background-color: #fff;
    border-radius: 4px;
    margin-right: 15px;
    padding: 13px 18px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    letter-spacing: 0.5px;
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 10px rgba(255,255,255,0.3);
    background-color: #f0f0f0;
}

.btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.btn-large {
    padding: 18px 40px;
    font-size: 16px;
}

/* ===== CONTENT GRID SECTION ===== */
.content-section {
    background-color: #0a0a0a;
    padding: 0 52px 120px;
}

.content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 0.5fr;
    grid-gap: 40px;
}

.cards-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: -46px;
}

/* ===== FEATURE CARDS ===== */
.feature-card {
    border: 1px solid #222;
    border-radius: 10px;
    width: 100%;
    height: 500px;
    position: relative;
    box-shadow: 0 0 25px rgba(0,0,0,0.5);
    text-decoration: none;
    transition: all 0.2s;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.feature-card:hover {
    border-color: #444;
    transform: translateY(-5px);
    box-shadow: 0 2px 25px rgba(255,255,255,0.1);
}

.feature-card.ministry {
    background-image: linear-gradient(rgba(0,0,0,0) 42%, rgba(0,0,0,0.85) 72%), 
                      url(../images/main/travel-cover.png);
}

.feature-card.church {
    background-image: linear-gradient(rgba(0,0,0,0) 42%, rgba(0,0,0,0.85) 72%), 
                      url(../images/main/church-cover.png);
}

.feature-card.television {
    background-image: linear-gradient(rgba(0,0,0,0) 42%, rgba(0,0,0,0.85) 72%), 
                      url(../images/main/tv-cover.png);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 80%;
    padding: 35px;
    z-index: 5;
}

.card-title {
    color: #fff;
    margin-bottom: 4px;
    font-size: 30px;
    font-weight: 700;
    line-height: 34px;
    font-family: 'Montserrat', sans-serif;
}

.card-description {
    color: #e0e0e0;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 20px;
}

.card-button {
    color: #000;
    text-transform: uppercase;
    background-color: #fff;
    border-radius: 4px;
    padding: 13px 18px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    letter-spacing: 0.5px;
}

/* ===== SIDEBAR ===== */
.sidebar {
    width: 100%;
}

.sidebar-sticky {
    position: sticky;
    top: 40px;
}

.sidebar-card {
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 40px;
    padding: 20px 20px 30px;
    box-shadow: 0 0 25px rgba(0,0,0,0.3);
}

.sidebar-heading {
    font-size: 24px;
    font-weight: 600;
    line-height: 35px;
    margin: 0 0 10px 0;
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
}

.sidebar-text {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 19px;
    color: #333;
}

.sidebar-link {
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 16px 13px;
    text-decoration: none;
    transition: all 0.2s;
}

.sidebar-link:hover {
    background-color: #e8e8e8;
    border-top: 1px solid #d0d0d0;
    border-bottom: 1px solid #d0d0d0;
    transform: scale(1.02);
}

.sidebar-icon {
    width: 32px;
    max-height: 32px;
    margin-right: 15px;
}

.sidebar-link-text {
    color: #1a1a1a;
    font-size: 17px;
    font-weight: 500;
}

.sidebar-btn {
    color: #fff;
    text-align: center;
    text-transform: none;
    background-color: #000;
    border-radius: 4px;
    width: 100%;
    margin-top: 22px;
    padding: 17px 18px;
    font-size: 17px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.2s;
    display: block;
    text-decoration: none;
}

.sidebar-btn:hover {
    transform: translateY(-2px);
    background-color: #1a1a1a;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.divider {
    border-bottom: 1px solid #d0d0d0;
    margin: 0;
}

/* ===== FOOTER ===== */
.site-footer {
    background-color: #0f0f0f;
    border-top: 1px solid #222;
    padding: 60px 0 55px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 16px;
    margin-bottom: 40px;
}

.footer-logo-section {
    grid-column: span 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-link {
    display: block;
    margin-bottom: 15px;
}

.footer-logo {
    width: 150px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.footer-link {
    color: #c0c0c0;
    padding: 10px 0;
    font-size: 17px;
    line-height: 22px;
    text-decoration: none;
    background-color: transparent;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    margin-left: -15px;
    padding-left: 15px;
    padding-right: 15px;
    transition: all 0.2s;
    display: block;
}

.footer-link:hover {
    background-color: #1a1a1a;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    transform: scale(1.02);
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 55px;
}

.footer-copyright {
    text-align: center;
    color: #999;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-link {
    width: 30px;
    transition: all 0.2s;
    display: block;
}

.social-link:hover {
    transform: translateY(-2px);
}

.social-link img {
    width: 100%;
    height: auto;
    filter: brightness(0.8);
}

.social-link:hover img {
    filter: brightness(1);
}

/* ===== TABLES ===== */
.table-container {
    width: 100%;
    margin: 20px auto;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #141414;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

th {
    background-color: #1a1a1a;
    text-align: left;
    padding: 12px;
    border-bottom: 2px solid #333;
    font-weight: bold;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #222;
    color: #c0c0c0;
}

tr:nth-child(even) {
    background-color: #0f0f0f;
}

tr:hover {
    background-color: #1a1a1a;
}

/* ===== RESPONSIVE STYLES ===== */
@media screen and (max-width: 991px) {
    .hero-title {
        font-size: 56px;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }

    .content-grid {
        grid-gap: 20px;
    }
    
    .sermon-content {
        width: 100%;
    }
    
    .cards-container {
        margin-bottom: -26px;
    }
    
    .nav-menu {
        margin-right: 0;
    }
    
    .give-hero-card {
        grid-template-columns: 1fr;
    }
    
    .give-card-content {
        padding: 40px;
    }
    
    .give-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .why-give-grid {
        grid-template-columns: 1fr;
    }
    
    .about-intro-section {
        padding: 60px 40px;
    }
    
    .about-intro-card {
        padding: 40px;
    }
    
    .about-intro-title {
        font-size: 36px;
        line-height: 42px;
    }
    
    .timeline-section {
        padding: 80px 40px 100px;
    }
    
    .timeline-main-title {
        font-size: 40px;
        line-height: 48px;
    }
}

@media screen and (max-width: 767px) {
    .hero-banner {
        height: 50vh;
    }
    
    .hero-title {
        font-size: 42px;
        letter-spacing: 1.5px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .nav-link {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .featured-sermon-section {
        padding: 35px 25px 25px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .cards-container {
        margin-bottom: -14px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-logo-section {
        grid-column: span 2;
    }
    
    .give-section {
        padding: 50px 25px;
    }
    
    .give-tab {
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .give-card-content {
        padding: 30px 25px;
    }
    
    .give-card-title {
        font-size: 32px;
        line-height: 38px;
    }
    
    .give-section-title {
        font-size: 28px;
        line-height: 34px;
    }
    
    .why-give-card {
        padding: 30px 25px;
    }
    
    .about-intro-section {
        padding: 50px 25px;
    }
    
    .about-intro-card {
        padding: 30px 25px;
    }
    
    .about-intro-title {
        font-size: 28px;
        line-height: 34px;
    }
    
    .about-intro-text {
        font-size: 16px;
        line-height: 28px;
    }
    
    .timeline-section {
        padding: 60px 25px 80px;
    }
    
    .timeline-main-title {
        font-size: 32px;
        line-height: 38px;
    }
    
    .timeline-subtitle {
        font-size: 16px;
        margin-bottom: 60px;
    }
    
    /* Mobile Timeline - Vertical Only */
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item-left,
    .timeline-item-right {
        padding-left: 80px;
        padding-right: 0;
        justify-content: flex-start;
    }
    
    .timeline-item-left .timeline-content,
    .timeline-item-right .timeline-content {
        margin: 0;
        text-align: left;
        max-width: 100%;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-item:hover .timeline-dot {
        transform: translateX(-50%) scale(1.3);
    }
    
    /* Mobile Timeline - Year badges for items without content */
    .timeline-item-left:not(:has(.timeline-content)) > .timeline-year,
    .timeline-item-right:not(:has(.timeline-content)) > .timeline-year {
        left: 70px;
        transform: translateY(-50%);
        top: 18px;
    }
    
    .timeline-content {
        padding: 25px 20px;
    }
    
    .timeline-title {
        font-size: 22px;
        line-height: 28px;
    }
}

@media screen and (max-width: 479px) {
    .hero-banner {
        height: 40vh;
    }
    
    .hero-title {
        font-size: 32px;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }

    .featured-sermon-section {
        padding: 14px 14px 20px;
    }
    
    .featured-sermon-card {
        min-width: 95%;
        min-height: 520px;
    }
    
    .sermon-content {
        padding: 25px;
    }
    
    .card-content {
        max-width: 100%;
        padding: 25px;
    }
    
    .content-section {
        padding: 0 14px 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-logo-section {
        grid-column: span 1;
    }
    
    .mobile-nav {
        width: 90%;
        right: -90%;
    }
    
    .give-section {
        padding: 40px 14px;
    }
    
    .give-tabs-container {
        flex-direction: column;
    }
    
    .give-tab {
        width: 100%;
        text-align: center;
    }
    
    .give-card-image {
        min-height: 250px;
    }
    
    .give-hero-card {
        gap: 0;
    }
    
    .about-intro-section {
        padding: 40px 14px;
    }
    
    .about-intro-card {
        padding: 25px 20px;
    }
    
    .about-intro-title {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 20px;
    }
    
    .about-intro-text {
        font-size: 15px;
        line-height: 26px;
    }
    
    .timeline-section {
        padding: 40px 14px 60px;
    }
    
    .timeline-main-title {
        font-size: 28px;
        line-height: 34px;
    }
    
    .timeline-item {
        margin-bottom: 60px;
        padding-left: 70px;
    }
    
    .timeline-content {
        padding: 20px 15px;
    }
    
    .timeline-image-placeholder {
        height: 150px;
    }
}