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

:root {
    --primary-color: #477898;
    --primary-dark: #010a4f;
    --secondary-color: #93e1d8;
    --accent-color: #477898;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

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

/* Navigation */
.navbar {
    background: #e8f5f3;
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

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

.btn-nav {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.3s ease;
}

.btn-nav:hover {
    background: var(--primary-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: #e8f5f3;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 85vh;
}

.hero-content {
    background: var(--bg-white);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.church-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

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

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-dark);
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

.btn-primary:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary-dark);
    border: 2px solid var(--secondary-color);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--primary-dark);
    border-color: var(--primary-color);
}

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

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

/* Event Banner */
.event-banner {
    padding: 0;
    background: linear-gradient(135deg, #8B1A1A 0%, #C41E3A 50%, #8B1A1A 100%);
    position: relative;
    overflow: hidden;
}

.event-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.event-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem 3rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.event-banner-icon {
    font-size: 5rem;
    flex-shrink: 0;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.event-banner-text {
    flex: 1;
}

.event-banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.event-banner-date {
    font-size: 1.25rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.event-banner-activities {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.activity-item {
    font-size: 1rem;
    color: var(--bg-white);
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.activity-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.event-banner-cta {
    flex-shrink: 0;
}

.event-banner-cta .btn-primary {
    background: var(--secondary-color);
    color: var(--primary-dark);
    font-weight: 600;
    padding: 14px 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.event-banner-cta .btn-primary:hover {
    background: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Welcome Section */
.welcome {
    padding: 100px 0;
    background: #e8f5f3;
}

.welcome-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.welcome-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.welcome-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Greetings Section */
.greetings {
    padding: 60px 0;
    background: #e8f5f3;
}

.greetings-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.greetings-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Service Times */
.service-times {
    padding: 80px 0;
    background: var(--bg-white);
}

.service-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    margin: 0 auto;
    border-top: 4px solid var(--secondary-color);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.service-details {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.service-time {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-location {
    font-size: 1.125rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--text-dark);
}

.service-address {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.service-dates {
    margin: 2rem 0 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.dates-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.dates-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.date-item {
    background: var(--secondary-color);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.date-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.date-day-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.date-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
    margin: 0.25rem 0;
}

.date-month {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-transform: uppercase;
}

.dates-note {
    font-size: 0.875rem;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
    margin-top: 1rem;
    padding: 0.75rem;
    background: #e8f5f3;
    border-radius: 6px;
}

.service-note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* Alpha Steps */
.alpha-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.alpha-step-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--secondary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.alpha-step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.alpha-step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    font-family: 'Inter', sans-serif;
}

.alpha-step-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.alpha-step-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Alpha Who Section */
.alpha-who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.alpha-who-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--secondary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.alpha-who-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.alpha-who-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.alpha-who-card p {
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.6;
}

.alpha-note {
    text-align: center;
    font-size: 1.125rem;
    color: var(--primary-color);
    font-weight: 600;
    font-style: italic;
    max-width: 800px;
    margin: 2rem auto 0;
}

/* Alpha Form Container */
.alpha-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.alpha-form-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--secondary-color);
}

.alpha-form-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.alpha-form-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.alpha-form-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.alpha-form-card .btn {
    font-size: 1rem;
    padding: 16px 40px;
}

.alpha-form-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* Jeune Section */
.jeune-content {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-light);
    line-height: 1.8;
}

.jeune-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 2rem 0 1.5rem;
}

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

.jeune-example-item {
    background: var(--bg-light);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
}

.jeune-example-item p {
    margin: 0;
    color: var(--text-dark);
}

.jeune-references {
    margin-top: 2rem;
    padding: 1rem;
    background: #e8f5f3;
    border-radius: 8px;
    text-align: center;
    color: var(--primary-dark);
}

.jeune-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.jeune-reason-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--secondary-color);
}

.jeune-reason-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.jeune-reason-card p {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
}

.jeune-highlight {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
}

.jeune-highlight p {
    color: var(--primary-dark);
    font-weight: 500;
    margin: 0;
    font-size: 1.125rem;
}

.jeune-quote {
    background: #e8f5f3;
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-style: italic;
}

.jeune-quote p {
    color: var(--text-dark);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.quote-reference {
    text-align: right;
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
    margin: 0;
}

.jeune-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.jeune-tip-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--secondary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jeune-tip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.jeune-tip-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.jeune-tip-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.jeune-tip-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.jeune-tip-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.jeune-tip-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: var(--text-light);
}

.jeune-tip-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.zoom-link {
    display: inline-block;
    word-break: break-all;
    margin-top: 0.5rem;
}

/* Plan Visit Section */
.plan-visit {
    padding: 80px 0;
    background: #e8f5f3;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

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

.visit-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.visit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.visit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.visit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

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

/* Next Steps Section */
.next-steps {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.step-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.step-link:hover {
    color: var(--primary-dark);
    gap: 1rem;
}

/* Calendar Section */
.calendar {
    padding: 80px 0;
    background: #e8f5f3;
}

.calendar-content {
    margin-bottom: 3rem;
}

.calendar-highlight {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.calendar-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.calendar-highlight h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.calendar-highlight p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.newsletter-signup {
    text-align: center;
    background: var(--bg-light);
    border-radius: 12px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-signup h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.newsletter-signup p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* About Vision Section */
.about-vision {
    padding: 80px 0;
    background: var(--bg-white);
}

.vision-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    color: var(--text-light);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.vision-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--secondary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.vision-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.vision-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.vision-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.vision-reference {
    color: var(--primary-color);
    font-size: 0.95rem;
    margin-bottom: 1rem !important;
    font-weight: 600;
}

.vision-result {
    background: #e8f5f3;
    padding: 0.875rem;
    border-radius: 8px;
    margin: 1rem 0 !important;
    border-left: 3px solid var(--secondary-color);
    font-style: italic;
    font-size: 0.9rem;
}

.vision-points {
    margin: 1rem 0;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
    flex-grow: 1;
}

.vision-points p {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.75rem !important;
    font-size: 0.9rem;
}

.vision-points ul {
    list-style: none;
    padding-left: 0;
}

.vision-points li {
    padding-left: 1.25rem;
    position: relative;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    font-size: 0.875rem;
}

.vision-points li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.vision-highlight {
    background: var(--secondary-color);
    color: var(--primary-dark);
    padding: 0.875rem;
    border-radius: 8px;
    margin-top: auto !important;
    font-weight: 500;
    border-left: 4px solid var(--primary-color);
    font-size: 0.9rem;
}

.vision-conclusion {
    max-width: 800px;
    margin: 4rem auto 0;
    text-align: center;
    padding: 3rem;
    background: #e8f5f3;
    border-radius: 12px;
}

.vision-conclusion h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.vision-conclusion p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.vision-summary {
    font-size: 1.5rem !important;
    color: var(--primary-dark) !important;
    font-weight: 700;
    margin: 1.5rem 0 !important;
    letter-spacing: 1px;
}

/* Ministries Section */
.ministries {
    padding: 80px 0;
    background: #e8f5f3;
}

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

.ministry-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.ministry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
    background: var(--bg-white);
}

.ministry-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.ministry-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.ministry-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
    background: var(--bg-white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
    margin-top: 1rem;
}

.form-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Predications Section */
.predications-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.predications-filters {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.search-input {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.predications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.predication-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--secondary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.predication-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.predication-header {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.predication-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    background: var(--secondary-color);
    color: var(--primary-dark);
    border-radius: 8px;
    padding: 0.75rem;
    text-align: center;
}

.date-day {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.date-year {
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.predication-info {
    flex: 1;
}

.predication-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.predication-speaker {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.predication-reference {
    color: var(--text-light);
    font-size: 0.875rem;
    font-style: italic;
}

.predication-content {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
    flex-grow: 1;
}

.predication-audio {
    margin-bottom: 1.5rem;
    width: 100%;
}

.predication-audio audio {
    width: 100%;
    height: 40px;
}

.predication-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.predication-actions .btn {
    flex: 1;
    min-width: 140px;
    text-align: center;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--bg-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-logo {
    height: 80px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        height: 50px;
        max-width: 150px;
    }

    .footer-logo {
        height: 60px;
        max-width: 200px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .event-banner-content {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .event-banner-icon {
        font-size: 4rem;
    }

    .event-banner-title {
        font-size: 1.75rem;
    }

    .event-banner-date {
        font-size: 1.125rem;
    }

    .event-banner-activities {
        justify-content: center;
        gap: 1rem;
    }

    .activity-item {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .event-banner-cta {
        width: 100%;
    }

    .event-banner-cta .btn-primary {
        width: 100%;
        max-width: 300px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        min-height: 600px;
        position: relative;
    }

    .hero-content {
        padding: 60px 30px;
        order: 2;
        position: relative;
        z-index: 2;
        background: transparent;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 600px;
    }

    .hero-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
        z-index: -1;
    }

    .hero-image {
        order: 1;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .hero-image img {
        filter: grayscale(30%);
    }

    .church-name,
    .hero-title,
    .hero-subtitle {
        color: var(--bg-white);
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .hero-title {
        color: var(--bg-white);
        font-size: 2.25rem;
    }

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

    .hero-buttons {
        max-width: 100%;
    }

    .btn-nav {
        display: none;
    }

    .welcome-content h2,
    .section-header h2 {
        font-size: 2rem;
    }

    .vision-grid {
        grid-template-columns: 1fr;
    }

    .vision-card {
        padding: 1.5rem;
    }

    .vision-card h3 {
        font-size: 1.5rem;
    }

    .vision-number {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }

    .vision-conclusion {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }

    .vision-conclusion h3 {
        font-size: 1.75rem;
    }

    .vision-summary {
        font-size: 1.25rem !important;
    }

    .vision-grid,
    .ministries-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .predications-grid {
        grid-template-columns: 1fr;
    }

    .predication-header {
        flex-direction: column;
        gap: 1rem;
    }

    .predication-date {
        align-self: flex-start;
    }

    .predication-actions {
        flex-direction: column;
    }

    .predication-actions .btn {
        width: 100%;
    }

    .alpha-steps,
    .alpha-who-grid {
        grid-template-columns: 1fr;
    }

    .alpha-step-card {
        padding: 2rem 1.5rem;
    }

    .jeune-examples,
    .jeune-reasons {
        grid-template-columns: 1fr;
    }

    .jeune-tips {
        grid-template-columns: 1fr;
    }

    .jeune-tip-card {
        padding: 1.5rem;
    }

    .visit-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 3;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Améliorer la visibilité des boutons sur l'image */
    .hero-content .btn-primary {
        background: var(--secondary-color);
        color: var(--primary-dark);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .hero-content .btn-secondary {
        background: rgba(255, 255, 255, 0.95);
        color: var(--primary-dark);
        border-color: var(--secondary-color);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
}

@media (max-width: 480px) {
    .event-banner-content {
        padding: 1.5rem 1rem;
    }

    .event-banner-icon {
        font-size: 3.5rem;
    }

    .event-banner-title {
        font-size: 1.5rem;
    }

    .event-banner-date {
        font-size: 1rem;
    }

    .activity-item {
        font-size: 0.85rem;
        padding: 0.35rem 0.7rem;
    }

    .hero {
        padding: 0;
    }

    .hero-container {
        min-height: 500px;
    }

    .hero-content {
        min-height: 500px;
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 1.75rem;
        color: var(--bg-white);
    }

    .hero-subtitle {
        color: var(--bg-white);
    }

    .church-name {
        color: var(--bg-white);
    }

    .greetings {
        padding: 40px 0;
    }

    .greetings-content {
        padding: 0 20px;
    }

    .service-card,
    .calendar-highlight,
    .newsletter-signup {
        padding: 2rem 1.5rem;
    }

    .dates-list {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 0.75rem;
    }

    .date-item {
        padding: 0.75rem;
    }

    .date-number {
        font-size: 1.5rem;
    }

    .welcome,
    .greetings,
    .service-times,
    .plan-visit,
    .next-steps,
    .calendar {
        padding: 60px 0;
    }
}

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

/* Accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

