/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a2c3e;
    line-height: 1.6;
    background: #fff;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

/* Buttons */
.btn-primary, .btn-outline, .btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.3s;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: #C49A6C;
    color: white;
    border: none;
}

.btn-primary:hover {
    background: #a57c52;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 2px solid #C49A6C;
    color: #C49A6C;
}

.btn-outline:hover {
    background: #C49A6C;
    color: white;
}

.btn-secondary {
    background: #1a2c3e;
    color: white;
}

.btn-secondary:hover {
    background: #2c3e4e;
}

.section {
    padding: 80px 0;
}

.section-tag {
    display: inline-block;
    background: rgba(196, 154, 108, 0.15);
    color: #C49A6C;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.gray-bg {
    background: #f9f6f2;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 30px;
}

/* Top Bar */
.top-bar {
    background: #1a2c3e;
    color: #ddd;
    padding: 10px 0;
    font-size: 0.85rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left span, .top-bar-right a {
    margin-right: 20px;
}

.top-bar-right a {
    color: #ddd;
    margin-left: 12px;
}

.give-btn-top {
    background: #C49A6C;
    padding: 4px 16px;
    border-radius: 30px;
    color: white !important;
}

/* Navbar */
.navbar {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.5rem;
    color: #1a2c3e;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.6rem;
}

.logo-text .light {
    font-weight: 400;
    color: #C49A6C;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-menu li a {
    color: #1a2c3e;
    font-weight: 500;
}

.nav-menu li a i {
    margin-right: 6px;
}

.nav-menu li a.active, .nav-menu li a:hover {
    color: #C49A6C;
}

.mobile-toggle {
    display: none;
    background: none;
    font-size: 28px;
    border: none;
    cursor: pointer;
    color: #1a2c3e;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #f5f0e8 0%, #e8e0d3 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h6 {
    font-size: 1rem;
    letter-spacing: 2px;
    color: #C49A6C;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin: 20px 0;
}

.hero-text h1 span {
    color: #C49A6C;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image img {
    border-radius: 30px;
    box-shadow: 0 20px 30px -15px rgba(0, 0, 0, 0.2);
    width: 100%;
    object-fit: cover;
}

/* Live Banner */
.live-banner {
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.live-card {
    background: #1a2c3e;
    color: white;
    padding: 20px 30px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-live {
    background: #C49A6C;
    padding: 10px 25px;
    border-radius: 40px;
    color: white;
    display: inline-block;
}

/* About Preview */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.exp-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #C49A6C;
    color: white;
    padding: 8px 18px;
    border-radius: 40px;
    font-weight: bold;
    font-size: 0.9rem;
}

.stats-grid {
    display: flex;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.stats-grid div i {
    font-size: 1.8rem;
    color: #C49A6C;
    margin-right: 8px;
}

/* Sermons Grid */
.sermons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.sermon-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.sermon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.sermon-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.sermon-info {
    padding: 20px;
}

.sermon-link {
    color: #C49A6C;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}

/* Events List */
.events-list {
    margin-top: 40px;
}

.event-item {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.event-date {
    text-align: center;
    background: #C49A6C20;
    padding: 8px 20px;
    border-radius: 20px;
    min-width: 80px;
}

.event-date span {
    font-size: 0.7rem;
    display: block;
}

.event-date strong {
    font-size: 1.8rem;
}

/* Testimonials */
.testimonial-section {
    background: #f9f6f2;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.testimonial i {
    font-size: 2rem;
    color: #C49A6C;
    margin-bottom: 15px;
}

/* ===== FOOTER RESTYLED ===== */
.footer {
    background: #0f1c2a;
    color: #e0e0e0;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    align-items: start;
}

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.footer-logo-text .light {
    font-weight: 400;
    color: #C49A6C;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #cccccc;
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: #C49A6C;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-icons a:hover {
    background: #C49A6C;
    color: #0f1c2a;
    transform: translateY(-3px);
}

.footer h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
    display: inline-block;
}

.footer h4:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #C49A6C;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: #cccccc;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer ul li a:hover {
    color: #C49A6C;
    padding-left: 5px;
}

.footer-services p, .footer-newsletter p {
    margin-bottom: 12px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-services i {
    color: #C49A6C;
    width: 20px;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    outline: none;
    font-size: 0.9rem;
    background: #fff;
    color: #1a2c3e;
}

.newsletter-form button {
    background: #C49A6C;
    border: none;
    padding: 0 20px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1.1rem;
}

.newsletter-form button:hover {
    background: #a57c52;
}

.copyright {
    text-align: center;
    padding-top: 40px;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    color: #aaaaaa;
}

/* About page extras */
.about-full {
    padding: 60px 0;
}

.about-grid-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    align-items: center;
}

.round-img-large {
    border-radius: 30px;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 50px 0;
    text-align: center;
}

.mission-vision i {
    font-size: 3rem;
    color: #C49A6C;
    margin-bottom: 15px;
}

.timeline div {
    background: #f9f6f2;
    padding: 15px;
    margin-bottom: 12px;
    border-radius: 12px;
}

/* ===== RESPONSIVE (ALL DEVICES) ===== */
@media (max-width: 992px) {
    .hero-content, .about-grid, .about-grid-full {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        background: white;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: 0.3s ease-in-out;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    .nav-menu.active {
        left: 0;
    }
    .mobile-toggle {
        display: block;
        z-index: 1001;
    }
    .top-bar-left, .top-bar-right {
        justify-content: center;
        width: 100%;
        text-align: center;
        margin-bottom: 8px;
    }
    .top-bar {
        flex-direction: column;
    }
    .mission-vision {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        justify-content: center;
    }
    .footer-services p {
        justify-content: center;
    }
    .footer h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .section {
        padding: 50px 0;
    }
    .live-card {
        flex-direction: column;
        text-align: center;
        border-radius: 30px;
    }
    .event-item {
        flex-direction: column;
        text-align: center;
    }
    .newsletter-form {
        max-width: 280px;
        margin: 0 auto;
    }
    .footer-grid {
        text-align: center;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    .btn-primary, .btn-outline {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .container {
        width: 95%;
    }
}