 /* Reset dan Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Century Gothic', sans-serif;
}

body {
	color: #000000;
	line-height: 1.6;
	background-color: #fbfbd5;
}

a {
	text-decoration: none;
	color: #0056b3;
	transition: color 0.3s;
}

a:hover {
	color: #003366;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

/* Header Styles */
header {
	background-color: #f3bc17;
	color: #1b1f27;
	padding: 15px 0;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.logo {
	display: flex;
	align-items: center;
}

.logo img {
	height: 80px;
	margin-right: 15px;
}

.logo-text {
	display: flex;
	flex-direction: column;
}

.logo-text h1 {
	font-size: 24px;
	margin: 0;
}

.logo-text p {
	font-size: 16px;
	margin: 0;
	color: #1b1f27;
}

.search-box {
	display: flex;
}

.search-box input {
	padding: 8px 12px;
	border: none;
	border-radius: 4px 0 0 4px;
	width: 250px;
}

.search-box button {
	padding: 8px 12px;
	background: #302f2e;
	color: white;
	border: none;
	border-radius: 0 4px 4px 0;
	cursor: pointer;
}

/* Navigation */
nav {
	background-color: #302f2e;
}

.nav-menu {
	display: flex;
	list-style: none;
}

.nav-menu li {
	position: relative;
}

.nav-menu a {
	color: white;
	padding: 12px 20px;
	display: block;
	font-weight: 500;
}

.nav-menu a:hover {
	background-color: #00264d;
}

/* Dropdown menu */
.dropdown {
	position: relative;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: white;
	min-width: 200px;
	box-shadow: 0 8px 16px rgba(0,0,0,0.1);
	z-index: 1;
}

.dropdown-content a {
	color: #333;
	padding: 12px 16px;
	display: block;
}

.dropdown-content a:hover {
	background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
	display: block;
}

/* Main Content */
.main-content {
	display: flex;
	margin: 20px 0;
}

.content {
	flex: 3;
	margin-right: 20px;
}

.sidebar {
	flex: 1;
	background: white;
	padding: 20px;
	border-radius: 5px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Hero Section */
.hero {
	background: #302f2e;
	background-size: cover;
	color: white;
	padding: 40px;
	border-radius: 5px;
	margin-bottom: 20px;
	text-align: center;
}

.hero h2 {
	font-size: 32px;
	margin-bottom: 1px;
}

.hero p {
	font-size: 18px;
	margin-bottom: 20px;
}

.btn {
	display: inline-block;
	background: #f3bc17;
	color: black;
	padding: 10px 20px;
	border-radius: 4px;
	font-weight: 500;
}

.btn:hover {
	background: #201902;
	color: white;
}

/* News Section */
.news-section {
	background: white;
	padding: 20px;
	border-radius: 5px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.05);
	margin-bottom: 20px;
}

.section-title {
	font-size: 22px;
	color: #003366;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 2px solid #0056b3;
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 20px;
}

.news-card {
	border: 1px solid #eaeaea;
	border-radius: 5px;
	overflow: hidden;
	transition: transform 0.3s;
}

.news-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.news-card img {
	width: 100%;
	height: 300px;
	object-fit: cover;
}

.news-content {
	padding: 15px;
}

.news-date {
	color: #666;
	font-size: 14px;
	margin-bottom: 8px;
}

.news-title {
	font-size: 18px;
	margin-bottom: 10px;
}

/* Sidebar Styles */
.sidebar-widget {
	margin-bottom: 25px;
}

.sidebar-title {
	font-size: 18px;
	color: #003366;
	margin-bottom: 15px;
	padding-bottom: 8px;
	border-bottom: 1px solid #eaeaea;
}

.quick-links {
	list-style: none;
}

.quick-links li {
	margin-bottom: 8px;
}

.quick-links a {
	display: block;
	padding: 8px 10px;
	background: #f8f9fa;
	border-radius: 4px;
}

.quick-links a:hover {
	background: #e9ecef;
}

/* Artikel */
/* Styles for berita.php */
.bcrumb nav{
	background-color: #fbfbd5;
}
.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: #0066cc;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.news-article {
    margin-bottom: 40px;
}

.article-header {
    margin-bottom: 30px;
	background-color: #efd995;
}

.article-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
	margin-left: 15px;
}

.article-date, .article-category {
    margin-right: 15px;
}

.article-title {
    font-size: 28px;
    margin-bottom: 15px;
	margin-left: 15px;
    color: #333;
}

.article-excerpt {
    font-size: 18px;
    color: #666;
    font-style: italic;
    border-left: 3px solid #0066cc;
    padding-left: 15px;
}

.article-image {
    margin: 30px 0;
    text-align: center;
}

.article-image img {
    max-width: 100%;
    height: auto;
}

.image-caption {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

.article-content {
    line-height: 1.7;
    font-size: 16px;
}

.article-content h2 {
    margin: 25px 0 15px;
    color: #333;
}

.article-content ul, .article-content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 8px;
}

blockquote {
    border-left: 4px solid #0066cc;
    padding: 15px 20px;
    margin: 20px 0;
    background-color: #f9f9f9;
    font-style: italic;
}

cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-weight: bold;
}

.article-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.article-tags, .article-share {
    margin-bottom: 15px;
}

.article-tags a, .share-btn {
    display: inline-block;
    background: #f0f0f0;
    padding: 5px 10px;
    border-radius: 3px;
    margin-right: 5px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.article-tags a:hover, .share-btn:hover {
    background: #e0e0e0;
}

.related-news {
    margin-top: 50px;
}

/* Footer */
footer {
	background: #2a2927;
	color: white;
	padding: 40px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-bottom: 30px;
}

.footer-section h3 {
	font-size: 18px;
	margin-bottom: 15px;
	padding-bottom: 8px;
	border-bottom: 1px solid #676c70;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: #ccc;
}

.footer-links a:hover {
	color: white;
}

.footer-bottom {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid #676c70;
	font-size: 14px;
	color: #ccc;
}
.footerimg {
    width: 40%;
}

/* Responsive Design */
@media (max-width: 992px) {
	.main-content {
		flex-direction: column;
	}
	
	.content {
		margin-right: 0;
		margin-bottom: 20px;
	}
	
	.header-top {
		flex-direction: column;
		text-align: center;
	}
	
	.logo {
		margin-bottom: 15px;
		justify-content: center;
	}
	
	.search-box {
		width: 100%;
		justify-content: center;
	}
	
	.search-box input {
		width: 70%;
	}
}

@media (max-width: 768px) {
	.nav-menu {
		flex-direction: column;
	}
	
	.dropdown-content {
		position: static;
		display: none;
		box-shadow: none;
	}
	
	.dropdown:hover .dropdown-content {
		display: none;
	}
	
	.dropdown.active .dropdown-content {
		display: block;
	}
	
	.hero h2 {
		font-size: 26px;
	}
	
	.hero p {
		font-size: 16px;
	}
}