* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Header */
header {
    background: #1a1a1a;
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-family: 'Spectral SC', serif;
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    text-shadow: 2px 2px 0 #a00000, 4px 4px 0 #007000;
}

.logo:hover {
    text-shadow: 3px 3px 0 #cc0000, 5px 5px 0 #009900;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
}

.nav-links a:hover {
    color: #a00000;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('static/hero.png') no-repeat center center/cover;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.9rem 2rem;
    background: #007000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.cta-button:hover {
    background: #009900;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

/* Mission */
.mission {
    padding: 4rem 0;
    background: #f8f9fa;
}

.mission-list {
    margin: 0 0 1rem 1.2rem;
    line-height: 1.8;
}

.mission-list li {
    margin-bottom: 1rem;
}

.mission-list ul {
    margin: 0.5rem 0 0.5rem 1.5rem;
}

.verse {
    font-style: italic;
    margin-top: 0.5rem;
    color: #555;
}

.mission-image-wrap {
    text-align: left;
    margin-top: 2.5rem;
}

.mission-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Stripes */
.stripe {
    width: 100%;
    height: 16px;
}

.stripe-red { background: #a00000; }
.stripe-green { background: #007000; }
.stripe-black { background: #1a1a1a; }

.bottom-stripes {
    display: flex;
    flex-direction: column;
}

/* About (dark section, like God's Gym) */
.about {
    padding: 2rem 2rem;
    background: #1a1a1a;
    color: #fff;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    padding-left: 2rem;
    padding-right: 2rem;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
    text-align: left;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #ccc;
}

.about-pdf-link {
    color: #009900;
    text-decoration: none;
}

.about-pdf-link:hover {
    text-decoration: underline;
    color: #00bb00;
}

/* Classes */
.classes {
    padding: 2rem 0;
    background: #f8f9fa;
}

.classes-content {
    max-width: 800px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    text-align: left;
}

.classes-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.class-block {
    margin-bottom: 2.5rem;
}

.class-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.classes-content ol {
    margin: 0 0 0 1.5rem;
    padding-left: 0.5rem;
}

.classes-content ol li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: #333;
}

/* Resources */
.resources {
    padding: 4rem 0;
    background: #fff;
}

.resources-intro {
    text-align: center;
    margin-bottom: 2rem;
    color: #888;
}

.doc-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.doc-links a {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: #f0f0f0;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 5px;
    border: 2px solid #e0e0e0;
}

.doc-links a:hover {
    border-color: #a00000;
    color: #a00000;
}

/* My Testimony (dark section, like About) */
.my-testimony {
    padding: 2rem 2rem;
    background: #1a1a1a;
    color: #fff;
}

.my-testimony-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    padding-left: 2rem;
    padding-right: 2rem;
}

.my-testimony-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
    text-align: left;
}

.my-testimony-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #ccc;
}

/* Contact */
.contact {
    padding: 3rem 0;
    background: #f8f9fa;
    text-align: left;
}

.contact p {
    color: #888;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 1.5rem;
}

/* Mobile */
@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: #1a1a1a;
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
        transition: left 0.3s ease;
    }

    .nav-links.active { left: 0; }

    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }

    .hero-content h1 { font-size: 1.6rem; }
    .hero-content p { font-size: 1rem; }
}
