/* Creative Life Styles */

.creative-page {
	background: #fff;
	padding-top: 3rem;
	padding-bottom: 5rem;
}

.creative-hero {
	background: linear-gradient(135deg, #CE9826 0%, #a87d1f 100%);
	color: #fff;
	padding: 5rem 0;
	margin-bottom: 4rem;
	position: relative;
	overflow: hidden;
	text-align: center;
}

.creative-hero::before {
	content: '🎭';
	position: absolute;
	font-size: 20rem;
	opacity: 0.1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.creative-hero__content {
	position: relative;
	z-index: 1;
}

.creative-hero__title {
	font-size: clamp(2.5rem, 6vw, 4rem);
	font-weight: 700;
	margin-bottom: 1rem;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.creative-hero__subtitle {
	font-size: clamp(1.1rem, 2vw, 1.5rem);
	opacity: 0.95;
	max-width: 700px;
	margin: 0 auto;
}

.creative-categories {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-bottom: 5rem;
}

.creative-category {
	background: #F2F2F2;
	border-radius: 1.5rem;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	border: 3px solid transparent;
	cursor: pointer;
	text-decoration: none;
	display: block;
}

.creative-category:hover {
	transform: translateY(-10px);
	border-color: #CE9826;
	box-shadow: 0 15px 40px rgba(206, 152, 38, 0.2);
}

.creative-category__icon {
	width: 100%;
	height: 180px;
	background: linear-gradient(135deg, #CE9826 0%, #a87d1f 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 5rem;
	position: relative;
	overflow: hidden;
}

.creative-category__icon::after {
	content: '';
	position: absolute;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.creative-category__content {
	padding: 2rem;
}

.creative-category__title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 0.75rem;
}

.creative-category__count {
	color: #CE9826;
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.creative-category__desc {
	color: #666;
	line-height: 1.6;
	font-size: 0.95rem;
}

.creative-section {
	margin-bottom: 5rem;
}

.creative-section__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 3rem;
	flex-wrap: wrap;
	gap: 1rem;
}

.creative-section__title {
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 700;
	color: #1a1a1a;
	position: relative;
	padding-bottom: 1rem;
}

.creative-section__title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100px;
	height: 4px;
	background: linear-gradient(90deg, #CE9826, transparent);
}

.creative-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 2rem;
}

.creative-card {
	background: #F2F2F2;
	border-radius: 1rem;
	overflow: hidden;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.creative-card:hover {
	background: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transform: translateY(-5px);
}

.creative-card__image {
	width: 100%;
	height: 220px;
	object-fit: cover;
	background: linear-gradient(135deg, #e8e8e8, #d0d0d0);
}

.creative-card__body {
	padding: 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.creative-card__meta {
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}

.creative-card__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.35rem 0.75rem;
	background: rgba(206, 152, 38, 0.1);
	color: #CE9826;
	border-radius: 2rem;
	font-size: 0.85rem;
	font-weight: 600;
}

.creative-card__title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 0.75rem;
	line-height: 1.4;
}

.creative-card__excerpt {
	color: #666;
	line-height: 1.6;
	margin-bottom: 1.25rem;
	flex: 1;
}

.creative-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #CE9826;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.creative-card__link:hover {
	gap: 0.75rem;
}

.creative-card__link svg {
	transition: transform 0.3s ease;
}

.creative-card__link:hover svg {
	transform: translateX(3px);
}

/* Single Creative Life */

.creative-single {
	background: #fff;
	padding-top: 3rem;
	padding-bottom: 5rem;
}

.creative-single__header {
	margin-bottom: 3rem;
}

.creative-single__breadcrumbs {
	margin-bottom: 1.5rem;
}

.creative-single__breadcrumbs a {
	color: #CE9826;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.creative-single__breadcrumbs a:hover {
	opacity: 0.7;
}

.creative-single__breadcrumbs span {
	color: #999;
	margin: 0 0.5rem;
}

.creative-single__meta {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
}

.creative-single__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background: rgba(206, 152, 38, 0.1);
	color: #CE9826;
	border-radius: 2rem;
	font-size: 1rem;
	font-weight: 600;
}

.creative-single__title {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.3;
	margin-bottom: 2rem;
}

.creative-single__featured {
	margin-bottom: 3rem;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.creative-single__featured img {
	width: 100%;
	height: auto;
	display: block;
}

.creative-single__content {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #333;
	margin-bottom: 3rem;
}

.creative-single__content p {
	margin-bottom: 1.5rem;
}

.creative-single__gallery-title {
	font-size: 2rem;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 2rem;
	position: relative;
	padding-bottom: 1rem;
}

.creative-single__gallery-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, #CE9826, transparent);
}

.creative-single__gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 1.5rem;
	margin-bottom: 3rem;
}

.creative-single__gallery-item {
	aspect-ratio: 4/3;
	border-radius: 0.75rem;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.creative-single__gallery-item:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 25px rgba(206, 152, 38, 0.3);
}

.creative-single__gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.creative-single__nav {
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	padding-top: 3rem;
	border-top: 2px solid #f2f2f2;
	flex-wrap: wrap;
}

.creative-single__nav-link {
	flex: 1;
	min-width: 250px;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 1.5rem;
	background: #F2F2F2;
	border-radius: 0.75rem;
	text-decoration: none;
	transition: all 0.3s ease;
}

.creative-single__nav-link:hover {
	background: #fff;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
	transform: translateY(-3px);
}

.creative-single__nav-label {
	font-size: 0.85rem;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.creative-single__nav-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: #1a1a1a;
}

/* Pagination */
.pagination {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 3rem;
	flex-wrap: wrap;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 45px;
	height: 45px;
	padding: 0.5rem 1rem;
	background: #F2F2F2;
	color: #1a1a1a;
	text-decoration: none;
	border-radius: 0.5rem;
	font-weight: 600;
	transition: all 0.3s ease;
}

.pagination .page-numbers:hover {
	background: #CE9826;
	color: #fff;
	transform: translateY(-2px);
}

.pagination .page-numbers.current {
	background: #CE9826;
	color: #fff;
}

.pagination .page-numbers.dots {
	background: transparent;
	cursor: default;
}

.pagination .page-numbers.dots:hover {
	background: transparent;
	transform: none;
}

/* Responsive */
@media (max-width: 768px) {
	.creative-categories {
		grid-template-columns: 1fr;
	}
	
	.creative-grid {
		grid-template-columns: 1fr;
	}
	
	.creative-hero {
		padding: 2.5rem 0;
	}
	
	.creative-single__gallery {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
		gap: 1rem;
	}
}

