@import url('https://fonts.googleapis.com/css?family=Poiret+One|Source+Sans+Pro');

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html, body {
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

body {
	font-size: 110%;
	color: #ecf0f1;
	font-family: 'Source Sans Pro', sans-serif;
	background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
}

.main {
	position: relative;
	z-index: 2;
	height: 100vh; /* Osiguraj da glavni sadržaj zauzima celu visinu ekrana */
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.contact {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 1rem;
}

.title {
	font-family: 'Poiret One', cursive;
	font-size: 4rem;
	margin-bottom: .5rem;
	width: 100%;
	text-align: center;
}

.sub-title {
	border-top: .1rem solid #fff;
	padding: 1rem 4rem;
	text-align: center;
}

.tagline {
	font-family: 'Poiret One', cursive;
	font-size: 2rem;
	margin-bottom: 1rem;
	padding: 1rem 4rem;
	text-align: center;
}

.sub-tagline {
	font-family: 'Poiret One', cursive;
	font-size: 1.5rem;
	margin-bottom: 1rem;
	/* padding: 1rem 4rem; */
	text-align: center;
}

#vanta-bg {
	width: 100%;
	height: 100vh; /* Koristimo 100vh da pokrije celu visinu ekrana */
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}

.vanta-overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100vh; /* Podesi visinu na 100vh kako bi prekrivala celu stranicu */
	width: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 2;
}

.contact-info p {
	font-size: 1.2rem;
	margin-bottom: 1rem;
}

.contact-info a {
	color: #ecf0f1;
	text-decoration: none;
}

.contact-info a:hover {
	text-decoration: underline;
}

.social-links {
	margin-top: 1.5rem;
}

.social-links a {
	font-size: 1.5rem;
	color: #ecf0f1;
	text-decoration: none;
	margin-right: 1rem;
}

.social-links a:hover {
	color: #e4405f;
}

.social-links i {
	margin-right: 0.5rem;
	font-size: 1.8rem;
}

/* Responzivna podešavanja */
@media (max-width: 768px) {
	.title {
	  font-size: 2.5rem;
	}
  
	.sub-title, .tagline, .sub-tagline {
	  font-size: 1rem;
	  padding: 1rem 2rem;
	}
  
	.contact-info p {
	  font-size: 1rem;
	}
  
	.social-links a {
	  font-size: 1.2rem;
	}
  
	/* Dodaj padding ispod Instagram linka na mobilnim uređajima */
	.social-links {
	  margin-top: 1.5rem;
	  padding-bottom: 30px; /* Dodajemo padding kako bi podigli ceo tekst */
	}
  }

@media (max-width: 480px) {
	.title {
		font-size: 2.5rem;
	}

	.sub-title, .tagline, .sub-tagline {
		font-size: 1.2rem;
		padding: 1rem;
	}

	.contact-info p {
		font-size: 0.9rem;
	}

	.social-links a {
		font-size: 1rem;
	}

	.social-links {
	  margin-top: 1.5rem;
	  padding-bottom: 100px; /* Dodajemo padding kako bi podigli ceo tekst */
	}
}