@charset "utf-8";
/* ============================================
   NIZZA HOME - Bulma Theme
   KaCMS Frontend - Premium Kitchenware Design
   ============================================ */

/* --- CSS VARIABLES --- */
:root {
	--bg-white: #FFFFFF;
	--bg-alt: #F8F8FA;
	--text-dark: #121212;
	--text-light: #555555;
	--accent-main: #000000;
	--section-padding-y: 5rem;
	--container-width: 1400px;
	--radius-std: 4px;
}

/* --- BASE STYLES --- */
body {
	font-family: 'Jost', sans-serif;
	color: var(--text-dark);
	background-color: var(--bg-alt);
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	letter-spacing: -0.02em;
}

a {
	text-decoration: none;
	color: inherit;
}

/* --- NAVBAR (Fixed & White) --- */
.custom-navbar-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background-color: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	padding: 1rem 0;
	transition: all 0.3s ease;
}

.custom-navbar-container {
	width: 95%;
	max-width: var(--container-width);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-brand-logo {
	font-weight: 800;
	font-size: 1.5rem;
	color: var(--accent-main);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.nav-center-menu {
	display: flex;
	gap: 2.5rem;
}

.nav-item {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text-dark);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	cursor: pointer;
	text-decoration: none;
	position: relative;
}

.nav-item::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -4px;
	left: 0;
	background-color: var(--accent-main);
	transition: width 0.3s;
}

.nav-item:hover::after {
	width: 100%;
}

/* Nav Actions Container */
.nav-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: nowrap;
	flex-shrink: 0;
}

/* Search Icon */
.search-icon {
	cursor: pointer;
	font-size: 1rem;
	color: var(--text-dark);
	transition: opacity 0.3s;
}

.search-icon:hover {
	opacity: 0.6;
}

/* Mobile Menu Toggle */
.nav-mobile-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--text-dark);
}

@media only screen and (max-width: 768px) {
	.nav-center-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: white;
		flex-direction: column;
		padding: 1rem;
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	}

	.nav-center-menu.is-active {
		display: flex;
	}

	.nav-mobile-toggle {
		display: block;
	}

	.nav-item {
		padding: 0.75rem 0;
	}
}

/* --- SECTION STRUCTURE --- */
.section-wrapper {
	width: 100%;
	padding: var(--section-padding-y) 0;
	position: relative;
}

.section-bg-white {
	background-color: var(--bg-white);
}

.section-bg-alt {
	background-color: var(--bg-alt);
	box-shadow: inset 0 10px 20px -10px rgba(0, 0, 0, 0.02);
}

.container-fluid {
	width: 95%;
	max-width: var(--container-width);
	margin: 0 auto;
}

/* --- HERO SECTION --- */
.hero-wrapper {
	background-color: var(--bg-alt);
	padding-bottom: 4rem;
	padding-top: 140px;
	/* Space for fixed navbar */
}

.hero-box {
	position: relative;
	border-radius: var(--radius-std);
	overflow: hidden;
	height: 520px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 1.5s ease;
}

.hero-box:hover .hero-image {
	transform: scale(1.05);
}

.hero-content {
	position: absolute;
	bottom: 3rem;
	left: 3rem;
	background-color: #FFFFFF;
	padding: 2.5rem;
	max-width: 450px;
	border-radius: var(--radius-std);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	border-left: 4px solid var(--accent-main);
}

.hero-content h1 {
	font-size: 2.5rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
	line-height: 1.1;
}

.hero-content p {
	color: #666;
	margin: 0;
}

@media only screen and (max-width: 768px) {
	.hero-wrapper {
		padding-top: 100px;
	}

	.hero-box {
		height: 400px;
	}

	.hero-content {
		left: 1rem;
		right: 1rem;
		bottom: 1rem;
		padding: 1.5rem;
		max-width: none;
	}

	.hero-content h1 {
		font-size: 1.8rem;
	}
}

/* --- SECTION HEADERS --- */
.section-header {
	margin-bottom: 3rem;
}

.section-eyebrow {
	display: block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #999;
	margin-bottom: 0.5rem;
}

.section-title {
	font-size: 2.2rem;
	font-weight: 500;
	color: var(--text-dark);
	margin: 0;
	line-height: 1.2;
}

.header-line {
	width: 60px;
	height: 3px;
	border-radius: var(--radius-std);
	background-color: #f4f4f4;
	margin-top: 1rem;
}

/* --- CATEGORY CARDS --- */
.category-card {
	display: block;
	text-decoration: none;
	color: inherit;
	margin-bottom: 1.5rem;
}

.cat-img-wrap {
	height: 200px;
	overflow: hidden;
	border-radius: var(--radius-std);
	background-color: #f5f5f5;
}

.cat-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.category-card:hover .cat-img-wrap img {
	transform: scale(1.1);
}

.cat-meta {
	padding: 1rem 0;
}

.cat-title {
	font-size: 1.1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 0.2rem;
}

.cat-subtitle {
	font-size: 0.9rem;
	color: var(--text-light);
	font-style: italic;
}

/* --- PRODUCT CARDS --- */
.product-card {
	background-color: #FFFFFF;
	border-radius: var(--radius-std);
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s, box-shadow 0.3s;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.prod-img-wrap {
	height: 280px;
	padding: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #FFFFFF;
	border-bottom: 1px solid #f9f9f9;
}

.prod-img-wrap img {
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
	transition: transform 0.3s;
}

.product-card:hover .prod-img-wrap img {
	transform: scale(1.05);
}

.prod-info {
	padding: 1.5rem;
	text-align: center;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.prod-tag {
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 1.5px;
	color: #aaa;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}

.prod-name {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 1rem;
}

.btn-link-styled {
	margin-top: auto;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--accent-main);
	border-bottom: 2px solid transparent;
	padding-bottom: 2px;
	transition: border-color 0.3s;
}

.product-card:hover .btn-link-styled {
	border-bottom-color: var(--accent-main);
}

/* --- NEWSLETTER --- */
.newsletter-inner {
	background-color: var(--accent-main);
	color: white;
	border-radius: var(--radius-std);
	padding: 3rem 2rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.newsletter-inner h2 {
	font-size: 1.8rem;
	font-weight: 300;
	margin-bottom: 0.5rem;
}

.newsletter-inner p {
	color: #ccc;
	margin-bottom: 2rem;
	font-weight: 300;
}

.form-row {
	display: flex;
	width: 100%;
	max-width: 450px;
}

.input-dark {
	flex-grow: 1;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: white;
	padding: 0 1.5rem;
	height: 48px;
	font-family: inherit;
	outline: none;
}

.input-dark::placeholder {
	color: #888;
}

.btn-dark {
	background: white;
	color: black;
	border: none;
	padding: 0 2rem;
	height: 48px;
	font-weight: 600;
	letter-spacing: 1px;
	cursor: pointer;
	transition: background 0.3s;
}

.btn-dark:hover {
	background: #e0e0e0;
}

@media only screen and (max-width: 768px) {
	.form-row {
		flex-direction: column;
	}

	.input-dark,
	.btn-dark {
		width: 100%;
	}

	.btn-dark {
		margin-top: 0.5rem;
	}
}

/* --- FOOTER (BLACK) --- */
.main-footer {
	background-color: #000000;
	color: #888;
	padding: 5rem 0;
}

.footer-brand {
	color: white;
	font-weight: 800;
	margin-bottom: 1.5rem;
	letter-spacing: -1px;
	font-size: 1.5rem;
}

.footer-brand-desc {
	line-height: 1.6;
	max-width: 300px;
}

.footer-col h5 {
	color: white;
	font-size: 0.8rem;
	letter-spacing: 1.5px;
	font-weight: 700;
	margin-bottom: 1.5rem;
	text-transform: uppercase;
}

.footer-link {
	display: block;
	color: #888;
	text-decoration: none;
	margin-bottom: 0.8rem;
	font-size: 0.9rem;
	transition: color 0.2s, transform 0.2s;
}

.footer-link:hover {
	color: white;
	transform: translateX(5px);
}

.footer-social {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.footer-social a {
	color: white;
	font-size: 1.2rem;
	transition: opacity 0.3s;
}

.footer-social a:hover {
	opacity: 0.7;
}

.footer-copyright {
	font-size: 0.8rem;
	color: #666;
}

/* --- CONTENT PAGES --- */
.page-wrapper {
	padding-top: 120px;
	min-height: 60vh;
}

.page-header {
	background-color: var(--bg-alt);
	padding: 3rem 0;
	margin-bottom: 3rem;
}

.page-title {
	font-size: 2.5rem;
	font-weight: 600;
	color: var(--text-dark);
	margin: 0;
}

.page-content {
	padding: 2rem 0 4rem;
}

.content-box {
	background: white;
	padding: 2rem;
	border-radius: var(--radius-std);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

/* --- CONTACT FORM --- */
.contact-form .field {
	margin-bottom: 1.5rem;
}

.contact-form .label {
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 0.5rem;
}

.contact-form .input,
.contact-form .textarea,
.contact-form .select select {
	border: 1px solid #ddd;
	border-radius: var(--radius-std);
	font-family: 'Jost', sans-serif;
	transition: border-color 0.3s;
}

.contact-form .input:focus,
.contact-form .textarea:focus,
.contact-form .select select:focus {
	border-color: var(--accent-main);
	box-shadow: none;
}

.contact-form .button.is-primary {
	background-color: var(--accent-main);
	font-weight: 600;
	letter-spacing: 1px;
}

.contact-form .button.is-primary:hover {
	background-color: #333;
}

/* --- UTILITIES --- */
.Centering {
	width: 95%;
	max-width: var(--container-width);
	margin: 0 auto;
}

#Main {
	width: 100%;
	min-height: 50vh;
}

/* Hide the old slider styles, replace with hero */
#Main_Slider {
	display: none;
}

/* Responsive adjustments */
@media only screen and (max-width: 1024px) {
	.section-title {
		font-size: 1.8rem;
	}
}

@media only screen and (max-width: 768px) {
	:root {
		--section-padding-y: 3rem;
	}

	.page-wrapper {
		padding-top: 80px;
	}
}
