/* ===== Carousel Base Styles ===== */
.carousel {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 100vh;
	overflow: hidden;
}

.carousel-track {
	display: flex;
	transition: transform 0.6s ease;
	width: 100%;
	height: 100%;
}

.carousel-item {
	min-width: 100%;
	height: 100vh;
	background-size: cover;
	background-position: center;
/* 	display: block !important; */
}

/* Controls */
.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0,0,0,0.5);
	color: white;
	border: none;
	font-size: 2rem;
	padding: 0.5rem 1rem;
	cursor: pointer;
	z-index: 10;
	border-radius: 50%;
}
.carousel-btn.prev { left: 20px; }
.carousel-btn.next { right: 20px; }

/* Indicators */
.carousel-indicators {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
}
.carousel-indicators button {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	border: none;
	background: rgba(255,255,255,0.5);
	cursor: pointer;
	font-size: 0.8rem;
	color: #333;
	display: flex;
	align-items: center;
	justify-content: center;
}
.carousel-indicators button.active {
	background: white;
	color: black;
	font-weight: bold;
}

.hero-logo {
	width: 60px;
	height: auto;
}

.hero-content {
	padding: 100px 50px;
	background: #1c1c1c8f;
}

.hero-content h1 {
	color: var(--sw-bg);
}

.hero-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between; /* header at top, body at bottom */
	width: 100%;
	min-height: 100%;
	color: #fff; /* example */
/* 	text-align: center; */
}

.hero-header {
	align-self: center;
}

.hero-body {
	align-self: center;
}

    .hero-content {
      position: relative;
      height: 100vh;
      display: flex; 
      flex-direction: column; 
      justify-content: center; 
      align-items: center;
      text-align: center;
      background: url('../../assets/img/viba-afrika-banner-002.jpg') center/cover no-repeat;
      color: #fff;
      background-position: top;
    }
    .hero-content::after {
      content:"";
      position:absolute; inset:0;
      background: rgba(0,0,0,0.55); /* overlay tint, replace per collection */
    }
    .hero-content > * {position: relative; z-index: 1;}
    .hero-content h1 {font-size:3rem; margin-bottom:1rem;}
    .hero-content p {font-size:1.25rem; margin-bottom:1.5rem;}


/* DARK GRADIENT OVERLAY */

.carousel-item {
	position: relative;
	min-height: 100vh;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: stretch;
	overflow: hidden; /* contain overlay */
}

.carousel-item::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.6) 0%,
		rgba(0, 0, 0, 0.2) 40%,
		rgba(0, 0, 0, 0.6) 100%
	);
	z-index: 1;
}
