:root {
	--teal: #008080;
	--orange: #FF8C00;
	--light-teal: #e6f2f2;
	--dark-teal: #006666;
	--light-orange: #fff5e6;
	--white: #ffffff;
	--dark-gray: #333333;
	--light-gray: #f5f5f5;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
	line-height: 1.6;
	color: var(--dark-gray);
	background-color: var(--white);
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

/* Header */
header {
	background-color: var(--white);
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
	background: #181851;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
}

.logo {
	display: flex;
	align-items: center;
}

.logo h1 {
	font-size: 1.8rem;
	color: var(--teal);
	margin-left: 10px;
}

.logo span {
	color: var(--orange);
}

nav ul {
	display: flex;
	list-style: none;
}

nav ul li {
	margin-left: 25px;
}

nav ul li a {
	text-decoration: none;
	color: var(--dark-gray);
	font-weight: 600;
	transition: color 0.3s;
	color: wheat;
}

nav ul li a:hover {
	color: var(--teal);
}

.mobile-menu {
	display: none;
	font-size: 1.5rem;
	cursor: pointer;
}

/* Hero Section */
.hero {
	background: linear-gradient(rgba(0, 128, 128, 0.8), rgba(0, 128, 128, 0.9)), url('../images/wadagni_talata.jpg') no-repeat center center/cover;
	color: var(--white);
	padding: 100px 0;
	text-align: center;
}

.hero h2 {
	font-size: 3rem;
	margin-bottom: 20px;
}

.hero p {
	font-size: 1.2rem;
	max-width: 700px;
	margin: 0 auto 30px;
}

.btn {
	display: inline-block;
	background-color: var(--orange);
	color: var(--white);
	padding: 12px 30px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: 600;
	transition: background-color 0.3s;
}

.btn:hover {
	background-color: #e67e00;
}

/* About Section */
.about {
	padding: 80px 0;
	background-color: var(--light-teal);
}

.section-title {
	text-align: center;
	margin-bottom: 50px;
}

.section-title h2 {
	font-size: 2.5rem;
	color: var(--teal);
	position: relative;
	display: inline-block;
	padding-bottom: 15px;
}

.section-title h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background-color: var(--orange);
}

.about-content {
	display: flex;
	align-items: center;
	gap: 40px;
}

.about-image {
	flex: 1;
	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;
}

.about-text {
	flex: 1;
}

.about-text h3 {
	font-size: 1.8rem;
	color: var(--teal);
	margin-bottom: 20px;
}

.about-text p {
	margin-bottom: 15px;
}

 /* Achievements Section */
.achievements {
	padding: 220px 0;
	background: linear-gradient(rgba(19, 81, 81, 0.8), rgba(7, 53, 123, 0.9)), url('../images/wadagni_talon.avif') no-repeat center center/cover;
}

.achievements-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.achievement-card {
	background-color: var(--white);
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	transition: transform 0.3s;
	border-top: 4px solid var(--teal);
}

.achievement-card:hover {
	transform: translateY(-10px);
}

.achievement-card h3 {
	color: var(--teal);
	margin-bottom: 15px;
	font-size: 1.4rem;
}

.achievement-card p {
	color: var(--dark-gray);
}

/* Program Section */
.program {
	padding: 80px 0;
	background-color: var(--light-orange);
}

.program-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.program-card {
	background-color: var(--white);
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	transition: transform 0.3s;
	border-top: 4px solid var(--orange);
}

.program-card:hover {
	transform: translateY(-10px);
}

.program-card h3 {
	color: var(--teal);
	margin-bottom: 15px;
	font-size: 1.4rem;
}

.program-card p {
	color: var(--dark-gray);
}

/* Support Section */

.support::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
	background-size: auto;
  background-size: cover;
}

.support {
	padding: 260px 0;
	background-color: var(--light-orange);
	background: linear-gradient(135deg, #151217 0%, #2575fc 100%);
	text-align: center;
	color: white;
	position: relative;
	overflow: hidden;
	background: url('../images/wadagni_mef.jpg') no-repeat center center/cover;
}

.support h2 {
	color: var(--orange);
	margin-bottom: 20px;
}

.support p {
	max-width: 700px;
	margin: 0 auto 30px;
}

/* News Section */
.news {
	padding: 80px 0;
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.news-card {
	background-color: var(--white);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.news-image {
	height: 200px;
	overflow: hidden;
}

.news-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.news-card:hover .news-image img {
	transform: scale(1.1);
}

.news-content {
	padding: 20px;
}

.news-date {
	color: var(--teal);
	font-size: 0.9rem;
	margin-bottom: 10px;
}

.news-content h3 {
	margin-bottom: 10px;
	color: var(--dark-gray);
}

.news-content p {
	margin-bottom: 15px;
	color: var(--dark-gray);
}

.news-link {
	color: var(--orange);
	text-decoration: none;
	font-weight: 600;
}

/* Contact Section */
.contact {
	padding: 200px 0;
	background-color: var(--light-teal);
	background: linear-gradient(rgba(192, 217, 217, 0.8), rgba(241, 255, 251, 0.9)), url('../images/wadagni_merkel.avif') no-repeat center center/cover;
}

.contact-container {
	display: flex;
	gap: 40px;
}

.contact-info {
	flex: 1;
}

.contact-info h3 {
	color: var(--teal);
	margin-bottom: 20px;
}

.contact-details {
	margin-bottom: 30px;
}

.contact-detail {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.contact-detail i {
	color: var(--teal);
	margin-right: 10px;
	font-size: 1.2rem;
}

.contact-form {
	flex: 1;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 5px;
	color: var(--dark-gray);
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 1rem;
}

.form-group textarea {
	height: 150px;
	resize: vertical;
}

/* Footer */
footer {
	background-color: var(--dark-teal);
	color: var(--white);
	padding: 60px 0 20px;
}

.footer-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-col h3 {
	font-size: 1.3rem;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}

.footer-col h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 2px;
	background-color: var(--orange);
}

.footer-col ul {
	list-style: none;
}

.footer-col ul li {
	margin-bottom: 10px;
}

.footer-col ul li a {
	color: #ddd;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-col ul li a:hover {
	color: var(--orange);
}

.social-links {
	display: flex;
	gap: 15px;
}

.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: #181851;;
	border-radius: 50%;
	color: aqua;
	text-decoration: none;
	transition: background-color 0.3s;
}

.social-links a:hover {
	background-color: var(--orange);
}

.copyright {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255,255,255,0.1);
	font-size: 0.9rem;
	color: #ddd;
}

/* Responsive Styles */
@media (max-width: 992px) {
	.about-content {
		flex-direction: column;
	}
	
	.contact-container {
		flex-direction: column;
	}
}

@media (max-width: 768px) {
	nav ul {
		display: none;
		position: absolute;
		top: 70px;
		left: 0;
		width: 100%;
		background-color: var(--white);
		flex-direction: column;
		padding: 20px;
		box-shadow: 0 5px 10px rgba(0,0,0,0.1);
		background: #181851;
	}
	
	nav ul.show {
		display: flex;
	}
	
	nav ul li {
		margin: 10px 0;
	}
	
	.mobile-menu {
		display: block;
	}
	
	.hero h2 {
		font-size: 2.2rem;
	}
	
	.section-title h2 {
		font-size: 2rem;
	}
}