* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Plus Jakarta Sans", sans-serif;
}

html {
	font-size: 10px;
}

header {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	padding: 3rem 0;
	z-index: 999;
}

.container {
	max-width: 140rem;
	margin: 0 auto;
	padding: 0 1.5rem;
	display: flex;
	flex-wrap: wrap;
}
.navbar {
	width: 100%;
	display: flex;
	justify-content: space-between;
	
}
.nav-logo {
	font-size: 15rem;
	font-weight: 800;
	text-decoration: none;
	color: #fff;
}

.navbar-collapse {
	display: flex;
	list-style: none;
}

.navbar-item {
	margin-left: 2.5rem;
}

.nav-link {
	text-decoration: none;
	font-size: 1.4rem;
	font-weight: 800;
	letter-spacing: 1px;
	color: #fff;
	transition: color 0.5s;
}

.nav-link:hover {
	color: rgba(255, 255, 255, 0.5);
}

/* Even spacing between nav items */
.nav-custom-gap .nav-item {
  margin-left: 20px;
}

/* Optional: Better spacing on mobile view */
@media (max-width: 576px) {
  .nav-custom-gap .nav-item {
    margin-left: 0;
    margin-bottom: 10px;
  }
}

.shopping-bag {
	display: inline-block;
	font-size: 1.8rem;
	color: #fff;
	cursor: pointer;
	transform: translateX(-2rem);
}
.shopping-bag i {
	display: inline-block;
	font-size: 1.8rem;
	color: #fff;
	cursor: pointer;
	transform: translateX(-2rem);
}

.bag-item-count {
	width: 2rem;
	height: 2rem;
	background-color: #7d1eff;
	color: #fff;
	font-family: sans-serif;
	font-size: 1.2rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: -1rem;
	right: -2rem;
}
.hero {
	width: 100%;
	height: 100vh;
	background-color: #2b2b2b;
	overflow: hidden;
	position: relative;
	display: flex;
	align-items: center;
}
.circle {
	position: absolute;
}
.circle-small {
	top: -15rem;
	left: -21rem;
}

.circle-large {
	bottom: -80rem;
	right: -60rem;
}
.content {
	width: 100%;
	display: flex;
	align-items: center;
	position: relative;
	z-index: 10;
}
.text {
	color: #fff;
	flex: 1;
	text-transform: uppercase;
}

.text h1 {
	font-size: calc(1rem + 4vw);
	font-weight: 800;
	line-height: 1.2;
}

.text h1 span {
	color: #994fff;
}

.text h5 {
	font-size: 1.9rem;
	font-weight: 800;
	margin: 8rem 0 4rem 0;
}

.text p {
	text-transform: none !important;
	font-size: 1.6rem;
	line-height: 1.5;
	margin-bottom: 2rem;
}

.cta {
	display: inline-block;
	font-size: 1.4rem;
	text-decoration: none;
	color: #fff;
	font-weight: 800;
	padding: 1.5rem 3rem;
	background-color: #7d1eff;
	transition: background-color 0.5s;
}

.cta:hover {
	background-color: #994fff;
}

.watch-wrapper {
	flex: 0 0 45%;
}

.overlay {
	width: 100%;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9999;
	display: flex;
}

.layer {
	background-color: #b2aabf;
}

.layer-1 {
	flex: 1;
}

.layer-2 {
	flex: 1;
}

.layer-3 {
	flex: 1;
}

/* image */
.img-front{
	height: 55rem;
	border-radius: 2rem;
	margin-left: 20rem;
	margin-top: 2rem;
}


/* === Responsive Styles === */
@media (max-width: 768px) {
  html {
    font-size: 9px;
  }

  .container {
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
  }

  .content {
    flex-direction: column;
    text-align: center;
  }

  .text h1 {
    font-size: 3rem;
  }

  .text p {
    font-size: 1.4rem;
    padding: 0 1rem;
  }

  .cta {
    font-size: 1.2rem;
    padding: 1rem 2rem;
  }

  .img-front {
    height: 35rem;
    margin: 2rem auto 0 auto;
    display: block;
  }

  .watch-wrapper {
    flex: none;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .circle-small,
  .circle-large {
    display: none;
  }

  .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-item {
    margin: 0.5rem 0;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 8px;
  }

  .text h1 {
    font-size: 2.6rem;
  }

  .img-front {
    height: 28rem;
  }

  .cta {
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
  }
}





