:root {
	/* Define color variables for light and dark themes */
	--bg-color: white;
	--text-color: black;
	--title-color: rgb(238, 1, 1);
}

body.dark-mode {
	--bg-color: black;
	--text-color: white;
}

/* Navbar custom transparency */
.navbar {
	background-color: rgba(255, 255, 255, 0.6); /* Slightly transparent */
	backdrop-filter: blur(10px); /* Smooth effect on the background */
	position: fixed; /* Fixed at the top */
	width: 100%; /* Cover the full width */
	z-index: 1030; /* High z-index to stay on top */
	text-shadow: darkblue;
}


/* Ensure the hero image goes under the navbar */
.hero-section {
	
	display: flex; /* Enable flexbox */
	align-items: center; /* Center vertically */
	justify-content: center; /* Center horizontally */
	
	position: relative; /* Relative positioning */
	height: 100vh; /* Full viewport height */
	background-image: url('images/hero.jpeg'); /* Your image path */
	background-size: cover; /* Cover the entire div */
	background-position: center center; /* Center the background image */
}

/* Dimming the hero image */
.hero-section::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.7); /* Dimming effect */
	z-index: 1; /* Below the text */
}

/* Styling the main text */
.hero-text {
	position: relative; /* Relative positioning */
	z-index: 2; /* Above the dimming layer */
	color: white;
	font-size: 4rem; /* Large text size */
	padding-top: 100px; /* Adjust based on navbar height */
	text-align: center; /* Center the text */
}

.hero-title {
	flex-basis: 50%; /* Adjust the width as necessary */
	color: white;
	position: relative; /* Relative positioning */
	z-index: 2; /* Above the dimming layer */
	/* Add more styling as per your design */
}

.title {
	color: var(--title-color);
	font-size: 5em;
}

.product-image img {
	max-width: 100%; /* Adjust the width as necessary */
	height: auto; /* Maintain aspect ratio */
	position: relative; /* Relative positioning */
	z-index: 2; /* Above the dimming layer */
	/* Add more styling as per your design */
}

.nav-app-icon {
	height: 28px; /* or any other height */
	width: auto; /* maintain aspect ratio */
	padding-right: 10px;
	padding-bottom: 4px;
}

.app-store-badge {
	width: 100px; /* or whatever size you prefer */
	height: auto; /* maintains the aspect ratio */
}

.subtitle {
	font-size: 2rem; /* Large text size */
}

.main-video {
	height: 400px; /* Restrict the height to 300px or any other value */
	width: auto; /* Maintain the aspect ratio */
}

.bg-black {
	background-color: #000; /* black */
}

.text-white a { /* Ensuring all links are also white */
	color: #fff; /* white */
}

.content-wrap {
	flex: 1; /* Grow to absorb all space except what the footer takes */
}

.pt-10 {
	padding-top: 400px;
}

.nav-padding-top {
	padding-top: 56px;
}

.footer {
	min-height: 120px;
}

.footer a {
	color: #fff; /* white */
	
}

/*nice boxes */
.custom-box {
	padding: 20px;
	background-color: #f8f9fa; /* Light gray background */
	position: relative;
	text-align: center;
	margin-bottom: 30px; /* Space between the rows */
}

.custom-box:after {
	content: '';
	position: absolute;
	bottom: -20px; /* Adjust based on the size of the point */
	left: 50%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 20px 20px 0 20px; /* Adjust size of the point here */
	border-color: #f8f9fa transparent transparent transparent; /* Same as box bg */
	transform: translateX(-50%);
}

.icon {
	font-size: 3rem; /* Large icon size */
	margin-bottom: 10px; /* Space between icon and text */
}

h3 {
	margin-bottom: 10px; /* Space between header and paragraph */
}

@media (max-width: 575.98px) { /* targeting only the sizes below the 'sm' breakpoint */
  .product-image img {
	 display: none;
  }
}
/* Adjust text color for light and dark themes */
body {
	background-color: var(--bg-color);
	color: var(--text-color);
	font-family: 'Lato', sans-serif;
}
