/*------------------------------------------------------------------
Culture Board Styles for Softly Mall
-------------------------------------------------------------------*/

/* Header Styles */
.header-culture {
	background: #fff;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.logo-culture {
	height: 40px;
	width: auto;
}

.nav-culture {
	display: flex;
	gap: 30px;
	align-items: center;
}

.nav-link-culture {
	font-family: Poppins-Regular;
	font-size: 16px;
	color: #333;
	text-decoration: none;
	padding: 8px 16px;
	border-radius: 20px;
}

.nav-link-culture:hover,
.nav-link-culture.active {
	color: #00b26f;
	background: rgba(0,178,111,0.1);
}

/* Hero Section */
.hero-culture {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	min-height: 300px;
	display: flex;
	align-items: center;
}

.culture-title {
	font-family: Poppins-Bold;
	font-size: 48px;
	margin-bottom: 20px;
	color: white;
	animation-delay: 0.2s;
}

.culture-subtitle {
	font-family: Poppins-Regular;
	font-size: 20px;
	color: rgba(255,255,255,0.9);
	animation-delay: 0.4s;
}

/* Articles Section */
.articles-section {
	padding: 60px 0;
	background: #f8f9fa;
	min-height: calc(100vh - 400px);
}

/* Article Card */
.article-card {
	display: block;
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0,0,0,0.07);
	text-decoration: none;
	height: 100%;
	transition: all 0.3s ease;
}

.article-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 24px rgba(0,0,0,0.15);
	text-decoration: none;
}

.article-card-img {
	width: 100%;
	height: 220px;
	background-size: cover;
	background-position: center;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	position: relative;
}

.article-tag {
	position: absolute;
	top: 16px;
	left: 16px;
	padding: 6px 16px;
	border-radius: 20px;
	font-family: Poppins-Regular;
	font-size: 13px;
	color: white;
	font-weight: 500;
}

.tag-teamwork {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.tag-values {
	background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.tag-work {
	background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.tag-growth {
	background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.article-card-content {
	padding: 24px;
}

.article-card-title {
	font-family: Poppins-Bold;
	font-size: 22px;
	color: #333;
	margin-bottom: 12px;
	line-height: 1.4;
}

.article-card-desc {
	font-family: Poppins-Regular;
	font-size: 15px;
	color: #666;
	line-height: 1.6;
	margin-bottom: 16px;
}

.article-card-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.article-date {
	font-family: Poppins-Regular;
	font-size: 13px;
	color: #999;
}

/* Article Detail Page */
.article-detail-header {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 80px 0 60px;
}

.article-detail-tag {
	display: inline-block;
	padding: 8px 20px;
	border-radius: 24px;
	font-family: Poppins-Regular;
	font-size: 14px;
	background: rgba(255,255,255,0.2);
	margin-bottom: 20px;
}

.article-detail-title {
	font-family: Poppins-Bold;
	font-size: 42px;
	color: white;
	margin-bottom: 20px;
	line-height: 1.3;
}

.article-detail-meta {
	font-family: Poppins-Regular;
	font-size: 16px;
	color: rgba(255,255,255,0.8);
}

.article-detail-content {
	padding: 60px 0;
	background: white;
}

.article-content-inner {
	max-width: 800px;
	margin: 0 auto;
}

.article-content-inner h2 {
	font-family: Poppins-Bold;
	font-size: 32px;
	color: #333;
	margin-top: 40px;
	margin-bottom: 20px;
}

.article-content-inner h3 {
	font-family: Poppins-Bold;
	font-size: 24px;
	color: #444;
	margin-top: 30px;
	margin-bottom: 16px;
}

.article-content-inner p {
	font-family: Poppins-Regular;
	font-size: 17px;
	color: #555;
	line-height: 1.8;
	margin-bottom: 20px;
}

.article-content-inner ul,
.article-content-inner ol {
	font-family: Poppins-Regular;
	font-size: 17px;
	color: #555;
	line-height: 1.8;
	margin-bottom: 20px;
	padding-left: 24px;
}

.article-content-inner li {
	margin-bottom: 10px;
}

.article-content-inner blockquote {
	border-left: 4px solid #00b26f;
	padding-left: 24px;
	margin: 30px 0;
	font-style: italic;
	color: #666;
}

.btn-back {
	display: inline-block;
	padding: 12px 32px;
	background: #667eea;
	color: white;
	font-family: Poppins-Regular;
	font-size: 16px;
	border-radius: 24px;
	text-decoration: none;
	transition: all 0.3s ease;
	margin-top: 40px;
}

.btn-back:hover {
	background: #5568d3;
	color: white;
	text-decoration: none;
	transform: translateX(-4px);
}

/* Footer */
.footer-culture {
	background: #2c3e50;
	color: white;
}

.footer-text {
	font-family: Poppins-Regular;
	font-size: 14px;
	color: rgba(255,255,255,0.7);
	margin: 0;
}

/* Button for index.html */
.btn-culture {
	display: inline-block;
	padding: 12px 32px;
	background: rgba(255,255,255,0.2);
	color: white;
	font-family: Poppins-Regular;
	font-size: 16px;
	border-radius: 24px;
	text-decoration: none;
	border: 2px solid rgba(255,255,255,0.5);
	transition: all 0.3s ease;
}

.btn-culture:hover {
	background: rgba(255,255,255,0.3);
	border-color: rgba(255,255,255,0.8);
	color: white;
	text-decoration: none;
}

/* Responsive */
@media (max-width: 991px) {
	.culture-title {
		font-size: 36px;
	}

	.culture-subtitle {
		font-size: 18px;
	}

	.article-detail-title {
		font-size: 32px;
	}
}

@media (max-width: 767px) {
	.nav-culture {
		gap: 15px;
	}

	.nav-link-culture {
		font-size: 14px;
		padding: 6px 12px;
	}

	.culture-title {
		font-size: 28px;
	}

	.culture-subtitle {
		font-size: 16px;
	}

	.article-card-title {
		font-size: 20px;
	}

	.article-detail-title {
		font-size: 26px;
	}

	.article-content-inner h2 {
		font-size: 24px;
	}

	.article-content-inner h3 {
		font-size: 20px;
	}
}
