body, html {
	margin: 0;
	padding: 0;
	font-family: 'Roboto', sans-serif;
	color: #333;
}

.container {
	width: 80%;
	margin: auto;
	max-width: 1200px;
}

header {
	background: #FFC0CB;
	padding: 20px 0;
}

header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .logo {
	font-family: 'Playfair Display', serif;
	font-size: 28px;
	color: #000;
}

header nav ul {
	list-style: none;
	padding: 0;
}

header nav ul li {
	display: inline;
	margin: 0 15px;
}

header nav ul li a {
	text-decoration: none;
	color: #000;
	font-weight: bold;
	font-size: 16px;
}

.hero {
	background: url('images/hero-bg.webp') no-repeat center center/cover;
	height: 500px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-text h1 {
	font-family: 'Playfair Display', serif;
	font-size: 50px;
	color: #fff;
}

.hero-text p {
	font-size: 20px;
	color: #fff;
}

.hero-text .btn {
	background: #FFD700;
	color: #000;
	padding: 10px 20px;
	text-decoration: none;
	font-weight: bold;
	margin-top: 20px;
}

.about {
	padding: 50px 0;
	text-align: center;
}

.categories {
	background: #f9f9f9;
	padding: 50px 0;
}

.categories h2 {
	margin-bottom: 30px;
}

.category-grid {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.category-item {
	width: 22%;
}

.category-item img {
	width: 100%;
	border-radius: 10px;
}

.contact {
	padding: 50px 0;
	text-align: center;
}

.contact form {
	width: 50%;
	margin: auto;
}

.contact input, .contact textarea {
	width: 100%;
	padding: 15px;
	margin: 10px 0;
	border: 1px solid #ddd;
	border-radius: 5px;
}

.contact button {
	padding: 15px 30px;
	background: #FFC0CB;
	border: none;
	cursor: pointer;
	font-size: 16px;
}

footer {
	background: #333;
	color: #fff;
	text-align: center;
	padding: 20px;
}

.blog {
	padding: 50px 0;
	background-color: #f9f9f9;
}

.blog h2 {
	text-align: center;
	margin-bottom: 30px;
	font-size: 36px;
}

.blog-grid {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.blog-item {
	width: 30%;
	margin-bottom: 20px;
}

.blog-item img {
	width: 100%;
	border-radius: 10px;
}

.blog-item h3 {
	margin: 15px 0 5px;
	font-size: 22px;
}

.blog-item p {
	font-size: 16px;
	color: #666;
}
.blog-hero {
	background: url('images/category-hero.webp') no-repeat center center/cover;
	padding: 100px 20px;
	text-align: center;
	color: #fff;
}

.blog-hero h1 {
	font-family: 'Playfair Display', serif;
	font-size: 48px;
	margin-bottom: 10px;
}

.blog-hero p {
	font-size: 20px;
}

.blog-content {
	padding: 50px 0;
}

.blog-content .container {
	width: 70%;
	margin: auto;
	line-height: 1.8;
	font-size: 18px;
}

.blog-content h2 {
	font-family: 'Playfair Display', serif;
	font-size: 32px;
	margin: 30px 0 20px;
	color: #333;
}

.blog-content p {
	margin-bottom: 15px;
	color: #555;
}

article {
	text-align: justify;
}

.category-hero {
	background: url('images/category-hero.webp') no-repeat center center/cover;
	padding: 100px 20px;
	text-align: center;
	color: #fff;
}

.category-hero h1 {
	font-family: 'Playfair Display', serif;
	font-size: 48px;
	margin-bottom: 0;
}

.category-description {
	padding: 50px 0;
}

.category-description .container {
	width: 70%;
	margin: auto;
	text-align: justify;
	line-height: 1.8;
	font-size: 18px;
}

.category-description p {
	margin-bottom: 20px;
	color: #555;
}

.article-list {
	background: #f9f9f9;
	padding: 50px 0;
}

.article-list .container {
	width: 80%;
	margin: auto;
}

.article-list h2 {
	text-align: center;
	margin-bottom: 30px;
	font-size: 36px;
}

.article-grid {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.article-item {
	width: 30%;
	margin-bottom: 20px;
}

.article-item img {
	width: 100%;
	border-radius: 10px;
}

.article-item h3 {
	font-size: 22px;
	margin: 15px 0 5px;
}

.article-item p {
	font-size: 16px;
	color: #666;
}
.article-item a {
	text-decoration: none; 
	color: #000;
	display: block;
	transition: color 0.3s ease; 
}

.article-item a:hover {
	color: #FFC0CB;
}

.article-item h3 {
	margin: 15px 0 5px;
	font-size: 22px;
	color: #333;
	transition: color 0.3s ease;
}

.article-item a:hover h3 {
	color: #ff69b4;
}