<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Grace Baptist Seminary</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
color: #222;
background: #ffffff;
}
/* =========================
HEADER
========================== */
header {
background: #071827;
color: white;
display: flex;
align-items: center;
justify-content: space-between;
padding: 18px 7%;
position: sticky;
top: 0;
z-index: 1000;
}
.logo {
display: flex;
align-items: center;
gap: 12px;
}
.logo-icon {
width: 55px;
height: 55px;
border: 2px solid #c9a45d;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
font-size: 28px;
color: #c9a45d;
}
.logo-text h1 {
font-family: Georgia, serif;
font-size: 22px;
letter-spacing: 1px;
}
.logo-text span {
font-size: 12px;
letter-spacing: 5px;
color: #d6d6d6;
}
nav {
display: flex;
align-items: center;
gap: 28px;
}
nav a {
color: white;
text-decoration: none;
font-size: 13px;
letter-spacing: 1px;
font-weight: bold;
transition: 0.3s;
}
nav a:hover {
color: #c9a45d;
}
.apply-btn {
background: #b8944f;
padding: 14px 24px;
color: white !important;
}
/* =========================
HERO SECTION
========================== */
.hero {
min-height: 560px;
display: flex;
align-items: center;
position: relative;
background-image:
linear-gradient(
90deg,
rgba(5, 20, 35, 0.96) 0%,
rgba(5, 20, 35, 0.88) 35%,
rgba(5, 20, 35, 0.25) 70%,
rgba(5, 20, 35, 0.05) 100%
),
url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=1800&q=80");
background-size: cover;
background-position: center;
}
.hero-content {
max-width: 650px;
margin-left: 7%;
color: white;
padding: 50px 20px 50px 0;
}
.small-title {
color: #d2aa61;
font-size: 14px;
letter-spacing: 2px;
font-weight: bold;
margin-bottom: 20px;
}
.hero h2 {
font-family: Georgia, serif;
font-size: 68px;
line-height: 1.05;
margin-bottom: 25px;
}
.hero p {
font-size: 18px;
line-height: 1.7;
color: #eeeeee;
max-width: 520px;
margin-bottom: 35px;
}
.hero-buttons {
display: flex;
gap: 18px;
flex-wrap: wrap;
}
.btn {
display: inline-block;
padding: 17px 28px;
text-decoration: none;
font-weight: bold;
font-size: 13px;
letter-spacing: 1px;
transition: 0.3s;
}
.btn-gold {
background: #b8944f;
color: white;
}
.btn-gold:hover {
background: #d0ac68;
}
.btn-outline {
border: 1px solid white;
color: white;
}
.btn-outline:hover {
background: white;
color: #071827;
}
/* =========================
FEATURES
========================== */
.features {
display: grid;
grid-template-columns: repeat(4, 1fr);
padding: 50px 7%;
background: #f5f3ef;
}
.feature {
text-align: center;
padding: 15px 30px;
border-right: 1px solid #d6d0c7;
}
.feature:last-child {
border-right: none;
}
.feature-icon {
font-size: 45px;
color: #b8944f;
margin-bottom: 15px;
}
.feature h3 {
font-size: 15px;
letter-spacing: 1.5px;
margin-bottom: 12px;
color: #182532;
}
.feature p {
font-size: 14px;
line-height: 1.7;
color: #555;
}
/* =========================
PROGRAMS
========================== */
.programs {
background: #071827;
color: white;
padding: 80px 7%;
}
.section-label {
color: #d2aa61;
font-size: 13px;
letter-spacing: 2px;
font-weight: bold;
margin-bottom: 15px;
}
.section-title {
font-family: Georgia, serif;
font-size: 42px;
margin-bottom: 45px;
}
.program-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
}
.program-card {
background: white;
color: #222;
overflow: hidden;
transition: 0.3s;
}
.program-card:hover {
transform: translateY(-8px);
}
.program-card img {
width: 100%;
height: 220px;
object-fit: cover;
}
.program-info {
padding: 25px;
}
.program-info h3 {
font-family: Georgia, serif;
font-size: 24px;
color: #071827;
margin-bottom: 12px;
}
.program-info p {
line-height: 1.6;
color: #555;
margin-bottom: 20px;
}
.learn-more {
color: #9c793d;
font-weight: bold;
text-decoration: none;
}
/* =========================
CALL TO ACTION
========================== */
.cta {
text-align: center;
padding: 90px 20px;
background:
linear-gradient(
rgba(7, 24, 39, 0.88),
rgba(7, 24, 39, 0.88)
),
url("https://images.unsplash.com/photo-1504052434569-70ad5836ab65?auto=format&fit=crop&w=1800&q=80");
background-size: cover;
background-position: center;
color: white;
}
.cta h2 {
font-family: Georgia, serif;
font-size: 45px;
margin-bottom: 20px;
}
.cta p {
max-width: 650px;
margin: auto;
line-height: 1.8;
font-size: 17px;
margin-bottom: 30px;
}
/* =========================
FOOTER
========================== */
footer {
background: #040e17;
color: #ddd;
padding: 50px 7% 25px;
}
.footer-content {
display: grid;
grid-template-columns: 2fr 1fr 1fr;
gap: 40px;
margin-bottom: 35px;
}
footer h3 {
color: #c9a45d;
margin-bottom: 18px;
}
footer p,
footer a {
color: #bbb;
line-height: 1.8;
font-size: 14px;
text-decoration: none;
}
footer a:hover {
color: #c9a45d;
}
.copyright {
border-top: 1px solid #24303a;
padding-top: 20px;
text-align: center;
font-size: 13px;
color: #888;
}
/* =========================
MOBILE RESPONSIVE
========================== */
@media (max-width: 900px) {
header {
flex-direction: column;
gap: 20px;
}
nav {
flex-wrap: wrap;
justify-content: center;
}
.hero h2 {
font-size: 48px;
}
.features {
grid-template-columns: repeat(2, 1fr);
}
.feature:nth-child(2) {
border-right: none;
}
.program-grid {
grid-template-columns: 1fr;
}
}
@media (max-width: 600px) {
nav {
gap: 12px;
}
nav a {
font-size: 11px;
}
.hero {
min-height: 650px;
}
.hero h2 {
font-size: 40px;
}
.features {
grid-template-columns: 1fr;
}
.feature {
border-right: none;
border-bottom: 1px solid #d6d0c7;
padding: 25px;
}
.footer-content {
grid-template-columns: 1fr;
}
.section-title {
font-size: 34px;
}
}
</style>
</head>
<body>
<!-- HEADER -->
<header>
<div class="logo">
<div class="logo-icon">
</div>
<div class="logo-text">
<h1>GRACE BAPTIST</h1>
<span>SEMINARY</span>
</div>
</div>
<nav>
<a href="#">HOME</a>
<a href="#about">ABOUT</a>
<a href="#programs">ACADEMICS</a>
<a href="#">ADMISSIONS</a>
<a href="#">CAMPUS LIFE</a>
<a href="#">RESOURCES</a>
<a href="#">CONTACT</a>
<a href="#" class="apply-btn">APPLY NOW</a>
</nav>
</header>
<!-- HERO -->
<section class="hero">
<div class="hero-content">
<div class="small-title">
TRAINING FAITHFUL MEN FOR THE GOSPEL MINISTRY
</div>
<h2>
Rooted in Scripture.<br>
Equipped for Service.
</h2>
<p>
A Biblical education that prepares students to proclaim
the Word of God, serve the local church, and fulfill
the Great Commission.
</p>
<div class="hero-buttons">
<a href="#programs" class="btn btn-gold">
EXPLORE PROGRAMS
</a>
<a href="#" class="btn btn-outline">
▶ WATCH VIDEO
</a>
</div>
</div>
</section>
<!-- FEATURES -->
<section class="features" id="about">
<div class="feature">
<div class="feature-icon">📖</div>
<h3>BIBLICAL TRAINING</h3>
<p>
Grounded in the authority of Scripture
and committed to sound doctrine.
</p>
</div>
<div class="feature">
<div class="feature-icon">🏛</div>
<h3>GODLY COMMUNITY</h3>
<p>
Learn and grow in a Christian community
that encourages spiritual maturity.
</p>
</div>
<div class="feature">
<div class="feature-icon">🌎</div>
<h3>GOSPEL MISSION</h3>
<p>
Equipping servants to take the Gospel
to their communities and the nations.
</p>
</div>
<div class="feature">
<div class="feature-icon">✝</div>
<h3>FAITHFUL SERVICE</h3>
<p>
Preparing leaders who will faithfully
serve Christ and His Church.
</p>
</div>
</section>
<!-- ACADEMIC PROGRAMS -->
<section class="programs" id="programs">
<div class="section-label">
ACADEMIC PROGRAMS
</div>
<h2 class="section-title">
Programs That Equip for Ministry
</h2>
<div class="program-grid">
<div class="program-card">
<img src="https://images.unsplash.com/photo-1504052434569-70ad5836ab65?auto=format&fit=crop&w=900&q=80">
<div class="program-info">
<h3>Bible Diploma</h3>
<p>
A foundational program designed to provide
students with a strong understanding of
the Bible and Christian ministry.
</p>
<a href="#" class="learn-more">
LEARN MORE →
</a>
</div>
</div>
<div class="program-card">
<img src="https://images.unsplash.com/photo-1455885666463-3d0a8b84f0e8?auto=format&fit=crop&w=900&q=80">
<div class="program-info">
<h3>Associate in Theology</h3>
<p>
Develop a deeper knowledge of Scripture,
theology, ministry, and practical Christian
service.
</p>
<a href="#" class="learn-more">
LEARN MORE →
</a>
</div>
</div>
<div class="program-card">
<img src="https://images.unsplash.com/photo-1523050854058-8df90110c9f1?auto=format&fit=crop&w=900&q=80">
<div class="program-info">
<h3>Bachelor of Theology</h3>
<p>
Advanced biblical and theological training
for pastors, missionaries, teachers,
and Christian workers.
</p>
<a href="#" class="learn-more">
LEARN MORE →
</a>
</div>
</div>
</div>
</section>
<!-- CALL TO ACTION -->
<section class="cta">
<h2>
Begin Your Journey of Biblical Training
</h2>
<p>
Join a community of students preparing to serve
Christ, strengthen local churches, and carry the
Gospel to the world.
</p>
<a href="#" class="btn btn-gold">
APPLY FOR ADMISSION
</a>
</section>
<!-- FOOTER -->
<footer>
<div class="footer-content">
<div>
<h3>GRACE BAPTIST SEMINARY</h3>
<p>
Preparing faithful servants of Jesus Christ
through biblical education, spiritual growth,
and practical ministry training.
</p>
</div>
<div>
<h3>QUICK LINKS</h3>
<p><a href="#">About Us</a></p>
<p><a href="#">Academic Programs</a></p>
<p><a href="#">Admissions</a></p>
<p><a href="#">Student Life</a></p>
</div>
<div>
<h3>CONTACT</h3>
<p>📍 Your Seminary Address</p>
<p>📞 +63 900 000 0000</p>
<p>✉ info@yourseminary.org</p>
</div>
</div>
<div class="copyright">
© 2026 Grace Baptist Seminary.
All Rights Reserved.
</div>
</footer>
</body>
</html>