
:root {
    --primary: #0a1d33;
    --primary-light: #163a5f;
    --gold: #c5a028;
    --gold-light: #e6c665;
    --light: #f8fafc;
    --dark: #1e293b;
    --white: #ffffff;
    --radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.8;
    background-color: var(--white);
    overflow-x: hidden;
}

/* ===================== Header & Navigation ===================== */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

nav {
    padding: 15px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-img-wrapper {
    width: 65px;
    height: 65px;
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: var(--transition);
}

.logo-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text .main-title {
    color: var(--primary);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
    display: block;
}

.logo-text .sub-title {
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

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

.menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* ===================== Hero ===================== */
.hero {
    min-height: 85vh;
    background: linear-gradient(135deg, rgba(10, 29, 51, 0.85), rgba(10, 29, 51, 0.7)),
        url("https://images.unsplash.com/photo-1438232992991-995b7058bbb3?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
}

.hero h2 {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 20px 0;
}

.hero p {
    max-width: 700px;
    margin: 0 auto 35px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.btn {
    background: var(--gold);
    color: var(--primary);
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(197, 160, 40, 0.2);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* ===================== Sections (Common) ===================== */
section {
    padding: 100px 8%;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background: var(--gold);
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

/* ===================== Vision ===================== */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.vision-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.vision-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.vision-card i {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 25px;
    display: block;
}

/* ===================== Pastor ===================== */
.pastor {
    background: var(--light);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: center;
    gap: 60px;
    text-align: left;
}

.pastor-img-container {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
}

.pastor img {
    width: 100%;
    border-radius: var(--radius);
    position: relative;
    z-index: 2;
    display: block;
}

.pastor-img-container::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold);
    border-radius: var(--radius);
    z-index: 1;
}

.pastor h3 {
    font-size: 2.2rem;
    color: var(--primary);
    margin: 10px 0;
}

.pastor blockquote {
    font-style: italic;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
    border-left: 4px solid var(--gold);
    padding-left: 20px;
    margin: 30px 0;
}

/* ===================== Visit Form ===================== */
.visit {
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 40px;
    margin: 0 4% 100px;
    padding: 80px 5%;
}

.visit .section-title {
    color: white;
}

form {
    max-width: 600px;
    margin: 40px auto 0;
    display: grid;
    gap: 20px;
}

input,
select {
    padding: 18px;
    border-radius: 12px;
    border: 2px solid transparent;
    width: 100%;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
}

input:focus {
    outline: none;
    border-color: var(--gold);
}

/* ===================== Footer ===================== */
footer {
    background: var(--primary);
    color: white;
    padding: 80px 8% 40px;
    text-align: center;
}

.socials {
    margin-bottom: 30px;
}

.socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.5rem;
    margin: 0 10px;
    border-radius: 50%;
    transition: var(--transition);
}

.socials a:hover {
    background: var(--gold);
    transform: translateY(-5px);
}

/* ===================== Responsive ===================== */
@media (max-width: 992px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: white;
        padding: 40px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.show {
        display: flex;
    }

    .menu-btn {
        display: block;
    }

    section {
        padding: 80px 5%;
    }

    .pastor {
        text-align: center;
    }
}