/* HOUSE OF DISCIPLES - Fresh Build */

:root {
    --bg: #F8F9FA;
    --dark: #1A1A1A;
    --text: #333;
    --muted: #666;
    --red: #B91C1C;
    --serif: 'Libre Baskerville', Georgia, serif;
    --body: 'Crimson Pro', Georgia, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--body);
    font-size: 19px;
    line-height: 1.75;
    color: var(--text);
    background: var(--bg);
}

/* NAV */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(248,249,250,0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 2rem;
}

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

.nav-logo { height: 36px; }

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-family: var(--serif);
    font-size: 0.9rem;
    color: var(--dark);
    text-decoration: none;
}

.nav-links a:hover { color: var(--red); }

.nav-cta {
    background: var(--red) !important;
    color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
}

.lang-switch {
    opacity: 0.6;
    font-size: 0.85rem;
    padding-left: 1rem;
    border-left: 1px solid #CCC;
}

.lang-switch:hover {
    opacity: 1;
}

/* HERO - Centered */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--bg);
    padding-top: 100px;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    max-width: 850px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    max-width: 260px;
    margin-bottom: 1.5rem;
}

.hero-tagline {
    font-family: var(--serif);
    font-size: 1rem;
    letter-spacing: 0.15em;
    color: var(--muted);
    margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-manifesto {
    margin: 2rem 0;
}

.hero-manifesto p {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--muted);
}

.hero-manifesto .red {
    color: var(--red);
    font-weight: 600;
}

.hero-text {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 2rem;
    color: var(--muted);
}

.btn {
    display: inline-block;
    background: var(--red);
    color: white;
    padding: 1rem 2.5rem;
    font-family: var(--serif);
    font-size: 1rem;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

.btn:hover { background: #991B1B; }

/* SECTIONS */
.section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: var(--bg);
}

.section.dark {
    background: var(--dark);
    color: #EEE;
}

.section.dark h2,
.section.dark h3,
.section.dark h4 { color: #FFF; }

.section.dark p { color: #CCC; }

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

h2 {
    font-family: var(--serif);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

h3.statement {
    font-family: var(--serif);
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 700;
    margin: 2rem 0 1rem;
}

h4 {
    font-family: var(--serif);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

p { margin-bottom: 1.2rem; }

p.lead {
    font-size: 1.25rem;
    color: var(--muted);
}

.section.dark p.lead { color: #BBB; }

strong { font-weight: 600; }

/* RED BOX - the highlight */
.redbox {
    background: rgba(185, 28, 28, 0.08);
    border-left: 4px solid var(--red);
    padding: 2rem;
    margin: 2.5rem 0;
}

.section.dark .redbox {
    background: rgba(255,255,255,0.05);
    border-left-color: #EF4444;
}

.section.dark a {
    color: #FFFFFF;
    text-decoration: underline;
}

.section.dark a:hover {
    color: #EF4444;
}

.redbox p.big {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 0;
}

/* ACTIONS */
.actions {
    margin: 2rem 0;
}

.actions p {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

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

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

.card {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-left: 3px solid var(--red);
}

.gather-card {
    display: block;
    background: rgba(255,255,255,0.7);
    padding: 1.5rem;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.gather-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gather-card .icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.gather-card h4 {
    margin-bottom: 0.5rem;
}

.gather-card p {
    font-size: 0.95rem;
    color: var(--muted);
    margin: 0;
}

/* REVEAL SYSTEM */
.section-reveal {
    position: relative;
}

.reveal-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.bg-img.sepia { filter: sepia(70%) contrast(1.1); }
.bg-img.bw { filter: grayscale(100%) contrast(1.2); }
.bg-img.warm { filter: saturate(1.1); }

.hero .bg-img {
    opacity: 0.4;
    filter: none;
}

.reveal-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* FORM */
.form {
    max-width: 400px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form input,
.form textarea {
    padding: 0.8rem 1rem;
    font-family: var(--body);
    font-size: 1rem;
    border: 1px solid #DDD;
    border-radius: 4px;
}

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

/* FOOTER */
.footer {
    background: var(--dark);
    color: #999;
    padding: 3rem;
    text-align: center;
}

.footer p { margin-bottom: 0.5rem; }

/* MOBILE */
@media (max-width: 768px) {
    .nav-links { display: none; }
    body { font-size: 17px; }
    .hero-logo { max-width: 200px; }
    .redbox { padding: 1.5rem; }
}
