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

@font-face {
    font-family: 'Atkinson Hyperlegible Next';
    src: url('../fonts/Atkinson Hyperlegible Next_Final/Atkinson Hyperlegible Next/AtkinsonHyperlegibleNext-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Atkinson Hyperlegible Next';
    src: url('../fonts/Atkinson Hyperlegible Next_Final/Atkinson Hyperlegible Next/AtkinsonHyperlegibleNext-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Atkinson Hyperlegible Next';
    src: url('../fonts/Atkinson Hyperlegible Next_Final/Atkinson Hyperlegible Next/AtkinsonHyperlegibleNext-LightItalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Atkinson Hyperlegible Next';
    src: url('../fonts/Atkinson Hyperlegible Next_Final/Atkinson Hyperlegible Next/AtkinsonHyperlegibleNext-MediumItalic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

body {
    font-family: 'Atkinson Hyperlegible Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation */
nav {
    background-color: #424344;
    color: white;
    position: sticky;
    top: 0;
    z-index: 50;
}

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

nav .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

nav .links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

nav a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.8;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(47, 70, 104, 0.75), rgba(61, 90, 127, 0.75));
    color: white;
    padding: 5rem 1rem;
    position: relative;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/banner.jpg') center/cover no-repeat;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.hero .container2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/banner_aurora.jpg') center/cover no-repeat;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.hero-logo {
    max-width: 200px;
    height: auto;
}

.hero-text {
    flex: 1;
    text-align: center;
}

.hero-quote {
    flex: 1;
    font-style: italic;
    text-align: justify;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero .subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.btn {
    display: inline-block;
    background-color: #2f4668;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.3s;
}

.btn:hover {
    opacity: 0.9;
}

/* Sections */
section {
    padding: 4rem 1rem;
}

section h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.bg-light {
    background-color: #f9fafb;
}

.bg-blue {
    background-color: #e0f2fe;
}

.bg-warm {
    background-color: #fef7ed;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.about-card {
    padding: 2rem;
    border-radius: 0.375rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.65) 100%);
    z-index: 1;
}

.about-card h3,
.about-card p {
    position: relative;
    z-index: 2;
}

.about-card:nth-child(1) {
    background-image: url('../images/pew.png');
}

.about-card:nth-child(2) {
    background-image: url('../images/family.png');
}

.about-card:nth-child(3) {
    background-image: url('../images/hymn.png');
}

.about-card:nth-child(4) {
    background-image: url('../images/memory.png');
}

.about-card:nth-child(5) {
    background-image: url('../images/kjv.png');
}

.about-card h3 {
    font-size: 1.5rem;
    color: #2f4668;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.about-card p {
    color: #000000;
    font-size: 1.125rem;
    line-height: 1.8;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.6);
}

/* Schedule Section */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.schedule-card {
    padding: 2rem;
    border-radius: 0.375rem;
}

.schedule-card-primary {
    background-color: #2f4668;
    color: white;
}

.schedule-card-secondary {
    background-color: #f3f4f6;
}

.schedule-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.schedule-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.schedule-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.schedule-card-primary .schedule-item:last-child {
    margin-bottom: 0;
}

.schedule-item p {
    margin: 0;
}

.schedule-item .time {
    font-weight: normal;
}

/* Events Section */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.event-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
}

.event-card h3 {
    font-size: 1.5rem;
    color: #2f4668;
    margin-bottom: 1rem;
}

.event-card p {
    color: #555;
    line-height: 1.6;
}

/* Beliefs Section */
.beliefs-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 0.375rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.beliefs-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.beliefs-content p:last-child {
    margin-bottom: 0;
}

/* FAQs Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-button {
    width: 100%;
    background-color: #2f4668;
    color: white;
    padding: 1rem;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: bold;
    transition: opacity 0.3s;
}

.faq-button:hover {
    opacity: 0.9;
}

.faq-chevron {
    display: inline-block;
    transition: transform 0.3s;
    width: 24px;
    height: 24px;
}

.faq-chevron.open {
    transform: rotate(180deg);
}

.faq-content {
    display: none;
    background-color: #f9fafb;
    padding: 1.5rem;
}

.faq-content.open {
    display: block;
}

.faq-content p {
    color: #555;
    line-height: 1.8;
}

.collapse-content ul,
.collapse-content ol {
    padding-left: 1.5rem;
    margin: 0.75rem 0;
}

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

.sub-collapse-list .collapse-button {
    padding-left: 1rem;
    background-color: #f7f7f7;
    color: #2f4668;
    border-radius: 0.25rem;
}

.sub-collapse-list .collapse-content {
    margin-left: 1rem;
    background-color: #ffffff;
    border-left: 3px solid #2f4668;
    padding-left: 0.75rem;
}

/* Contact Section */
.contact-section {
    background-color: #2f4668;
    color: white;
}

.contact-section h2 {
    color: white;
}

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

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

.contact-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 1rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.contact-divider {
    width: 40px;
    border: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.7);
    margin: 0.75rem auto;
    border-radius: 1px;
}

.dark-divider {
    width: 40px;
    border: 0;
    height: 2px;
    background: rgba(0, 0, 0, 0.7);
    margin: 0.75rem auto;
    border-radius: 1px;
}

.contact-quote {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 2rem;
}

.contact-quote p {
    font-size: 1.25rem;
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.contact-quote .scripture {
    font-size: 0.875rem;
}

/* Contact Section Links */
.contact-section a {
    color: white;
    text-decoration: none;
}

/* Footer */
footer {
    background-color: #111827;
    color: white;
    padding: 1.5rem 1rem;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    nav .links {
        flex-direction: column;
        gap: 1rem;
    }

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

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

