/* Breaking Chains Ministry — Simple Clean Design */
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'Inter',sans-serif; color:#222; background:#fff; line-height:1.7; }
a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; }
.container { max-width:1100px; margin:0 auto; padding:0 20px; }

/* ====== NAV ====== */
#nav {
    position:fixed; top:0; left:0; right:0; z-index:9999;
    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(12px);
    border-bottom:1px solid #eee;
    transition:box-shadow .3s;
}
#nav.scrolled { box-shadow:0 2px 20px rgba(0,0,0,0.08); }
.nav-inner {
    max-width:1100px; margin:0 auto; padding:0 20px;
    display:flex; align-items:center; height:65px; gap:20px;
}
.logo { display:flex; align-items:center; gap:10px; margin-right:auto; }
.logo img { width:42px; height:42px; object-fit:contain; }
.logo strong { font-family:'Playfair Display',serif; font-size:15px; color:#222; display:block; }
.logo small { font-size:9px; letter-spacing:1.5px; text-transform:uppercase; color:#555; }
.nav-links { display:flex; gap:6px; }
.nav-links a {
    padding:7px 14px; font-size:13px; font-weight:500; color:#333;
    border-radius:6px; transition:all .25s;
}
.nav-links a:hover, .nav-links a.active { color:#b8860b; background:#fdf8ef; }
.nav-btn {
    padding:9px 18px; font-size:12px; font-weight:600;
    background:#b8860b; color:#fff; border-radius:8px;
    display:flex; align-items:center; gap:6px; transition:all .3s; white-space:nowrap;
}
.nav-btn:hover { background:#9a7209; transform:translateY(-1px); }
.menu-toggle { display:none; background:none; border:none; flex-direction:column; gap:5px; padding:5px; }
.menu-toggle span { width:22px; height:2px; background:#333; transition:.3s; }
.menu-toggle.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity:0; }
.menu-toggle.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

.mobile-menu {
    position:fixed; top:65px; left:0; right:0; bottom:0;
    background:rgba(255,255,255,0.98); z-index:9998;
    display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px;
    opacity:0; visibility:hidden; transition:.3s;
}
.mobile-menu.open { opacity:1; visibility:visible; }
.mobile-menu a {
    font-family:'Playfair Display',serif; font-size:1.5rem; color:#222;
    padding:6px 0; transition:color .3s;
}
.mobile-menu a:hover { color:#b8860b; }
.mm-btn {
    margin-top:10px; padding:12px 28px; background:#b8860b; color:#fff;
    border-radius:8px; font-size:14px; font-weight:600;
    display:flex; align-items:center; gap:8px;
}

/* ====== HERO ====== */
.hero {
    position:relative; min-height:100vh;
    display:flex; align-items:center; justify-content:center; text-align:center;
    overflow:hidden;
}
.hero-bg {
    position:absolute; inset:0; width:100%; height:100%;
    object-fit:cover;
}
.hero-overlay {
    position:absolute; inset:0;
    background:linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.7) 100%);
}
.hero-content {
    position:relative; z-index:2; padding:20px;
    max-width:700px;
}
.hero-logo {
    width:130px; height:130px; object-fit:contain;
    margin:0 auto 25px;
    filter:drop-shadow(0 4px 20px rgba(212,168,67,0.4));
    animation:float 5s ease-in-out infinite;
}
@keyframes float {
    0%,100% { transform:translateY(0); }
    50% { transform:translateY(-10px); }
}
.hero h1 {
    font-family:'Playfair Display',serif;
    font-size:clamp(2rem, 5vw, 3.2rem);
    color:#fff; line-height:1.2; margin-bottom:8px;
}
.hero h1 span { color:#d4a843; }
.hero-sub {
    font-size:12px; letter-spacing:8px; text-transform:uppercase;
    color:rgba(255,255,255,0.5); margin-bottom:25px;
}
.hero-verse {
    font-family:'Playfair Display',serif; font-style:italic;
    font-size:clamp(0.9rem, 1.5vw, 1rem); color:rgba(255,255,255,0.7);
    margin-bottom:30px; line-height:1.8;
}
.hero-verse strong { color:#d4a843; font-style:normal; }
.hero-btns { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* ====== BUTTONS ====== */
.btn {
    display:inline-flex; align-items:center; gap:8px;
    padding:13px 30px; font-size:14px; font-weight:600;
    background:#b8860b; color:#fff; border:2px solid #b8860b;
    border-radius:8px; transition:all .3s; cursor:pointer;
}
.btn:hover { background:#9a7209; border-color:#9a7209; transform:translateY(-2px); box-shadow:0 6px 20px rgba(184,134,11,0.25); }
.btn.btn-outline { background:transparent; color:#fff; border-color:rgba(255,255,255,0.4); }
.btn.btn-outline:hover { background:rgba(255,255,255,0.15); border-color:#fff; }
.btn.full { width:100%; justify-content:center; }

/* ====== SECTIONS ====== */
.section { padding:80px 0; }
.bg-warm { background:#faf7f2; }
.label {
    font-size:12px; font-weight:600; letter-spacing:3px;
    text-transform:uppercase; color:#b8860b; margin-bottom:8px;
}
.section h2, .contact-left h2 {
    font-family:'Playfair Display',serif;
    font-size:clamp(1.8rem, 3vw, 2.4rem);
    color:#222; line-height:1.3; margin-bottom:20px;
}
.center-text { text-align:center; margin-bottom:40px; }

/* ====== ABOUT ====== */
.two-col { display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:center; }
.col-img { position:relative; border-radius:12px; overflow:hidden; }
.col-img img { width:100%; height:450px; object-fit:cover; }
.col-img:hover img { transform:scale(1.03); transition:transform .6s; }
.img-badge {
    position:absolute; bottom:16px; left:16px;
    background:#b8860b; color:#fff; padding:6px 16px;
    border-radius:6px; font-size:12px; font-weight:700; letter-spacing:1px;
}
.col-text p { margin-bottom:14px; color:#333; }
.col-text strong { color:#b8860b; }
.stats-row { display:flex; gap:30px; margin-top:25px; padding-top:20px; border-top:1px solid #eee; }
.stat { text-align:center; }
.stat-num {
    font-family:'Playfair Display',serif;
    font-size:2rem; color:#222; font-weight:700; display:block;
}
.stat-label { font-size:11px; color:#555; text-transform:uppercase; letter-spacing:1px; }

/* ====== CARDS ====== */
.three-col { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.card {
    background:#fff; border:1px solid #eee; border-radius:12px;
    padding:30px; text-align:center; transition:all .3s;
}
.card:hover { transform:translateY(-5px); box-shadow:0 10px 30px rgba(0,0,0,0.06); border-color:#f0e0c0; }
.card-icon {
    width:50px; height:50px; margin:0 auto 15px;
    background:#fdf8ef; border-radius:50%; display:flex;
    align-items:center; justify-content:center;
    border:1px solid #f0e0c0;
}
.card-icon i { color:#b8860b; font-size:18px; }
.card h3 { font-family:'Playfair Display',serif; font-size:1.1rem; color:#222; margin-bottom:8px; }
.card p { font-size:14px; color:#333; }

/* ====== MINISTRIES ====== */
.ministry-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.m-card {
    background:#fff; border:1px solid #eee; border-radius:12px;
    overflow:hidden; transition:all .3s;
}
.m-card:hover { transform:translateY(-4px); box-shadow:0 10px 30px rgba(0,0,0,0.07); }
.m-img { height:200px; overflow:hidden; }
.m-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.m-card:hover .m-img img { transform:scale(1.06); }
.m-body { padding:22px; }
.m-body h3 {
    font-family:'Playfair Display',serif; font-size:1.05rem;
    color:#222; margin-bottom:8px;
}
.m-body h3 i { color:#b8860b; margin-right:6px; font-size:14px; }
.m-body p { font-size:14px; color:#333; }

/* ====== SCRIPTURE ====== */
.scripture-banner {
    position:relative; padding:80px 20px; text-align:center; overflow:hidden;
}
.sb-bg {
    position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
}
.sb-overlay {
    position:absolute; inset:0;
    background:linear-gradient(rgba(0,0,0,0.65),rgba(0,0,0,0.75));
}
.sb-content { position:relative; z-index:2; max-width:700px; margin:0 auto; }
.sb-content > i { font-size:28px; color:#d4a843; opacity:0.5; margin-bottom:20px; display:block; }
.sb-content blockquote {
    font-family:'Playfair Display',serif; font-style:italic;
    font-size:clamp(1rem, 2vw, 1.3rem); color:#fff; line-height:2; margin-bottom:15px;
}
.sb-content cite { font-size:13px; font-weight:600; color:#d4a843; letter-spacing:2px; }

/* ====== EVENTS ====== */
.events-list { display:flex; flex-direction:column; gap:12px; }
.event {
    display:flex; align-items:center; gap:20px;
    padding:20px 24px; background:#fff; border:1px solid #eee;
    border-radius:12px; transition:all .3s;
}
.event:hover { border-color:#f0e0c0; box-shadow:0 4px 15px rgba(0,0,0,0.05); transform:translateX(4px); }
.ev-date {
    min-width:60px; text-align:center; padding:10px;
    background:#fdf8ef; border-radius:8px; border:1px solid #f0e0c0;
}
.ev-date span { display:block; font-family:'Playfair Display',serif; font-size:1.5rem; color:#b8860b; font-weight:700; line-height:1; }
.ev-date { font-size:10px; font-weight:700; letter-spacing:1px; color:#b8860b; }
.ev-date.fire { background:#fff3e0; border-color:#ffe0b2; color:#e65100; }
.ev-date.fire span { color:#e65100; }
.ev-date.blue { background:#e3f2fd; border-color:#bbdefb; color:#1565c0; }
.ev-date.blue span { color:#1565c0; }
.ev-info { flex:1; }
.ev-info h3 { font-family:'Playfair Display',serif; font-size:1rem; color:#222; margin-bottom:4px; }
.ev-info p { font-size:13px; color:#555; }
.ev-info i { color:#b8860b; margin-right:3px; }
.ev-badge {
    padding:5px 14px; font-size:10px; font-weight:700; letter-spacing:1px;
    text-transform:uppercase; background:#fdf8ef; color:#b8860b;
    border-radius:20px; border:1px solid #f0e0c0; white-space:nowrap;
}
.ev-badge.fire { background:#fff3e0; color:#e65100; border-color:#ffe0b2; }
.ev-badge.blue { background:#e3f2fd; color:#1565c0; border-color:#bbdefb; }

/* ====== GALLERY ====== */
.gallery-grid {
    display:grid; grid-template-columns:repeat(3,1fr);
    grid-auto-rows:220px; gap:12px;
}
.g-item {
    position:relative; border-radius:10px; overflow:hidden; cursor:pointer;
}
.g-item.big { grid-column:span 2; grid-row:span 2; }
.g-item img {
    width:100%; height:100%; object-fit:cover;
    transition:transform .5s, filter .3s;
}
.g-item:hover img { transform:scale(1.06); filter:brightness(0.6); }
.g-item span {
    position:absolute; bottom:14px; left:14px;
    font-family:'Playfair Display',serif; font-size:14px; color:#fff;
    opacity:0; transform:translateY(10px); transition:all .3s;
}
.g-item:hover span { opacity:1; transform:translateY(0); }

/* ====== TESTIMONIALS ====== */
.test-row { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.t-card {
    background:#fff; border:1px solid #eee; border-radius:12px;
    padding:28px; transition:all .3s;
}
.t-card:hover { transform:translateY(-4px); box-shadow:0 10px 25px rgba(0,0,0,0.06); }
.t-stars { margin-bottom:12px; }
.t-stars i { color:#d4a843; font-size:13px; }
.t-card > p {
    font-family:'Playfair Display',serif; font-style:italic;
    font-size:15px; color:#444; line-height:1.8; margin-bottom:16px;
}
.t-author { display:flex; align-items:center; gap:10px; }
.t-av {
    width:38px; height:38px; border-radius:50%;
    background:#b8860b; color:#fff; display:flex;
    align-items:center; justify-content:center;
    font-family:'Playfair Display',serif; font-size:15px; font-weight:700;
}
.t-author strong { font-size:13px; color:#222; }
.t-author small { font-size:11px; color:#b8860b; }

/* ====== CONTACT ====== */
.contact-grid { display:grid; grid-template-columns:1fr 1.2fr; gap:50px; align-items:start; }
.contact-left p { color:#333; margin-bottom:14px; }
.c-info { display:flex; flex-direction:column; gap:12px; margin:20px 0; }
.c-info div { display:flex; align-items:center; gap:10px; font-size:14px; color:#333; }
.c-info i { color:#b8860b; width:18px; text-align:center; }
.c-socials { display:flex; gap:8px; }
.c-socials a {
    width:40px; height:40px; border-radius:8px; border:1px solid #ddd;
    display:flex; align-items:center; justify-content:center;
    color:#888; transition:all .3s;
}
.c-socials a:hover { background:#b8860b; border-color:#b8860b; color:#fff; transform:translateY(-2px); }

.contact-right {
    background:#fff; border:1px solid #eee; border-radius:14px; padding:30px;
}
.form-2col { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.contact-right input,
.contact-right select,
.contact-right textarea {
    width:100%; padding:12px 14px; margin-bottom:12px;
    font-family:'Inter',sans-serif; font-size:14px; color:#333;
    background:#faf7f2; border:1.5px solid #e8e2d8; border-radius:8px;
    outline:none; transition:border-color .3s;
}
.contact-right select { appearance:none; cursor:pointer; }
.contact-right select option { background:#fff; }
.contact-right textarea { resize:vertical; }
.contact-right input:focus,
.contact-right select:focus,
.contact-right textarea:focus { border-color:#b8860b; }

/* ====== FOOTER ====== */
footer {
    background:#1a1a2e; color:rgba(255,255,255,0.6); padding:50px 0 0;
}
.footer-grid { display:grid; grid-template-columns:1.5fr 1fr 1fr; gap:40px; padding-bottom:30px; border-bottom:1px solid rgba(255,255,255,0.08); }
.f-brand img { width:55px; margin-bottom:12px; }
.f-brand p { font-size:13px; line-height:1.6; }
.f-col h4 { font-family:'Playfair Display',serif; font-size:14px; color:#d4a843; margin-bottom:14px; }
.f-col a { display:block; font-size:13px; color:rgba(255,255,255,0.5); margin-bottom:7px; transition:color .2s; }
.f-col a:hover { color:#d4a843; }
.f-col p { font-size:13px; line-height:1.5; margin-bottom:8px; }
.f-col strong { color:rgba(255,255,255,0.8); }
.footer-bottom {
    display:flex; justify-content:space-between; padding:18px 0; font-size:12px;
    color:rgba(255,255,255,0.3); flex-wrap:wrap; gap:10px;
}
.footer-bottom span:last-child { font-family:'Playfair Display',serif; font-style:italic; color:rgba(212,168,67,0.35); }

/* ====== ANIMATIONS ====== */
[data-anim] { opacity:0; transform:translateY(25px); transition:opacity .6s, transform .6s; }
[data-anim].visible { opacity:1; transform:translateY(0); }

/* ====== RESPONSIVE ====== */

/* Large Tablets / Small Laptops */
@media(max-width:1024px) {
    .container { padding:0 24px; }
    .two-col { gap:35px; }
    .contact-grid { gap:35px; }
    .footer-grid { grid-template-columns:1.5fr 1fr 1fr; gap:30px; }
}

/* Tablets */
@media(max-width:900px) {
    .nav-links, .nav-btn { display:none; }
    .menu-toggle { display:flex; }

    .section { padding:60px 0; }
    .center-text { margin-bottom:30px; }

    /* Hero */
    .hero { min-height:90vh; }
    .hero-logo { width:100px; height:100px; margin-bottom:18px; }
    .hero h1 { font-size:clamp(1.6rem, 4vw, 2.4rem); }
    .hero-sub { letter-spacing:5px; margin-bottom:18px; }
    .hero-verse { font-size:0.9rem; margin-bottom:22px; }
    .hero-content { padding:20px 16px; }

    /* About */
    .two-col { grid-template-columns:1fr; gap:30px; }
    .col-img img { height:280px; }
    .col-img { border-radius:10px; }
    .stats-row { gap:20px; flex-wrap:wrap; justify-content:center; }
    .stat-num { font-size:1.6rem; }

    /* Cards */
    .three-col { grid-template-columns:1fr 1fr; gap:14px; }
    .card { padding:22px; }

    /* Ministries */
    .ministry-grid { grid-template-columns:1fr 1fr; gap:14px; }
    .m-img { height:170px; }
    .m-body { padding:18px; }
    .m-body h3 { font-size:0.95rem; }
    .m-body p { font-size:13px; }

    /* Events */
    .event { gap:14px; padding:16px 18px; flex-wrap:wrap; }
    .ev-badge { order:-1; }
    .ev-info h3 { font-size:0.95rem; }

    /* Gallery */
    .gallery-grid { grid-template-columns:1fr 1fr; grid-auto-rows:180px; gap:10px; }
    .g-item.big { grid-column:span 2; grid-row:span 1; }

    /* Testimonials */
    .test-row { grid-template-columns:1fr; gap:14px; }
    .t-card { padding:22px; }
    .t-card > p { font-size:14px; }

    /* Contact */
    .contact-grid { grid-template-columns:1fr; gap:30px; }
    .contact-right { padding:22px; }
    .form-2col { grid-template-columns:1fr; }

    /* Footer */
    .footer-grid { grid-template-columns:1fr 1fr; gap:25px; }
    .footer-bottom { flex-direction:column; text-align:center; }

    /* Scripture */
    .scripture-banner { padding:60px 16px; }
    .sb-content blockquote { font-size:1rem; line-height:1.8; }
}

/* Small Tablets / Large Phones */
@media(max-width:700px) {
    .three-col { grid-template-columns:1fr; }
    .ministry-grid { grid-template-columns:1fr; }
    .m-img { height:200px; }
    .footer-grid { grid-template-columns:1fr; text-align:center; }
    .f-brand img { margin:0 auto 12px; }
    .gallery-grid { grid-template-columns:1fr 1fr; grid-auto-rows:160px; }
}

/* Phones */
@media(max-width:480px) {
    .section { padding:50px 0; }
    .container { padding:0 16px; }

    /* Nav */
    .nav-inner { height:58px; gap:12px; padding:0 16px; }
    .logo img { width:36px; height:36px; }
    .logo strong { font-size:13px; }
    .mobile-menu { top:58px; }
    .mobile-menu a { font-size:1.2rem; }

    /* Hero */
    .hero { min-height:85vh; }
    .hero-logo { width:85px; height:85px; margin-bottom:14px; }
    .hero h1 { font-size:1.5rem; line-height:1.3; margin-bottom:6px; }
    .hero-sub { font-size:10px; letter-spacing:4px; margin-bottom:14px; }
    .hero-verse { font-size:0.82rem; line-height:1.7; margin-bottom:20px; }
    .hero-btns { flex-direction:column; align-items:center; gap:10px; }
    .btn { padding:12px 24px; font-size:13px; width:100%; justify-content:center; }

    /* About */
    .col-img img { height:220px; }
    .stats-row { gap:15px; }
    .stat { flex:1; min-width:80px; }
    .stat-num { font-size:1.4rem; }
    .stat-label { font-size:10px; }

    /* Cards */
    .card { padding:20px; }
    .card h3 { font-size:1rem; }
    .card p { font-size:13px; }
    .card-icon { width:44px; height:44px; }

    /* Events */
    .event { padding:14px 16px; gap:12px; }
    .ev-date { min-width:50px; padding:8px; }
    .ev-date span { font-size:1.2rem; }
    .ev-info h3 { font-size:0.9rem; }
    .ev-info p { font-size:12px; }
    .ev-badge { font-size:9px; padding:4px 10px; }

    /* Gallery */
    .gallery-grid { grid-template-columns:1fr; grid-auto-rows:200px; gap:10px; }
    .g-item.big { grid-column:span 1; grid-row:span 1; }

    /* Testimonials */
    .t-card { padding:20px; }
    .t-card > p { font-size:13px; }

    /* Contact */
    .contact-right { padding:18px; border-radius:10px; }
    .contact-right input,
    .contact-right select,
    .contact-right textarea { padding:11px 12px; font-size:13px; }

    /* Scripture */
    .scripture-banner { padding:50px 14px; }
    .sb-content > i { font-size:22px; margin-bottom:14px; }
    .sb-content blockquote { font-size:0.9rem; line-height:1.7; }
    .sb-content cite { font-size:11px; }

    /* Footer */
    footer { padding:35px 0 0; }
    .footer-grid { gap:20px; }
    .f-brand p { font-size:12px; }
    .f-col h4 { font-size:13px; margin-bottom:10px; }
    .f-col a, .f-col p { font-size:12px; }
    .footer-bottom { padding:14px 0; font-size:11px; }
}

/* Very Small Phones */
@media(max-width:360px) {
    .hero-logo { width:70px; height:70px; }
    .hero h1 { font-size:1.3rem; }
    .hero-verse { font-size:0.78rem; }
    .stats-row { flex-direction:column; align-items:center; gap:12px; }
    .stat { width:100%; }
}
