<!DOCTYPE html>
<html lang=”en”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<title>St. Stephen of Hungary College – Gombi, Adamawa State</title>
<link rel=”stylesheet” href=”https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css”>
<style>
/* Global Styles */
:root {
–primary: #1B5E20; /* Dark green */
–secondary: #D32F2F; /* Red */
–accent: #F5F5F5; /* White */
–text: #333333;
–light-bg: #F8F9FA;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: ‘Segoe UI’, Tahoma, Geneva, Verdana, sans-serif;
}
body {
line-height: 1.6;
color: var(–text);
background-color: var(–accent);
}
.container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
}
.btn {
display: inline-block;
background: var(–primary);
color: white;
padding: 12px 24px;
border: none;
border-radius: 4px;
cursor: pointer;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
}
.btn:hover {
background: #0d4011;
transform: translateY(-2px);
}
.btn-secondary {
background: var(–secondary);
}
.btn-secondary:hover {
background: #a11c1c;
}
.section-title {
text-align: center;
margin-bottom: 2rem;
color: var(–primary);
position: relative;
padding-bottom: 15px;
}
.section-title:after {
content: ”;
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 3px;
background: var(–secondary);
}
/* Header Styles */
header {
background: var(–primary);
color: white;
padding: 1rem 0;
position: sticky;
top: 0;
z-index: 100;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header-container {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
display: flex;
align-items: center;
}
.logo img {
height: 60px;
margin-right: 15px;
}
.logo-text {
display: flex;
flex-direction: column;
}
.logo h1 {
font-size: 1.5rem;
line-height: 1.2;
}
.logo span {
font-size: 0.9rem;
opacity: 0.9;
}
nav ul {
display: flex;
list-style: none;
}
nav ul li {
margin-left: 1.5rem;
}
nav ul li a {
color: white;
text-decoration: none;
font-weight: 500;
transition: color 0.3s;
position: relative;
}
nav ul li a:after {
content: ”;
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: var(–secondary);
transition: width 0.3s;
}
nav ul li a:hover {
color: #fff;
}
nav ul li a:hover:after {
width: 100%;
}
.mobile-menu-btn {
display: none;
font-size: 1.5rem;
background: none;
border: none;
color: white;
cursor: pointer;
}
/* Hero Section */
.hero {
background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(‘https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3’) no-repeat center center/cover;
color: white;
padding: 6rem 0;
text-align: center;
}
.hero-content {
max-width: 800px;
margin: 0 auto;
}
.hero h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.hero p {
font-size: 1.2rem;
margin-bottom: 2rem;
}
.hero-buttons {
display: flex;
justify-content: center;
gap: 1rem;
margin-top: 2rem;
}
/* About Section */
.about {
padding: 5rem 0;
background: white;
}
.about-content {
display: flex;
flex-wrap: wrap;
gap: 2rem;
align-items: center;
}
.about-text {
flex: 1;
min-width: 300px;
}
.about-image {
flex: 1;
min-width: 300px;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.about-image img {
width: 100%;
height: auto;
display: block;
}
/* Mission Vision Section */
.mission-vision {
padding: 5rem 0;
background: var(–light-bg);
}
.mv-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.mv-card {
background: white;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
text-align: center;
border-top: 4px solid var(–primary);
}
.mv-card.mv-card-red {
border-top-color: var(–secondary);
}
.mv-card i {
font-size: 2.5rem;
color: var(–primary);
margin-bottom: 1rem;
}
.mv-card.mv-card-red i {
color: var(–secondary);
}
.mv-card h3 {
margin-bottom: 1rem;
color: var(–primary);
}
.mv-card.mv-card-red h3 {
color: var(–secondary);
}
/* Academics Section */
.academics {
padding: 5rem 0;
background: white;
}
.programs {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.program-card {
background: white;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
transition: transform 0.3s;
border-left: 4px solid var(–primary);
}
.program-card:hover {
transform: translateY(-5px);
}
.program-content {
padding: 1.5rem;
}
.program-content h3 {
color: var(–primary);
margin-bottom: 0.5rem;
}
/* News Section */
.news {
padding: 5rem 0;
background: var(–light-bg);
}
.news-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.news-card {
background: white;
border: 1px solid #eee;
border-radius: 8px;
overflow: hidden;
transition: transform 0.3s;
}
.news-card:hover {
transform: translateY(-5px);
}
.news-image {
height: 200px;
overflow: hidden;
}
.news-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s;
}
.news-card:hover .news-image img {
transform: scale(1.05);
}
.news-content {
padding: 1.5rem;
}
.news-date {
color: var(–secondary);
font-size: 0.9rem;
margin-bottom: 0.5rem;
font-weight: 500;
}
.news-content h3 {
margin-bottom: 0.5rem;
color: var(–primary);
}
/* Contact Section */
.contact {
padding: 5rem 0;
background: white;
}
.contact-container {
display: flex;
flex-wrap: wrap;
gap: 2rem;
}
.contact-info, .contact-form {
flex: 1;
min-width: 300px;
}
.contact-info h3 {
margin-bottom: 1rem;
color: var(–primary);
}
.contact-details {
margin-bottom: 2rem;
}
.contact-details p {
margin-bottom: 0.5rem;
display: flex;
align-items: center;
}
.contact-details i {
margin-right: 10px;
color: var(–primary);
width: 20px;
}
.form-group {
margin-bottom: 1.5rem;
}
.form-group label {
display: block;
margin-bottom: 0.5rem;
font-weight: 500;
}
.form-group input, .form-group textarea {
width: 100%;
padding: 12px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 1rem;
}
.form-group textarea {
min-height: 150px;
resize: vertical;
}
/* Footer */
footer {
background: var(–primary);
color: white;
padding: 3rem 0 1rem;
}
.footer-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}
.footer-section h3 {
color: var(–secondary);
margin-bottom: 1rem;
font-size: 1.2rem;
}
.footer-section ul {
list-style: none;
}
.footer-section ul li {
margin-bottom: 0.5rem;
}
.footer-section a {
color: #ddd;
text-decoration: none;
transition: color 0.3s;
}
.footer-section a:hover {
color: var(–secondary);
}
.social-links {
display: flex;
gap: 1rem;
margin-top: 1rem;
}
.social-links a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
transition: all 0.3s;
}
.social-links a:hover {
background: var(–secondary);
transform: translateY(-3px);
}
.copyright {
text-align: center;
padding-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
font-size: 0.9rem;
color: #aaa;
}
/* Responsive Design */
@media (max-width: 768px) {
.mobile-menu-btn {
display: block;
}
nav ul {
display: none;
flex-direction: column;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(–primary);
padding: 1rem 0;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
nav ul.show {
display: flex;
}
nav ul li {
margin: 0;
text-align: center;
padding: 0.5rem 0;
}
.hero h2 {
font-size: 2rem;
}
.hero p {
font-size: 1rem;
}
.hero-buttons {
flex-direction: column;
}
}
</style>
</head>
<body>
<!– Header –>
<header>
<div class=”container header-container”>
<div class=”logo”>
<img src=”data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCI+PHJlY3QgeD0iMTAiIHk9IjEwIiB3aWR0aD0iODAiIGhlaWdodD0iODAiIGZpbGw9IiMxQjVFMjAiIHJ4PSI1IiByeT0iNSIvPjx0ZXh0IHg9IjUwIiB5PSI1NSIgZm9udC1mYW1pbHk9IkFyaWFsIiBmb250LXNpemU9IjI0IiBmaWxsPSIjZmZmIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiBkb21pbmFudC1iYXNlbGluZT0ibWlkZGxlIj5TU0hDPC90ZXh0Pjwvc3ZnPg==” alt=”SSHC Logo”>
<div class=”logo-text”>
<h1>St. Stephen of Hungary College</h1>
<span>Gombi, Adamawa State</span>
</div>
</div>
<button class=”mobile-menu-btn”>
<i class=”fas fa-bars”></i>
</button>
<nav>
<ul id=”nav-menu”>
<li><a href=”#home”>Home</a></li>
<li><a href=”#about”>About</a></li>
<li><a href=”#academics”>Academics</a></li>
<li><a href=”#admissions”>Admissions</a></li>
<li><a href=”#campus”>Campus Life</a></li>
<li><a href=”#contact”>Contact</a></li>
</ul>
</nav>
</div>
</header>
<!– Hero Section –>
<section class=”hero” id=”home”>
<div class=”container hero-content”>
<h2>Excellence in Education Since 1985</h2>
<p>Forming future leaders through quality Catholic education in Gombi, Adamawa State</p>
<div class=”hero-buttons”>
<a href=”#admissions” class=”btn”>Apply Now</a>
<a href=”#about” class=”btn btn-secondary”>Learn More</a>
</div>
</div>
</section>
<!– About Section –>
<section class=”about” id=”about”>
<div class=”container”>
<h2 class=”section-title”>About Our College</h2>
<div class=”about-content”>
<div class=”about-text”>
<p>St. Stephen of Hungary College, Gombi, is a Catholic secondary institution established in 1985 by the Hungarian Missionary Fathers. Located in the serene environment of Gombi, Adamawa State, we are committed to providing quality education that develops the whole person – spiritually, academically, physically, and socially.</p>
<p>Our college is known for its excellent academic record, disciplined environment, and strong moral formation. We offer both junior and senior secondary education following the Nigerian curriculum while incorporating values that prepare students for leadership and service.</p>
<p>With state-of-the-art facilities, qualified teaching staff, and a nurturing environment, we provide students with the tools they need to excel in their academic pursuits and personal development.</p>
</div>
<div class=”about-image”>
<img src=”https://images.unsplash.com/photo-1524178232400-38d816f003ae?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80″ alt=”St. Stephen of Hungary College Campus”>
</div>
</div>
</div>
</section>
<!– Mission Vision Section –>
<section class=”mission-vision”>
<div class=”container”>
<h2 class=”section-title”>Our Mission & Vision</h2>
<div class=”mv-container”>
<div class=”mv-card”>
<i class=”fas fa-bullseye”></i>
<h3>Our Mission</h3>
<p>To provide quality Catholic education that forms students spiritually, intellectually, physically, and socially, preparing them for higher education and responsible citizenship.</p>
</div>
<div class=”mv-card mv-card-red”>
<i class=”fas fa-eye”></i>
<h3>Our Vision</h3>
<p>To be a leading educational institution in Adamawa State known for academic excellence, moral integrity, and the formation of future leaders.</p>
</div>
<div class=”mv-card”>
<i class=”fas fa-star”></i>
<h3>Our Values</h3>
<p>Faith, Excellence, Integrity, Service, and Community. These values form the foundation of everything we do at St. Stephen of Hungary College.</p>
</div>
</div>
</div>
</section>
<!– Academics Section –>
<section class=”academics” id=”academics”>
<div class=”container”>
<h2 class=”section-title”>Academic Programs</h2>
<p class=”text-center”>We offer a comprehensive curriculum designed to prepare students for higher education and future careers</p>
<div class=”programs”>
<div class=”program-card”>
<div class=”program-content”>
<h3>Junior Secondary School</h3>
<p>Our JSS program provides a solid foundation in core subjects including Mathematics, English, Basic Science, Social Studies, and Religious Knowledge.</p>
<a href=”#” class=”btn”>Learn More</a>
</div>
</div>
<div class=”program-card”>
<div class=”program-content”>
<h3>Senior Secondary School</h3>
<p>SSS students can choose between Science, Arts, and Commercial streams, with specialized teaching in their chosen fields.</p>
<a href=”#” class=”btn”>Learn More</a>
</div>
</div>
<div class=”program-card”>
<div class=”program-content”>
<h3>Extracurricular Activities</h3>
<p>We offer various clubs and societies including Literary and Debating Society, Jet Club, Press Club, and more to develop students’ talents.</p>
<a href=”#” class=”btn”>Learn More</a>
</div>
</div>
</div>
</div>
</section>
<!– News Section –>
<section class=”news” id=”admissions”>
<div class=”container”>
<h2 class=”section-title”>Admissions & News</h2>
<div class=”news-container”>
<div class=”news-card”>
<div class=”news-image”>
<img src=”https://images.unsplash.com/photo-1584697964358-3e14ca57658b?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80″ alt=”Admissions”>
</div>
<div class=”news-content”>
<div class=”news