@charset "UTF-8";
/* CSS Document */

/* Mobile First Responsive Design */

/* Extra small devices (phones, up to 576px) */
@media (max-width: 575.98px) {
	#intro_welcome {
		font-size: 4rem;
		line-height: 1.1;
		margin-bottom: 0.5rem;
	}

	#intro_mikesutton {
		font-size: 2.5rem;
		line-height: 1.2;
		margin-bottom: 0.5rem;
	}

	#intro_whatIdo {
		font-size: 2rem;
		line-height: 1.3;
	}

	#intro_learnmore {
		font-size: 1.1rem;
		padding: 16px 24px;
	}

	#intro {
		padding: 0 15px;
	}
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
	#intro_welcome {
		font-size: 3rem;
		line-height: 1.2;
	}

	#intro_mikesutton {
		font-size: 2rem;
		line-height: 1.3;
	}

	#intro_whatIdo {
		font-size: 1.75rem;
		line-height: 1.4;
	}

	#intro_learnmore {
		font-size: 1rem;
		padding: 14px 22px;
	}
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
	#intro_welcome {
		font-size: 4rem;
		font-weight: 700;
		line-height: 1.2;
	}

	#intro_mikesutton {
		font-size: 3rem;
		font-weight: 700;
		line-height: 1.3;
	}

	#intro_whatIdo {
		font-size: 2.5rem;
		font-weight: 700;
		line-height: 1.4;
	}

	#intro_learnmore {
		font-size: 1rem;
		padding: 15px 25px;
	}
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
	#intro_welcome {
		font-size: 5rem;
		font-weight: 700;
		line-height: 1.1;
	}

	#intro_mikesutton {
		font-size: 3.5rem;
		font-weight: 700;
		line-height: 1.2;
	}

	#intro_whatIdo {
		font-size: 3rem;
		font-weight: 700;
		line-height: 1.3;
	}

	#intro_learnmore {
		font-size: 1.1rem;
		padding: 16px 28px;
	}
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
	#intro_welcome {
		font-size: 7.8rem;
		font-weight: 700;
		line-height: 1.1;
	}

	#intro_mikesutton {
		font-size: 4.7rem;
		font-weight: 700;
		line-height: 1.2;
	}

	#intro_whatIdo {
		font-size: 4rem;
		font-weight: 700;
		line-height: 1.3;
	}

	#intro_learnmore {
		font-size: 1.2rem;
		padding: 18px 30px;
	}
}


/*intro*/
	#paralax_bg {
		background: url('../images/amsterdam_med_drk.jpg') no-repeat center center;
		background-size: cover;
		background-attachment: fixed;
		height: 100vh;
		min-height: 500px;
		width: 100%;
		position: relative;
	}

	#paralax_bg::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(0, 0, 0, 0.6);
		z-index: 1;
	}

	@media (max-width: 768px) {
		#paralax_bg {
			background-attachment: scroll;
			min-height: 100vh;
		}
	}

	#intro {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 100%;
		max-width: 1200px;
		padding: 0 20px;
		box-sizing: border-box;
		z-index: 2;
		
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		font-family: 'Raleway', sans-serif;
		font-weight: 700;
		text-align: center;
		color: #fff;
		text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 
		             0px 0px 8px rgba(0, 0, 0, 0.5),
		             -2px -2px 4px rgba(0, 0, 0, 0.3);
	}

	#intro > div {
		margin-bottom: 1rem;
	}

	#intro > div:last-child {
		margin-bottom: 0;
		margin-top: 0;
	}

	#intro_learnmore {
		position: fixed;
		bottom: 30px;
		left: 50%;
		transform: translateX(-50%);
		z-index: 1000;
		
		display: inline-block;
		background-color: #45B7FC;
		padding: 15px 25px;
		text-align: center;
		letter-spacing: 1px;
		text-decoration: none;
		border: none;
		border-radius: 8px;
		font-family: 'PT Sans', sans-serif;
		color: #FFF;
		transition: all 0.3s ease;
		box-shadow: 0 4px 15px rgba(69, 183, 252, 0.4);
		text-shadow: none;
		font-weight: 500;
		white-space: nowrap;
	}

	#intro_learnmore:hover {
		background-color: #3ba3e8;
		transform: translateX(-50%) translateY(-2px);
		box-shadow: 0 6px 20px rgba(69, 183, 252, 0.4);
		text-decoration: none;
		color: #FFF;
	}

	a:link {
		text-decoration: underline;
		color: #FFFFFF;
	}

	/* unvisited link */
	a:visited {
		text-decoration: underline;
		color: #FFFFFF;
	}

	/* visited link */
	a:hover {
		text-decoration: underline;
		color: #FFB7B7;
	}

	/* mouse over link */
	a:active {
		text-decoration: underline;;
		color: #FFFB0D;
	}

