* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: #ffffff;
    color: #222;
    line-height: 1.6;
}

/* ================= NAVBAR ================= */

.navbar {
    background: #f3f3f3;
    border-bottom: 1px solid #e5e5e5;
}

.nav-container {
    max-width: 1300px;
    margin: auto;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 65px;
}

.logo-text h1 {
    font-size: 18px;
    color: #0b7a2a;
    font-weight: 800;
}

.logo-text h2 {
    font-size: 22px;
    color: #c62828;
    font-weight: 800;
}

nav {
    display: flex;
    gap: 35px;
}

nav a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: #111;
    position: relative;
}

nav a.active {
    color: #c62828;
}

nav a.active::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 4px;
    background: #c62828;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    border-radius: 3px;
}

/* ================= HERO ================= */

.hero {
    height: 90vh;
    background: url("assets/img/Rectangle 2.png") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
    max-width: 900px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 15px;
}

.tagline {
    font-style: italic;
    margin-bottom: 15px;
}

.scripture {
    margin-bottom: 30px;
}

.hero-buttons .btn {
    padding: 14px 30px;
    border-radius: 40px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    margin: 5px;
}

.btn-yellow {
    background: #f4c430;
}

.btn-red {
    background: #d32f2f;
    color: white;
}

/* ================= ABOUT ================= */

.about {
    background: #f5f5f5;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 45% 45%;
    justify-content: space-around;
    align-items: center;
}

.about-right img{
    width: 100%;
    height: auto;
}
.about h4 {
    color: #c62828;
    font-size: 14px;
    margin-bottom: 10px;
}

.about h2 {
    color: #0b7a2a;
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    margin-top: 20px;
    color: #c62828;
    border: 1px solid #c62828;
    padding: 8px 18px;
    border-radius: 25px;
    text-decoration: none;
}

/* ================= SERMON ================= */

.sermon {
    background: #ededf0;
    padding: 80px 20px;
}

.sermon h4 {
    color: #c62828;
    text-align: center;
}

.sermon h2 {
    text-align: center;
    color: #0b7a2a;
    margin-bottom: 40px;
}

.sermon-card {
    width: 100%;
    height: 450px;
    margin: auto;
    background: url("assets/img/Rectangle 4.png") center/cover;
    position: relative;
    border-radius: 8px;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
}

.sermon-info {
    width: 100%;
    margin: 30px auto 0;
    background: white;
    padding: 30px;
    border-radius: 6px;
}

.sermon-actions button {
    margin-right: 10px;
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid #ddd;
    background: #fff;
}

/* ================= EVENTS ================= */

.events {
    padding: 80px 20px;
    text-align: center;
}

.events h4 {
    color: #c62828;
}

.events h2 {
    color: #0b7a2a;
    margin-bottom: 40px;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.event-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: left;
}

.event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.event-card h3 {
    padding: 15px;
}

.event-card p,
.event-card span {
    padding: 0 15px 15px;
    display: block;
}

.btn-outline {
    margin-top: 40px;
    padding: 10px 25px;
    border-radius: 30px;
    border: 1px solid #c62828;
    background: transparent;
    color: #c62828;
}

/* ================= NEWSLETTER ================= */

.newsletter {
    background: url("assets/img/Frame\ 27\ 1.png") center/cover no-repeat;
    padding: 100px 20px;
    text-align: center;
    color: white;
    position: relative;
}

.newsletter::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.newsletter h2,
.newsletter p,
.newsletter form {
    position: relative;
}

.newsletter input {
    padding: 12px 20px;
    width: 280px;
    border-radius: 30px;
    border: none;
    margin-right: 10px;
}

.newsletter button {
    padding: 12px 25px;
    border-radius: 30px;
    border: none;
    background: #c62828;
    color: white;
}

/* ================= FOOTER ================= */

.footer {
    background: #cddbd3;
    padding: 70px 60px 30px;
}

.footer-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 55px;
}

.footer-brand h3 {
    font-size: 12px;
    color: #0b7a2a;
    font-weight: 800;
}

.footer-brand h4 {
    font-size: 13px;
    color: #c62828;
    font-weight: 800;
}

.footer-brand p {
    margin: 15px 0 20px;
    max-width: 280px;
}

.social-icons span {
    margin-right: 12px;
    font-size: 18px;
    cursor: pointer;
}

.footer-col h5 {
    color: #c62828;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-col a {
    display: block;
    margin-bottom: 12px;
    text-decoration: none;
    color: #222;
    font-weight: 500;
}

.footer-col p {
    margin-bottom: 12px;
}

.footer hr {
    margin: 50px 0 25px;
    border: none;
    height: 1px;
    background: #aebbb3;
}

.copyright {
    text-align: center;
    font-size: 14px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #c62828;
    color: white;
    border-radius: 50%;
    margin-right: 12px;
    font-size: 14px;
    transition: 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: #0b7a2a;
}