/* ========================================
   HOMEPAGE STYLES - JAPANESE KNIFE SETS
   Magazine-style layout with sophisticated design
   ======================================== */

/* ========================================
   COLOUR PALETTE
   ======================================== */
:root {
	--forest-green: #2B5442;
	--burgundy: #8B2635;
	--warm-cream: #FAF8F5;
	--pure-white: #FFFFFF;
	--gold: #B8956A;
	--charcoal: #2C2C2C;
	--soft-gray: #6B6B6B;
	--light-gray: #E5E5E5;
}

/* ========================================
   HERO SECTION
   ======================================== */
.heroSection {
	position: relative;
	width: 100%;
	height: 600px;
	background-image: url('/images/hero-japanese-knives.jpg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0;
}

.heroOverlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(43, 84, 66, 0.85) 0%, rgba(43, 84, 66, 0.65) 100%);
	z-index: 1;
}

.heroContent {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 900px;
	padding: 40px 20px;
	color: var(--pure-white);
}

.heroTitle {
	font-family: 'Playfair Display', serif;
	font-size: 56px;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 24px;
	color: var(--pure-white);
	text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.heroSubtitle {
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	font-weight: 300;
	line-height: 1.6;
	margin-bottom: 32px;
	color: var(--pure-white);
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.heroButton {
	display: inline-block;
	background-color: var(--gold);
	color: var(--charcoal);
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 16px 40px;
	border-radius: 4px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.heroButton:hover {
	background-color: #C9A66B;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* ========================================
   USP SECTION
   ======================================== */
.uspSection {
	background-color: var(--pure-white);
	padding: 60px 20px;
	border-bottom: 1px solid var(--light-gray);
}

.uspContainer {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}

.uspItem {
	text-align: center;
}

.uspIcon {
	font-size: 42px;
	color: var(--forest-green);
	margin-bottom: 16px;
}

.uspTitle {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: var(--charcoal);
	margin-bottom: 12px;
}

.uspText {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 300;
	color: var(--soft-gray);
	line-height: 1.6;
}

/* ========================================
   SECTION HEADERS (Reusable)
   ======================================== */
.sectionHeader {
	text-align: center;
	margin-bottom: 48px;
}

.sectionTitle {
	font-family: 'Playfair Display', serif;
	font-size: 42px;
	font-weight: 600;
	color: var(--charcoal);
	margin-bottom: 12px;
}

.sectionSubtitle {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 300;
	color: var(--soft-gray);
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.6;
}

.sectionFooter {
	text-align: center;
	margin-top: 40px;
}

/* ========================================
   FEATURED COLLECTIONS SECTION
   ======================================== */
.featuredCollectionsSection {
	background-color: var(--warm-cream);
	padding: 80px 20px;
}

.collectionsGrid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 280px);
	gap: 20px;
}

.collectionCard {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	transition: all 0.4s ease;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	text-decoration: none;
}

.collectionCard.featured {
	grid-column: 1 / 3;
	grid-row: 1 / 3;
}

.collectionCardImage {
	width: 100%;
	height: 100%;
	background-color: var(--warm-cream);
	position: relative;
	overflow: hidden;
}

.collectionCardImage img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 0;
	left: 0;
}

.collectionCardOverlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(43, 84, 66, 0.2) 0%, rgba(43, 84, 66, 0.8) 100%);
	transition: all 0.4s ease;
}

.collectionCard:hover .collectionCardOverlay {
	background: linear-gradient(to bottom, rgba(43, 84, 66, 0.4) 0%, rgba(43, 84, 66, 0.9) 100%);
}

.collectionCardContent {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 32px;
	z-index: 2;
}

.collectionCardTitle {
	font-family: 'Playfair Display', serif;
	font-size: 28px;
	font-weight: 600;
	color: var(--pure-white);
	margin-bottom: 12px;
	line-height: 1.3;
}

.collectionCard.featured .collectionCardTitle {
	font-size: 36px;
}

.collectionCardCTA {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: var(--gold);
	text-transform: uppercase;
	letter-spacing: 1px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
}

.collectionCard:hover .collectionCardCTA {
	gap: 12px;
	color: #C9A66B;
}

.viewAllButton {
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: var(--forest-green);
	text-decoration: none;
	padding: 14px 32px;
	border: 2px solid var(--forest-green);
	border-radius: 4px;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.viewAllButton:hover {
	background-color: var(--forest-green);
	color: var(--pure-white);
	transform: translateY(-2px);
}

/* ========================================
   LATEST PRODUCTS SECTION
   ======================================== */
.latestProductsSection {
	background-color: var(--pure-white);
	padding: 80px 20px;
}

.productsGrid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.productCard {
	background-color: var(--pure-white);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
	position: relative;
}

.productCard:hover {
	box-shadow: 0 8px 24px rgba(0,0,0,0.15);
	transform: translateY(-4px);
}

.productCardLink {
	text-decoration: none;
	display: block;
}

.productBadge {
	position: absolute;
	top: 16px;
	right: 16px;
	background-color: var(--burgundy);
	color: var(--pure-white);
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 24px;
	z-index: 2;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.productCardImage {
	width: 100%;
	height: 280px;
	background-color: var(--warm-cream);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.productCardImage img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.4s ease;
	padding: 20px;
}

.productCard:hover .productCardImage img {
	transform: scale(1.05);
}

.productCardContent {
	padding: 24px;
}

.productBrand {
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: var(--soft-gray);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 8px;
}

.productCardTitle {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 500;
	color: var(--charcoal);
	margin-bottom: 12px;
	line-height: 1.4;
	min-height: 50px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.productRating {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
}

.ratingScore {
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	font-weight: 600;
	color: var(--forest-green);
}

.ratingLabel {
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: var(--soft-gray);
}

.productPrice {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.priceWas {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: var(--soft-gray);
	text-decoration: line-through;
}

.priceNow {
	font-family: 'Montserrat', sans-serif;
	font-size: 24px;
	font-weight: 600;
	color: var(--forest-green);
}

.productCTA {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: var(--forest-green);
	text-transform: uppercase;
	letter-spacing: 1px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
}

.productCard:hover .productCTA {
	gap: 12px;
	color: var(--gold);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.aboutSection {
	background-color: var(--warm-cream);
	padding: 80px 20px;
}

.aboutContainer {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.aboutImage img {
	width: 100%;
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.aboutContent {
	padding: 20px;
}

.aboutTitle {
	font-family: 'Playfair Display', serif;
	font-size: 36px;
	font-weight: 600;
	color: var(--charcoal);
	margin-bottom: 24px;
	line-height: 1.3;
}

.aboutContent p {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 300;
	color: var(--soft-gray);
	line-height: 1.8;
	margin-bottom: 20px;
}

.aboutButton {
	display: inline-block;
	background-color: var(--forest-green);
	color: var(--pure-white);
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 14px 32px;
	border-radius: 4px;
	text-decoration: none;
	transition: all 0.3s ease;
	margin-top: 12px;
}

.aboutButton:hover {
	background-color: #1F3D30;
	transform: translateY(-2px);
}

/* ========================================
   ALL COLLECTIONS SECTION
   ======================================== */
.allCollectionsSection {
	background-color: var(--pure-white);
	padding: 80px 20px;
}

.allCollectionsGrid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.collectionPill {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 24px;
	background-color: var(--warm-cream);
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.collectionPill:hover {
	background-color: var(--forest-green);
	border-color: var(--forest-green);
	transform: translateX(4px);
}

.collectionPillTitle {
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: var(--charcoal);
	transition: color 0.3s ease;
}

.collectionPill:hover .collectionPillTitle {
	color: var(--pure-white);
}

.collectionPill i {
	color: var(--soft-gray);
	font-size: 14px;
	transition: color 0.3s ease;
}

.collectionPill:hover i {
	color: var(--pure-white);
}

/* ========================================
   WHY CHOOSE SECTION
   ======================================== */
.whyChooseSection {
	background-color: var(--warm-cream);
	padding: 80px 20px;
}

.whyChooseContainer {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
}

.whyChooseTitle {
	font-family: 'Playfair Display', serif;
	font-size: 36px;
	font-weight: 600;
	color: var(--charcoal);
	margin-bottom: 20px;
}

.whyChooseIntro {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: var(--soft-gray);
	line-height: 1.8;
	margin-bottom: 32px;
}

.whyChooseList {
	list-style: none;
	padding: 0;
	margin: 0;
}

.whyChooseList li {
	display: flex;
	gap: 16px;
	margin-bottom: 24px;
	align-items: flex-start;
}

.whyChooseIcon {
	font-size: 28px;
	flex-shrink: 0;
}

.whyChooseText {
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 300;
	color: var(--soft-gray);
	line-height: 1.7;
}

.whyChooseText strong {
	color: var(--charcoal);
	font-weight: 600;
	display: block;
	margin-bottom: 4px;
}

.highlightBox {
	background-color: var(--pure-white);
	padding: 40px;
	border-radius: 8px;
	box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.highlightTitle {
	font-family: 'Playfair Display', serif;
	font-size: 24px;
	font-weight: 600;
	color: var(--charcoal);
	margin-bottom: 24px;
}

.highlightList {
	list-style: none;
	padding: 0;
	margin: 0;
}

.highlightList li {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 300;
	color: var(--soft-gray);
	line-height: 1.8;
	margin-bottom: 16px;
	padding-left: 24px;
	position: relative;
}

.highlightList li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--gold);
	font-size: 20px;
	line-height: 1.2;
}

.highlightList li strong {
	color: var(--charcoal);
	font-weight: 600;
}

/* ========================================
   NEWSLETTER SECTION
   ======================================== */
.newsletterSection {
	background: linear-gradient(135deg, var(--forest-green) 0%, #1F3D30 100%);
	padding: 60px 20px;
}

.newsletterContainer {
	max-width: 900px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.newsletterTitle {
	font-family: 'Playfair Display', serif;
	font-size: 36px;
	font-weight: 600;
	color: var(--pure-white);
	margin-bottom: 12px;
}

.newsletterText {
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 300;
	color: rgba(255,255,255,0.9);
	line-height: 1.7;
}

.newsletterForm {
	display: flex;
	gap: 12px;
}

.newsletterInput {
	flex: 1;
	padding: 16px 20px;
	border: none;
	border-radius: 4px;
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	color: var(--charcoal);
}

.newsletterButton {
	padding: 16px 32px;
	background-color: var(--gold);
	color: var(--charcoal);
	border: none;
	border-radius: 4px;
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.newsletterButton:hover {
	background-color: #C9A66B;
	transform: translateY(-2px);
}

/* ========================================
   CTA SECTION
   ======================================== */
.ctaSection {
	background-color: var(--pure-white);
	padding: 80px 20px;
	text-align: center;
}

.ctaContainer {
	max-width: 800px;
	margin: 0 auto;
}

.ctaTitle {
	font-family: 'Playfair Display', serif;
	font-size: 42px;
	font-weight: 600;
	color: var(--charcoal);
	margin-bottom: 20px;
}

.ctaText {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 300;
	color: var(--soft-gray);
	line-height: 1.8;
	margin-bottom: 32px;
}

.ctaButton {
	display: inline-block;
	background-color: var(--forest-green);
	color: var(--pure-white);
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 18px 48px;
	border-radius: 4px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(43, 84, 66, 0.3);
}

.ctaButton:hover {
	background-color: #1F3D30;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(43, 84, 66, 0.4);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet (768px - 1024px) */
@media only screen and (max-width: 1024px) {
	.heroTitle {
		font-size: 42px;
	}

	.heroSubtitle {
		font-size: 18px;
	}

	.uspContainer {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}

	.collectionsGrid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: auto;
	}

	.collectionCard.featured {
		grid-column: 1 / 3;
		grid-row: auto;
	}

	.productsGrid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	.aboutContainer {
		gap: 40px;
	}

	.allCollectionsGrid {
		grid-template-columns: repeat(3, 1fr);
	}

	.whyChooseContainer {
		gap: 40px;
	}
}

/* Mobile (< 768px) */
@media only screen and (max-width: 768px) {
	.heroSection {
		height: 500px;
	}

	.heroTitle {
		font-size: 32px;
	}

	.heroSubtitle {
		font-size: 16px;
	}

	.heroButton {
		padding: 14px 32px;
		font-size: 14px;
	}

	.uspSection {
		padding: 40px 20px;
	}

	.uspContainer {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.featuredCollectionsSection,
	.latestProductsSection,
	.aboutSection,
	.allCollectionsSection,
	.whyChooseSection,
	.ctaSection {
		padding: 60px 20px;
	}

	.sectionTitle {
		font-size: 32px;
	}

	.sectionSubtitle {
		font-size: 14px;
	}

	.collectionsGrid {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		gap: 16px;
	}

	.collectionCard.featured {
		grid-column: 1;
		grid-row: auto;
	}

	.collectionCard,
	.collectionCard.featured {
		min-height: 240px;
	}

	.collectionCardTitle {
		font-size: 24px;
	}

	.collectionCard.featured .collectionCardTitle {
		font-size: 28px;
	}

	.productsGrid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.productCardImage {
		height: 240px;
	}

	.aboutContainer {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.aboutImage {
		order: -1;
	}

	.aboutTitle {
		font-size: 28px;
	}

	.aboutContent p {
		font-size: 15px;
	}

	.allCollectionsGrid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.whyChooseContainer {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.whyChooseTitle {
		font-size: 28px;
	}

	.highlightBox {
		padding: 28px;
	}

	.highlightTitle {
		font-size: 20px;
	}

	.newsletterSection {
		padding: 40px 20px;
	}

	.newsletterContainer {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.newsletterTitle {
		font-size: 28px;
	}

	.newsletterForm {
		flex-direction: column;
		gap: 12px;
	}

	.newsletterButton {
		width: 100%;
	}

	.ctaTitle {
		font-size: 32px;
	}

	.ctaText {
		font-size: 15px;
	}

	.ctaButton {
		padding: 16px 40px;
		font-size: 14px;
	}
}

/* Small Mobile (< 480px) */
@media only screen and (max-width: 480px) {
	.heroSection {
		height: 400px;
	}

	.heroTitle {
		font-size: 26px;
	}

	.heroSubtitle {
		font-size: 14px;
	}

	.sectionTitle {
		font-size: 26px;
	}

	.uspIcon {
		font-size: 32px;
	}

	.uspTitle {
		font-size: 16px;
	}

	.uspText {
		font-size: 13px;
	}

	.collectionCardContent {
		padding: 24px;
	}

	.productCardTitle {
		font-size: 16px;
		min-height: auto;
	}

	.priceNow {
		font-size: 20px;
	}
}
