/* =====================
   GLOBAL
===================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Poppins", "Segoe UI", sans-serif;
}

body {
	background: #0e0e0e;
	color: #ffffff;
	line-height: 1.6;
}

img {
	width: 100%;
	display: block;
	border-radius: 14px;
}

a {
	text-decoration: none;
	color: inherit;
}

/* =====================
   HERO SECTION
===================== */
.hero {
	position: relative;
	height: 90vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	text-align: center;
}

.hero img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.45);
	z-index: -1;
}

.hero h1 {
	font-size: 96px;
	letter-spacing: 10px;
	font-weight: 600;
}

.btn-main {
	margin-top: 30px;
	padding: 14px 42px;
	background: #c9a44c;
	color: #000;
	font-weight: 600;
	border-radius: 50px;
	display: inline-block;
	transition: all 0.3s ease;
}

.btn-main:hover {
	background: #e0b95b;
	transform: translateY(-2px);
}

/* =====================
   CONTAINER
===================== */
.container {
	width: 90%;
	max-width: 1300px;
	margin: auto;
}

/* =====================
   SECTIONS
===================== */
.section {
	padding: 90px 0;
}

.section-title {
	font-size: 36px;
	text-align: center;
	margin-bottom: 60px;
	font-weight: 500;
}

/* =====================
   GRID & CARD
===================== */
.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 30px;
}

.card {
	position: relative;
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.4s ease;
}

.card:hover {
	transform: translateY(-6px);
}

.card img {
	height: 340px;
	object-fit: cover;
}

/* =====================
   CARD LABEL
===================== */
.label {
	position: absolute;
	bottom: 20px;
	left: 20px;
	background: rgba(0,0,0,0.65);
	padding: 10px 18px;
	border-radius: 30px;
	font-size: 14px;
	letter-spacing: 1px;
}

.label.yellow {
	background: #c9a44c;
	color: #000;
	font-weight: 600;
}

/* =====================
   SOCIAL PROOF
===================== */
.social-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.social-item {
	position: relative;
}

.social-item img {
	height: 320px;
	object-fit: cover;
}

.play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 52px;
	color: #fff;
	background: rgba(0,0,0,0.35);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.social-item:hover .play {
	opacity: 1;
}

/* =====================
   FOLLOW PATH
===================== */
.follow-path {
	position: relative;
	padding: 120px 0;
	text-align: center;
	overflow: hidden;
}

.path-svg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.path-btn {
	background: #c9a44c;
	color: #000;
	padding: 14px 36px;
	border-radius: 40px;
	border: none;
	font-weight: 600;
	cursor: pointer;
	position: relative;
	margin: 20px;
	transition: all 0.3s ease;
}

.path-btn:hover {
	transform: translateY(-3px);
	background: #e0b95b;
}

/* =====================
   TOP PRODUCTS
===================== */
.product-card img {
	height: 300px;
}

/* =====================
   CONTACT SECTION
===================== */
.contact-section {
	background: #111;
	padding: 90px 0;
}

.contact-inner {
	width: 90%;
	max-width: 1200px;
	margin: auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
}

.contact-item {
	display: flex;
	gap: 18px;
	margin-bottom: 24px;
}

.contact-item .icon {
	font-size: 22px;
}

/* =====================
   CONTACT FORM
===================== */
.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 14px 16px;
	margin-bottom: 18px;
	background: #1b1b1b;
	border: 1px solid #333;
	color: #fff;
	border-radius: 8px;
}

.contact-form textarea {
	resize: none;
	height: 120px;
}

.send {
	background: #c9a44c;
	border: none;
	padding: 14px 36px;
	border-radius: 40px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.send:hover {
	background: #e0b95b;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
	.hero h1 {
		font-size: 58px;
	}

	.contact-inner {
		grid-template-columns: 1fr;
	}
}

