/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

:root {
    --primary-color: #dc2626;
    --primary-dark: #b91c1c;
    --secondary-color: #64748b;
    --accent-color: #f59e0b;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --background-light: #fef7f7;
    --background-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-white);
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

.section-label {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--border-color);
}

.hero .btn-secondary {
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background-color: var(--background-light);
    transform: translateY(-1px);
}

.hero .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.8);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-orange {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    cursor: pointer;
    background-color: var(--accent-color);
    color: white;
}

.btn-orange:hover {
    background-color: #d97706;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
}

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

.nav-logo .logo-text {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.nav-logo h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-left: auto;
    margin-right: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Dropdown Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    background-color: rgba(220, 38, 38, 0.05);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}


.nav-cta {
    display: flex;
    align-items: center;
}

.btn-visit {
    background-color: rgba(220, 38, 38, 0.1);
    color: var(--primary-color);
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-visit:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
    background: #0f0f0f;
}

/* Kept for about/get-plugged-in hero backgrounds — static, no transition */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Crossfade slideshow container for home page hero */
.hero-slides-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    will-change: opacity;
}

.hero-slide-item.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    z-index: 3;
    text-align: left;
    color: white;
    max-width: 600px;
    padding: 0 20px;
    width: auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title .highlight {
    background: linear-gradient(45deg, #f59e0b, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 500px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Welcome Section */
.welcome {
    padding: 6rem 0;
    background-color: var(--background-white);
    overflow: hidden;
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 2rem;
    align-items: center;
    min-height: auto;
}

.welcome-text {
    padding-right: 1.5rem;
}

.welcome-text h2 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.75rem;
    color: var(--text-primary);
    font-weight: 600;
}

.welcome-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.75rem;
}

/* Image Slideshow */
.welcome-images {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}


.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.75rem;
    padding: 0.5rem;
    transition: all 1.0s cubic-bezier(0.23, 1, 0.320, 1);
}

.slideshow-container.slide-out-left {
    transform: translateX(-100%) rotate(-3deg);
    opacity: 0;
}

.slideshow-container.slide-in-right {
    transform: translateX(100%) rotate(3deg);
    opacity: 0;
}

.slideshow-container.active {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
}

.slide-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    opacity: 1;
    transform: scale(1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.slide-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.03) 0%, rgba(0, 0, 0, 0.03) 100%);
    border-radius: 20px;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.4s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    backface-visibility: hidden;
    transform: translateZ(0);
    filter: contrast(1.05) saturate(1.1) brightness(1.02);
    will-change: transform;
}

.slide-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.slide-image:hover img {
    transform: scale(1.03);
}

.slide-image:hover::after {
    opacity: 0.3;
}

/* Specific positioning for grid layout */
.slide-image:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.slide-image:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.slide-image:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
}

.slide-image:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}


/* Get Plugged In */
.get-plugged-in {
    padding: 8rem 0;
    background-color: var(--background-light);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.plugged-in-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 1fr;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.plugged-in-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.plugged-in-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    image-rendering: high-quality;
    image-rendering: -webkit-optimize-contrast;
    filter: contrast(1.05) saturate(1.05) sharpen(1px);
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Specific positioning for cards to show faces better */
.plugged-in-card[data-category="prayer"] .card-image img {
    object-position: 60% 30%; /* Prayer Room - pull image down to show faces and slightly to the right */
}

.plugged-in-card[data-category="fellowship"] .card-image img {
    object-position: center 55%; /* House Fellowship - pull image down even more to show faces */
}

.plugged-in-card[data-category="evangelism"] .card-image img {
    object-position: center; /* Evangelism - keep as is */
}

.plugged-in-card[data-category="bible-study"] .card-image img {
    object-position: center 25%; /* Bible Study - pull image down to show faces */
}

.plugged-in-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 3rem 2rem 2rem;
    color: white;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.plugged-in-card:hover .card-overlay {
    transform: translateY(0);
}

.card-label {
    background-color: #dc2626;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 2;
}

.card-labels {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

/* Home page specific styles for Get-Plugged-In section - Maximum specificity */
section.get-plugged-in .plugged-in-grid .plugged-in-card .card-image .card-category-label {
    background-color: #dc2626 !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 4px !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    display: inline-block !important;
    text-align: left !important;
    position: absolute !important;
    top: 1.5rem !important;
    left: 1.5rem !important;
    z-index: 10 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Home page specific styles for Get-Plugged-In section - Maximum specificity */
section.get-plugged-in .plugged-in-grid .plugged-in-card .card-image .card-title-label {
    color: white !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    display: inline-block !important;
    text-align: left !important;
    position: absolute !important;
    bottom: 1.5rem !important;
    left: 1.5rem !important;
    z-index: 10 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
    background: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.plugged-in-card[data-category="fellowship"] .card-label {
    top: auto;
    bottom: 4rem;
    left: 1.5rem;
}

.plugged-in-card[data-category="evangelism"] .card-label {
    top: 1.5rem;
    left: 1.5rem;
}

.plugged-in-card[data-category="bible-study"] .card-label {
    top: auto;
    bottom: 4rem;
    left: 1.5rem;
}

.card-overlay h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0;
    color: white;
    line-height: 1.1;
}


/* Events */
.events {
    padding: 6rem 0;
    background-color: var(--background-light);
}

.events-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.events-image {
    position: relative;
}

.event-image-display {
    position: sticky;
    top: 100px;
}

.event-image-display img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transition: opacity 0.3s ease;
}

.events-text {
    padding-left: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 500px;
}

.events-text h2 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.events-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.events-category-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.events-category-tag {
    background: #dc2626;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}

.events-category-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.events-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: background 0.3s ease;
}

.events-dot.active {
    background: #dc2626;
}

.events-list {
    margin-bottom: 1rem;
    flex-grow: 1;
    transition: opacity 0.25s ease;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    margin-bottom: 0.25rem;
    background-color: var(--background-white);
    border-radius: 4px;
    border-left: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
}

.event-item:hover {
    border-left-color: var(--primary-color);
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    background-color: #fefefe;
}

.event-item.active {
    border-left-color: var(--primary-color);
    background-color: #fff5f5;
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.event-date {
    text-align: center;
    background-color: var(--primary-color);
    color: white;
    padding: 0.4rem;
    border-radius: 4px;
    min-width: 50px;
    flex-shrink: 0;
}

.event-date .month {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.event-date .day {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
}

.event-details h4 {
    margin-bottom: 0;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
}

.event-details p {
    display: none;
}

.events-cta {
    text-align: left;
    margin-top: auto;
    padding-top: 1rem;
}

/* Stay Connected Section */
.stay-connected {
    padding: 6rem 0;
    background-color: var(--background-white);
}

.stay-connected-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stay-connected-image {
    position: relative;
}

.stay-connected-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.stay-connected-text h2 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.stay-connected-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.social-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.social-bar:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.social-bar i {
    font-size: 1.25rem;
    width: 20px;
    text-align: center;
}

.social-bar.facebook {
    border-color: #1877f2;
}

.social-bar.facebook:hover {
    background-color: #1877f2;
    color: white;
    border-color: #1877f2;
}

.social-bar.instagram {
    border-color: #e4405f;
}

.social-bar.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    border-color: #e4405f;
}

.social-bar.tiktok {
    border-color: #000000;
}

.social-bar.tiktok:hover {
    background-color: #000000;
    color: white;
    border-color: #000000;
}

.social-bar.youtube {
    border-color: #ff0000;
}

.social-bar.youtube:hover {
    background-color: #ff0000;
    color: white;
    border-color: #ff0000;
}

/* Plug In Section */
.plug-in-section {
    padding: 6rem 0;
    background-color: var(--background-light);
}

.plug-in-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.plug-in-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.plug-in-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
}

.series-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
}

.series-topics {
    display: flex;
    gap: 2rem;
    justify-content: space-around;
}

.topic {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.topic-number {
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.topic-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.plug-in-text h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.1;
}

.plug-in-text p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.4;
}

.plug-in-platforms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background-color: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.platform-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.platform-link i {
    font-size: 1.5rem;
    width: 24px;
    text-align: center;
}

.platform-link.spotify {
    border-color: #1db954;
}

.platform-link.spotify:hover {
    background-color: #1db954;
    color: white;
    border-color: #1db954;
}

.platform-link.apple {
    border-color: #000000;
}

.platform-link.apple:hover {
    background-color: #000000;
    color: white;
    border-color: #000000;
}

.platform-link.youtube {
    border-color: #ff0000;
}

.platform-link.youtube:hover {
    background-color: #ff0000;
    color: white;
    border-color: #ff0000;
}

.platform-link.google {
    border-color: #4285f4;
}

.platform-link.google:hover {
    background-color: #4285f4;
    color: white;
    border-color: #4285f4;
}

.plug-in-cta {
    text-align: left;
}

/* Plug In Section */
.plug-in-section {
    padding: 8rem 0;
    background-color: var(--background-white);
}

.plug-in-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: center;
}

.plug-in-text {
    max-width: 500px;
}

.plug-in-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.plug-in-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.plug-in-platforms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background-color: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.platform-link:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.platform-link i {
    font-size: 1rem;
}

.platform-link.spotify {
    color: #1db954;
    border-color: #1db954;
}

.platform-link.apple {
    color: #000;
    border-color: #000;
}

.platform-link.youtube {
    color: #ff0000;
    border-color: #ff0000;
}

.platform-link.google {
    color: #4285f4;
    border-color: #4285f4;
}

.btn-orange {
    background-color: #dc2626;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-orange:hover {
    background-color: #b91c1c;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.plug-in-image {
    position: relative;
}

.plug-in-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}


/* CTA Section */
.cta-section {
    position: relative;
    padding: 8rem 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.cta-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.cta-slide.active {
    opacity: 1;
}

.cta-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.cta-content {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    z-index: 3;
    color: white;
    text-align: left;
    max-width: 600px;
}

.cta-content h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.cta-content p {
    font-size: 1.375rem;
    margin-bottom: 2.5rem;
    line-height: 1.4;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.btn-cta {
    background-color: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

/* Footer */
.footer {
    background-color: var(--text-primary);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-section ul li a:hover {
    color: #fbbf24;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .plugged-in-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
        gap: 1rem;
        max-width: 1000px;
        padding: 0 1rem;
    }
    
    .card-image {
        height: 180px;
    }
    
    .events-content {
        grid-template-columns: 1.3fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 1.5rem;
        margin-left: 0;
        margin-right: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Mobile dropdown styles */
    .nav-dropdown {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .dropdown-toggle {
        justify-content: center;
        width: 100%;
        text-align: center;
    }

    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: rgba(220, 38, 38, 0.05);
        box-shadow: none;
        border: none;
        border-radius: 0;
        margin-top: 0;
        padding: 0;
        display: none;
        width: 100%;
    }

    .nav-dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown-link {
        padding: 0.75rem 2rem;
        border-left: none;
        font-size: 0.85rem;
        text-align: center;
    }

    .dropdown-link:hover {
        background-color: rgba(220, 38, 38, 0.1);
        transform: none;
        border-left: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .nav-logo .logo-image {
        height: 45px;
    }
    
    .nav-logo .logo-text {
        font-size: 1.25rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .hero-content {
        left: 20px;
        padding: 0 15px;
        width: calc(100% - 40px);
        max-width: 90%;
        text-align: left;
    }
    
    .hero-buttons {
        justify-content: flex-start;
    }
    
    .welcome-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        min-height: auto;
    }
    
    .welcome-text {
        padding-right: 0;
        text-align: center;
    }
    
    .welcome-text h2 {
        font-size: 2rem;
        margin-bottom: 1.25rem;
        text-align: left;
    }
    
    .welcome-buttons {
        margin-top: 1.25rem;
    }
    
    .welcome-images {
        height: 360px;
    }

    .slideshow-container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .slide-image:nth-child(1) { grid-column: 1; grid-row: 1; }
    .slide-image:nth-child(2) { grid-column: 2; grid-row: 1; }
    .slide-image:nth-child(3) { grid-column: 1; grid-row: 2; }
    .slide-image:nth-child(4) { grid-column: 2; grid-row: 2; }
    
    
    .welcome-stats {
        justify-content: center;
    }
    
    .plugged-in-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 1rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .card-image {
        height: 150px;
    }
    
    .card-overlay h3 {
        font-size: 2rem;
    }
    
    .card-label {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        top: 1rem;
        left: 1rem;
    }
    
    
    .events-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .events-text {
        padding-left: 0;
        text-align: center;
        order: -1;
        min-height: auto;
    }

    .events-image {
        width: 100%;
        overflow: hidden;
    }

    .event-image-display {
        position: relative;
        top: auto;
        width: 100%;
        overflow: hidden;
        border-radius: 12px;
    }

    .event-image-display img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        object-position: center;
        border-radius: 12px;
        display: block;
    }
    
    .events-cta {
        text-align: center;
        margin-top: 1rem;
        padding-top: 0;
    }
    
    .cta-section {
        padding: 6rem 0;
        min-height: 500px;
    }
    
    .cta-content {
        position: absolute;
        top: 50%;
        left: 20px;
        transform: translateY(-50%);
        text-align: left;
        max-width: 90%;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-content p {
        font-size: 1.125rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .stay-connected-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .stay-connected-text {
        text-align: center;
        order: -1;
    }
    
    .stay-connected-image img {
        height: 400px;
    }
    
    .plug-in-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .plug-in-text {
        text-align: center;
        order: -1;
        max-width: 100%;
    }
    
    .plug-in-text h2 {
        font-size: 2rem;
    }
    
    .plug-in-platforms {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .plug-in-image img {
        height: 400px;
    }
    
    .plug-in-text h2 {
        font-size: 2.5rem;
    }
    
    .plug-in-platforms {
        grid-template-columns: 1fr;
    }
    
    .series-topics {
        gap: 1rem;
    }
    
    .topic-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .topic-title {
        font-size: 0.7rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .welcome-stats {
        flex-direction: column;
        gap: 1rem;
    }

    /* Events category indicator */
    .events-category-indicator {
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }

    .events-dot {
        width: 10px;
        height: 10px;
    }

    /* Plugged-in grid — single column on very small screens */
    .plugged-in-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .event-image-display img {
        height: 220px;
    }
}

/* About Us Page Styles */

/* About Hero Section */
.about-hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/home-page/hero-section/1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.about-hero-content {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    z-index: 2;
    text-align: left;
    color: white;
    max-width: 600px;
    padding: 0 20px;
    width: auto;
}

.about-hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-hero-title .highlight {
    background: linear-gradient(45deg, #f59e0b, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 500px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    text-align: left;
}

/* Who We Are Section */
.who-we-are {
    padding: 8rem 0;
    background-color: var(--background-white);
    overflow: hidden;
}

.who-we-are-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 100%;
}

.who-we-are-text h2 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.who-we-are-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.who-we-are-image {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.our-story h3 {
    font-size: 1.875rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.story-timeline {
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-year {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    min-width: 60px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Who We Are Stats */
.who-we-are-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #fb923c;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

/* Image Showcase */
.image-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    height: 500px;
    max-width: 100%;
    overflow: hidden;
}

.main-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease;
    max-width: 100%;
    max-height: 100%;
}

.main-image:hover {
    transform: translateY(-4px);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.main-image:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.image-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

.side-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 100%;
    overflow: hidden;
}

.side-image {
    position: relative;
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
    max-width: 100%;
    max-height: 100%;
}

.side-image:hover {
    transform: translateY(-4px);
}

.side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.image-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.75rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.side-image:hover .image-label {
    transform: translateY(0);
}

/* Our Values Section */
.our-values {
    padding: 8rem 0;
    background-color: var(--background-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: transparent;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 450px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.value-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    transition: opacity 0.4s ease;
}

.card-front {
    background: transparent;
    opacity: 1;
    z-index: 2;
}

.card-back {
    background: #ffffff;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: none;
    opacity: 0;
    z-index: 1;
}

.value-card:hover .card-front {
    opacity: 0;
}

.value-card:hover .card-back {
    opacity: 1;
}

.card-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1rem 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f97316, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    margin-top: 0;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.card-back h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000000;
    font-weight: 700;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.card-back p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95rem;
    text-align: left;
    max-width: 100%;
    font-family: 'Inter', sans-serif;
}

.card-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border-radius: 16px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    margin: 0;
    padding: 0;
    border-radius: 16px;
}

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

.card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.card-background {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.card-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
}



/* What We Believe Section */
.what-we-believe {
    padding: 8rem 0;
    background-color: var(--background-white);
}

.beliefs-content {
    max-width: 1200px;
    margin: 0 auto;
}

.beliefs-text {
    text-align: center;
    margin-bottom: 4rem;
}

.beliefs-text h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.beliefs-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.beliefs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.belief-card {
    background: var(--background-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    text-align: center;
}

.belief-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.belief-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.belief-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.belief-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.scripture-ref {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
    font-style: italic;
}

/* Meet The Team Section */
.meet-the-team {
    padding: 8rem 0;
    background-color: var(--background-light);
}

.team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team-header h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.team-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Team Group Image */
.team-group-image {
    position: relative;
    max-width: 1000px;
    margin: 2rem auto 0;
    margin-left: calc(50% - 500px + 40px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.team-group-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.team-group-image:hover img {
    transform: scale(1.05);
}

.group-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 3rem;
    color: white;
    text-align: center;
}

.group-image-overlay h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.group-image-overlay p {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Our Leadership Section */
.our-leadership {
    padding: 8rem 0;
    background-color: var(--background-white);
}

.leadership-header {
    text-align: center;
    margin-bottom: 4rem;
}

.leadership-header h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.leadership-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.leadership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.leadership-member {
    background: var(--background-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.leadership-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.leadership-member .member-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.leadership-member .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
}

.leadership-member .member-image img[src*="dr-arome-osayi"] {
    object-position: center top;
}

.leadership-member:hover .member-image img {
    transform: scale(1.05);
}

.leadership-member .member-info {
    padding: 2.5rem;
}

.leadership-member .member-info h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.leadership-member .member-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.leadership-member .member-bio {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.leadership-member .member-contact {
    margin-top: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--background-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.team-member.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.member-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.team-member.featured .member-image {
    height: 100%;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.member-social {
    display: flex;
    gap: 1rem;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.member-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-bio {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-contact {
    margin-top: auto;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-dark);
}

/* About CTA Section */
.about-cta {
    background: url('images/events-page/get-plugged-in.png') center 30% / cover no-repeat;
    color: white;
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 50vh;
    position: relative;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.about-cta .cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/home-page/take-next-step-section/0.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.about-cta .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.about-cta .cta-content {
    max-width: 600px;
    margin: 0;
    padding: 0 4rem;
    position: absolute;
    top: 50%;
    right: 4rem;
    transform: translateY(-50%);
    z-index: 3;
    text-align: left;
}

.about-cta .cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    color: white;
}

.about-cta .cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    font-weight: 400;
}

.about-cta .btn-primary {
    background: #dc2626;
    color: white;
    font-size: 1.1rem;
    padding: 16px 32px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.about-cta .btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Featured Pastor Section */
.featured-pastor {
    margin-bottom: 4rem;
    background: var(--background-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

.pastor-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
    min-height: 400px;
}

.pastor-image {
    position: relative;
    overflow: hidden;
}

.pastor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-pastor:hover .pastor-image img {
    transform: scale(1.05);
}

.pastor-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pastor-info h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.pastor-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.pastor-bio {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.pastor-contact {
    margin-top: 2rem;
}

/* Next Steps Section */
.next-steps {
    padding: 8rem 0;
    background-color: var(--background-light);
}

.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.step-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    height: 300px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    text-decoration: none;
    color: inherit;
    display: block;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(245, 158, 11, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.step-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), 0 8px 16px rgba(220, 38, 38, 0.2);
    border-color: rgba(220, 38, 38, 0.3);
}

.step-card:hover::before {
    opacity: 1;
}

.step-card .card-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.step-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    image-rendering: high-quality;
    image-rendering: -webkit-optimize-contrast;
    filter: contrast(1.1) saturate(1.1) brightness(1.05);
    backface-visibility: hidden;
    transform: translateZ(0);
    position: relative;
    z-index: 2;
}

/* Specific positioning for cards to show faces better */
.step-card[data-category="prayer"] .card-image img {
    object-position: center 30%;
}

.step-card[data-category="fellowship"] .card-image img {
    object-position: center 55%;
}

.step-card[data-category="evangelism"] .card-image img {
    object-position: center;
}

.step-card[data-category="bible-study"] .card-image img {
    object-position: center 25%;
}

.step-card:hover .card-image img {
    transform: scale(1.15) translateZ(0);
    filter: contrast(1.2) saturate(1.2) brightness(1.1);
}

.card-category-label {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-block;
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.step-card[data-category="fellowship"] .card-category-label {
    top: 1.5rem;
    bottom: auto;
    left: 1.5rem;
}

.step-card[data-category="evangelism"] .card-category-label {
    top: 1.5rem;
    left: 1.5rem;
}

.step-card[data-category="bible-study"] .card-category-label {
    top: 1.5rem;
    bottom: auto;
    left: 1.5rem;
}

.step-card:hover .card-category-label {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.card-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 3rem 2rem 2rem;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.1;
    text-align: left;
    z-index: 3;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.step-card:hover .card-title {
    transform: translateY(-5px);
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.9);
}

/* Enhanced Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}


/* Enhanced Beliefs Section */
.beliefs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.belief-card {
    background: var(--background-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.belief-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.belief-card:hover::before {
    transform: scaleX(1);
}

.belief-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.belief-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.belief-card:hover .belief-icon {
    transform: scale(1.1);
}

.belief-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.belief-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.scripture-ref {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
    font-style: italic;
}

/* Enhanced Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--background-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.member-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.member-social {
    display: flex;
    gap: 1rem;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.member-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-bio {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-contact {
    margin-top: auto;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-dark);
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    /* About / Get Plugged In hero content positioning */
    .about-hero-content {
        left: 20px;
        padding: 0 15px;
        width: calc(100% - 40px);
        max-width: 90%;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-subtitle {
        font-size: 1rem;
    }

    /* Section padding reductions */
    .who-we-are,
    .our-values,
    .what-we-believe,
    .meet-the-team,
    .our-leadership,
    .next-steps {
        padding: 4rem 0;
    }

    /* Who We Are two-column → single column */
    .who-we-are-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .who-we-are-text h2 {
        font-size: 2rem;
    }

    /* Fix team group image off-center margin on mobile */
    .team-group-image {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .who-we-are-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item h3 {
        font-size: 1.5rem;
    }
    
    .image-showcase {
        grid-template-columns: 1fr;
        height: auto;
        gap: 1rem;
    }
    
    .main-image {
        height: 300px;
    }
    
    .side-images {
        flex-direction: row;
        height: 120px;
    }
    
    .side-image {
        flex: 1;
    }
    
    .image-label {
        transform: translateY(0);
        font-size: 0.75rem;
        padding: 0.5rem;
    }
    
    .pastor-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .pastor-image {
        height: 300px;
    }
    
    .pastor-info {
        padding: 2rem;
    }
    
    .pastor-info h3 {
        font-size: 1.5rem;
    }
    
    .next-steps-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .step-card {
        height: 250px;
    }
    
    .card-title {
        font-size: 1.5rem;
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .card-category-label {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        top: 1rem;
        left: 1rem;
    }
    
    .step-card[data-category="fellowship"] .card-category-label,
    .step-card[data-category="bible-study"] .card-category-label {
        top: 1rem;
        bottom: auto;
        left: 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .beliefs-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-group-image img {
        height: auto;
    }
    
    .group-image-overlay {
        padding: 2rem;
    }
    
    .group-image-overlay h3 {
        font-size: 1.5rem;
    }
    
    .leadership-member .member-info {
        padding: 2rem;
    }
    
    .leadership-member .member-info h3 {
        font-size: 1.5rem;
    }
    
    .step-card,
    .value-card {
        height: 400px;
    }
    
    .card-back {
        padding: 2rem;
    }
    
    .card-label {
        font-size: 1.25rem;
        padding: 1.5rem 1rem 1rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .card-back h3 {
        font-size: 1.25rem;
    }
    
    .belief-card {
        padding: 2rem;
    }
    
    .about-cta h2 {
        font-size: 2rem;
    }
    
    .about-cta .cta-content {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        padding: 0 2rem;
        max-width: 90%;
        text-align: center;
        margin: 0 auto;
    }
    
    .card-back {
        padding: 1rem;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .card-back h3 {
        font-size: 1rem;
        margin-bottom: 0.375rem;
    }
    
    .card-back p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .pastor-info {
        padding: 1.5rem;
    }
    
    .step-card,
    .value-card,
    .belief-card {
        padding: 1.5rem;
    }
    
    .member-info {
        padding: 1.5rem;
    }
}

/* Get Plugged In Page Styles */

/* Get Plugged In Hero Section */
.get-plugged-in-hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.get-plugged-in-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/home-page/hero-section/2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.get-plugged-in-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.get-plugged-in-hero-content {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    z-index: 2;
    text-align: left;
    color: white;
    max-width: 600px;
    padding: 0 20px;
    width: auto;
}

.get-plugged-in-hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.get-plugged-in-hero-title .highlight {
    background: linear-gradient(45deg, #f59e0b, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.get-plugged-in-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 500px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    text-align: left;
}

/* Plugged In Section Styles */
.plugged-in-section {
    padding: 12rem 0;
    background-color: var(--background-white);
    position: relative;
}

.plugged-in-section:nth-child(even) {
    background-color: var(--background-light);
}

.plugged-in-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    align-items: center;
    max-width: 100%;
}

.plugged-in-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.plugged-in-image-box {
    position: relative;
    width: 100%;
    max-width: 2555px;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background-color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plugged-in-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.plugged-in-image-box:hover img {
    transform: scale(1.05);
}

.image-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #CCCCCC;
    z-index: 2;
}

.image-overlay-text p {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: #CCCCCC;
}

.visit-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: transparent;
    color: #CCCCCC;
    border: 1px solid #CCCCCC;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.visit-button:hover {
    background-color: #CCCCCC;
    color: #333333;
    transform: translateY(-2px);
}

.plugged-in-text-content {
    padding: 3rem 0;
}

.plugged-in-title {
    font-size: 5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #f59e0b, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    line-height: 1.1;
    text-align: left;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.3), 0 0 20px rgba(220, 38, 38, 0.2);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transform: scale(1.02);
    transition: all 0.3s ease;
}

.plugged-in-description {
    font-size: 1.5rem;
    color: #333333;
    line-height: 1.6;
    text-align: left;
    max-width: 100%;
    font-weight: 500;
}

.plan-to-attend-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.plan-to-attend-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.schedule-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.schedule-bar {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.75rem 1rem 0.75rem 0.875rem;
    background: white;
    border-left: 4px solid var(--primary-color);
    border-radius: 0 10px 10px 0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.schedule-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(220,38,38,0.06) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.schedule-bar:hover::before {
    opacity: 1;
}

.schedule-bar-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(220,38,38,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
}

.schedule-bar:hover .schedule-bar-icon {
    background: var(--primary-color);
    color: white;
}

.schedule-bar-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    position: relative;
    z-index: 1;
}

.schedule-bar-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
}

.schedule-bar-meta {
    font-size: 0.72rem;
    color: #6b7280;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.schedule-bar-arrow {
    font-size: 0.72rem;
    color: #d1d5db;
    flex-shrink: 0;
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
}

.schedule-bar:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 14px rgba(220,38,38,0.14);
}

.schedule-bar:hover .schedule-bar-arrow {
    color: var(--primary-color);
    transform: translateX(3px);
}

.schedule-bar:hover .schedule-bar-title {
    color: var(--primary-color);
}

/* Get Plugged In CTA Section */
.get-plugged-in-cta {
    background: url('images/home-page/take-next-step-section/1.jpg') center 30% / cover no-repeat;
    color: white;
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    position: relative;
}

.get-plugged-in-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.get-plugged-in-cta .cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/home-page/take-next-step-section/1.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.get-plugged-in-cta .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.get-plugged-in-cta .cta-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 3;
    text-align: center;
}

.get-plugged-in-cta .cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    color: white;
}

.get-plugged-in-cta .cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    font-weight: 400;
}

.get-plugged-in-cta .btn-primary {
    background: #dc2626;
    color: white;
    font-size: 1.1rem;
    padding: 16px 32px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.get-plugged-in-cta .btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Sermon Section Styles */
.sermon-section {
    background: #000 url('images/footer/0.png') center/cover no-repeat;
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.sermon-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.72);
    z-index: 1;
}

.sermon-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sermon-text {
    background: rgba(31, 41, 55, 0.9);
    padding: 3rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.sermon-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.sermon-text p {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.sermon-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-watch {
    background: #dc2626;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-watch:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.sermon-thumbnails {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    opacity: 0.6;
}

.sermon-thumbnail {
    aspect-ratio: 16/9;
    background: linear-gradient(45deg, #374151, #4b5563);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 0.8rem;
    text-align: center;
    padding: 1rem;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.youtube-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    z-index: 1;
}

.sermon-thumbnail:hover {
    transform: scale(1.02);
    opacity: 0.8;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(220, 38, 38, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 3;
}

.sermon-thumbnail:hover .play-button {
    background: rgba(220, 38, 38, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.thumbnail-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1rem;
    color: white;
    font-size: 0.7rem;
    text-align: left;
    z-index: 2;
}

/* Responsive Design for Get Plugged In Page */
@media (max-width: 768px) {
    .get-plugged-in-hero-content {
        left: 20px;
        padding: 0 15px;
        width: calc(100% - 40px);
        max-width: 90%;
        text-align: left;
    }

    .get-plugged-in-hero-title {
        font-size: 2.5rem;
    }

    .get-plugged-in-hero-subtitle {
        font-size: 1rem;
    }

    /* Reduce the 12rem padding to something sane on mobile */
    .plugged-in-section {
        padding: 4rem 0;
    }

    .plugged-in-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .plugged-in-image-box {
        height: 320px;
        max-width: 100%;
    }

    .plugged-in-title {
        font-size: 2.5rem;
        text-align: left;
    }

    .plugged-in-description {
        font-size: 1rem;
        text-align: left;
    }

    .plugged-in-text-content {
        padding: 0;
    }

    .schedule-bar {
        padding: 0.65rem 0.75rem 0.65rem 0.75rem;
    }

    .schedule-bar-meta {
        font-size: 0.68rem;
    }
    
    .get-plugged-in-cta .cta-content h2 {
        font-size: 2rem;
    }
    
    .get-plugged-in-cta .cta-content p {
        font-size: 1.125rem;
    }
    
    .sermon-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sermon-text h2 {
        font-size: 2rem;
    }

    .sermon-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .get-plugged-in-hero-title {
        font-size: 2rem;
    }

    .plugged-in-section {
        padding: 3rem 0;
    }

    .plugged-in-image-box {
        height: 260px;
    }

    .plugged-in-title {
        font-size: 1.75rem;
    }

    .plugged-in-description {
        font-size: 0.95rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Navbar Scroll Effect */
.navbar.scrolled {
    background-color: rgba(248, 250, 252, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}
