/* Reset & Base */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
}

body {
    background-color: #0e0e0e;
    color: white;
    font-family: 'Helvetica Neue', sans-serif;
    line-height: 1.6;
}

/* Navbar */
.navbar {
	padding: 20px 40px;
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 1000;
	background: rgba(14, 14, 14, 0.95);
	backdrop-filter: blur(6px);
}

.navdiv {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.navdiv .logo a {
	color: #fa1e4e;
	font-size: 1.5rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

li {
	list-style: none;
	display: inline-block;
}

li a {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	margin-right: 20px;
	text-transform: uppercase;
}

.navbar a:hover {
	color: #ffa923;
	transition-duration: 0.8s;
}

.container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 40px 20px 0 20px;
}

.container .heading h3{
  font-size: 3em;
  font-weight: bolder;
}

.container .box{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.container .box .dream{
  display: flex;
  flex-direction: column;
  width: 32.5%;

}

.container .box .dream img{
  width: 100%;
  padding-bottom: 15px;
  border-radius: 5px;
}



.text{
	color: #fff;
	font-size: 16px;
	font-weight: 300;
	letter-spacing: 1px;
}

/* Buttons */
.btn.small {
	padding: 8px 16px;
	border-radius: 25px;
	background: #fa1e4e;
	color: white;
	font-size: 0.9rem;
	font-weight: bold;
	text-decoration: none;
	transition: background 0.3s ease, transform 0.2s ease;
}

.btn.small:hover {
	background: linear-gradient(to right, #fa1e4e, #ff8040);
	transform: scale(1.05);
}

/* Footer */
.footer {
	background: #0e0e0e;
	padding: 30px 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	border-top: 1px solid #222;
}

.footer p {
	color: #aaa;
	font-size: 0.9rem;
	margin-right: 1080px;
}

.footer img{
	max-width: 30px;
	max-height: 30px;
}

.footer ul {
	gap: 20px;
}

.footer i {
    color: white;
    font-size: 24px;
	transition: color 0.3s ease;
}

.footer i:hover {
    color: #fa1e4e;
}

/* Responsive */
@media (max-width: 768px) {
	#nav-links {
		display: none;
		flex-direction: column;
		width: 100%;
		background-color: rgba(14, 14, 14, 0.95);
		position: absolute;
		top: 70px;
		left: 0;
		text-align: center;
		padding: 10px 0;
		z-index: 999;
	}

	#nav-links li {
		margin: 15px 0;
	}

	.hamburger {
		display: flex;
	}

	#nav-links.active {
		display: flex;
	}

	body {
		background-image: none;
	}
}

@media (max-width: 1000px) {
		body {
		background-image: none;
	}
}

a {
  color: inherit; /* blue colors for links too */
  text-decoration: inherit; /* no underline */
}
