@import url("https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://use.fontawesome.com/releases/v7.1.0/css/all.css");


:root {
	--color-blue-parkingskillz: #003da5;		/* PMS 293 C */
	--color-orange-parkingskillz: #fe5000;		/* PMS Orange 021 C */

	/* PMS 293 C Analogous */
	--color-bluegreen-dark: #00629b;			/* PMS 3015 C */
	--color-violet: #5c068c;					/* PMS 2597 C */

	/* PMS 293 C Triadic */
	--color-green-moss: #4a6a1d;				/* PMS 2280 C */
	--color-red-velvet: #9a3324;				/* PMS 484 C */

	/* PMS Orange 021 C Monochromatic */
	--color-orange-light: #ff8f1c;				/* PMS 1495 C */
	--color-orange-burnt: #b94700;				/* PMS 1525 C */

	/* PMS 5425 C Monochromatic */
	--color-bluegray: #7a99ac;					/* PMS 5425 C */
	--color-bluegray-light: #b9d9eb;			/* PMS 290 C */
	--color-bluegray-dark: #254a5d;			/* PMS 2168 C */

	--color-offwhite: #e8f2f8;					/* PMS 290 C 33% */
	--color-coolgray1: #d9d9d6;				/* PMS Cool Gray 1 C */
	--color-coolgray2: #d0d0ce;				/* PMS Cool Gray 2 C */
	--color-coolgray3: #c8c9c7;				/* PMS Cool Gray 3 C */
	--color-coolgray4: #bbbcbc;				/* PMS Cool Gray 4 C */
	--color-coolgray5: #b1b3b3;				/* PMS Cool Gray 5 C */
	--color-coolgray6: #a7a8a9;				/* PMS Cool Gray 6 C */
	--color-coolgray7: #97999b;				/* PMS Cool Gray 7 C */
	--color-coolgray8: #888b8d;				/* PMS Cool Gray 8 C */
	--color-coolgray9: #75787b;				/* PMS Cool Gray 9 C */
	--color-coolgray10: #63666a;				/* PMS Cool Gray 10 C */
	--color-coolgray11: #53565a;				/* PMS Cool Gray 11 C */

	--btn-border-radius: 0.6rem;

	--container-padding-mobile-default: 0.72rem 1rem;
	--container-padding-desktop: 1rem 4rem;
	--container-padding-desktop-large: 1rem 8rem;
}







/* Default width = 320px (iPhone 4, 5, SE) */
html {
	font-size: 16px;
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
body {
	background: var(--color-offwhite);
	color: var(--color-coolgray9);
	font-family: "Google Sans Flex", sans-serif;
	font-weight: 400;
	letter-spacing: 0.04rem;
	line-height: 1.6;
	margin: 0px;
	overflow-x: hidden;
	padding: 0px;
}
h1 {
	color: var(--color-bluegray-dark);
	font-family: "Montserrat", sans-serif;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0rem;
	line-height: 2.2rem;
	margin: 0rem 0rem 1.6rem 0rem;
}
h2 {
	color: var(--color-bluegray-dark);
	font-family: "Montserrat", sans-serif;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0rem;
	line-height: 1.8rem;
	margin: 0rem 0rem 1.8rem 0rem;
}
h3 {
	color: var(--color-bluegray-dark);
	font-family: "Montserrat", sans-serif;
	font-size: 1.24rem;
	font-weight: 600;
	letter-spacing: 0rem;
	line-height: 1.36rem;
	margin: 0rem 0rem 1.36rem 0rem;
}
p {
	font-size: 0.88rem;
	line-height: 1.28rem;
	margin: 0rem 0rem 1.28rem 0rem;
}
p strong {
	color: var(--color-coolgray11);
	font-weight: 500;
}
button {
	font-family: "Montserrat", sans-serif;
}






.nav {
	align-items: center;
	background: var(--color-offwhite);
	display: flex;
	justify-content: space-between;
	padding: var(--container-padding-mobile-default);
	position: sticky;
	top: 0;
	z-index: 100;
}
.logo {
	align-items: center;
	display: flex;
}
.logo img {
	height: 1.96rem;
	margin: 0px;
	width: auto;
}
.nav-buttons {
	margin-left: 0.6rem;
	padding: 0px;
}
.nav-buttons button {
	border: none;
	border-radius: var(--btn-border-radius);
	cursor: pointer;
	font-size: 0.8rem;
	font-weight: 600;
	margin: 0px;
	padding: 0.6rem 0.8rem;
	transition: all 0.2s;
}

.btn-login {
	background: transparent;
	border: 1px solid var(--color-bluegray-light) !important;
	color: var(--color-bluegray-dark);
}
.btn-login:hover {
	background: rgb(from var(--color-bluegray-light) r g b / 33%);
}
.btn-signup {
	background: var(--color-blue-parkingskillz);
	color: white;
}
.btn-signup:hover {
	background: var(--color-bluegray-dark);
}








.hero {
    overflow: hidden; 
	padding: 2.4rem 2rem;
	position: relative;
	text-align: center;
}
.hero p {
	font-size: 0.96rem;
	line-height: 1.48rem;
	margin: 0rem 0rem 1.48rem 0rem;
}
.hero-cta {
	background: var(--color-orange-parkingskillz);
	border: none;
	border-radius: var(--btn-border-radius);
	color: white;
	cursor: pointer;
	font-size: 0.92rem;
	font-weight: 600;
	margin: 0.64rem 0rem 0rem 0rem;
	padding: 0.8rem 2rem;
	text-align: center;
	transition: transform 0.2s;
}
.hero-cta:hover {
	background: var(--color-orange-burnt);
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
	transform: translateY(-2px);
}
.hero-content {
	pointer-events: auto;
    position: relative;
	text-align: center;
    z-index: 20;
}
.cloud {
    animation: float linear infinite;
    background: white;
    border-radius: 50px;
	left: 0;
	position: absolute;
	will-change: transform;
    z-index: 1; 
}
.cloud::after, .cloud::before {
    background: white;
	border-radius: 50%;
	content: '';
    position: absolute;
}
.cloud-1 {
	animation-duration: 50s;
	animation-delay: -20s;
	height: 60px;
	opacity: 0.8;
	top: 44%;
	transform: scale(0.8);
	width: 180px;
}
.cloud-1::after { width: 60px; height: 60px; top: -40px; left: 25px; }
.cloud-1::before { width: 100px; height: 100px; top: -50px; right: 25px; }
.cloud-2 {
	animation-duration: 70s;
	animation-delay: -5s;
	height: 32px;
	opacity: 1;
	top: 32%;
	transform: scale(0.8);
	width: 120px;
}
.cloud-2::after { width: 32px; height: 32px; top: -25px; left: 15px; }
.cloud-2::before { width: 70px; height: 70px; top: -35px; right: 15px; }
.cloud-3 {
	animation-duration: 120s;
	animation-delay: -10s;
	height: 32px;
	opacity: 0.5;
	top: 22%;
	transform: scale(1);
	width: 60px;
}
.cloud-3::after { width: 16px; height: 16px; top: -10px; left: 10px; }
.cloud-3::before { width: 32px; height: 32px; top: -10px; right: 10px; }
@keyframes float {
	from { 
		transform: translateX(110vw); 
	}
	to { 
		transform: translateX(-150vw); 
	}
}
@media (prefers-reduced-motion: reduce) {
	.cloud { 
		animation: none; 
		transform: translateX(10vw); 
	}
}








.what-youll-get {
	padding: 4rem 2rem;
	margin: 0 auto;
}
.what-youll-get h2 {
	text-align: center;
}
.what-youll-get .font-awesome {
	font-size: 3rem;
}
.feature-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.8rem;
}
.feature-card {
	padding: 2rem;
	border-radius: 12px;
	background: white;
	text-align: center;
}
.feature-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}
.feature-card h3 {
	margin-bottom: 0.8rem;
}
.fa-bullseye {
	color: var(--color-red-velvet);
}
.fa-star {
	color: var(--color-orange-light);
}
.fa-piggy-bank {
	color: var(--color-green-moss);
}
.fa-map-pin {
	color: var(--color-blue-parkingskillz);
}








.how-it-works {
	padding: 4rem 2rem;
}
.how-it-works h2 {
	text-align: center;
}
.how-it-works h3 {
	padding-top: 0.16rem;
	margin-bottom: 0.6rem;
}
.steps {
	margin: 0rem auto;
	max-width: 800px;
}
.step {
	align-items: flex-start;
	display: flex;
	margin-bottom: 1.4rem;
}
.step-number {
	align-items: center;
	background: var(--color-blue-parkingskillz);
	border-radius: 50%;
	color: white;
	display: flex;
	flex-shrink: 0;
	font-size: 0.72rem;
	font-weight: 300;
	height: 1.6rem;
	justify-content: center;
	margin-right: 0.6rem;
	width: 1.6rem;
}








		.modal {
			display: none;
			position: fixed;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background: rgba(0,0,0,0.5);
			z-index: 1000;
			justify-content: center;
			align-items: center;
		}

		.modal.active {
			display: flex;
		}

		.modal-content {
			background: white;
			padding: 2rem;
			border-radius: 12px;
			max-width: 400px;
			width: 90%;
			position: relative;
		}

		.modal-close {
			position: absolute;
			top: 1rem;
			right: 1rem;
			background: none;
			border: none;
			font-size: 1.5rem;
			cursor: pointer;
			color: #666;
		}

		.modal h2 {
			margin-bottom: 1.5rem;
			color: #2563eb;
		}

		.form-group {
			margin-bottom: 1rem;
		}

		.form-group label {
			display: block;
			margin-bottom: 0.5rem;
			font-weight: 500;
		}

		.form-group input {
			width: 100%;
			padding: 0.75rem;
			border: 1px solid #d1d5db;
			border-radius: 6px;
			font-size: 1rem;
		}

		.form-group input:focus {
			outline: none;
			border-color: #2563eb;
		}

		.btn-primary {
			width: 100%;
			padding: 0.75rem;
			background: var(--color-orange-parkingskillz);
			color: white;
			border: none;
			border-radius: 6px;
			font-size: 1rem;
			cursor: pointer;
			margin-top: 1rem;
		}

		.btn-primary:hover {
			background: #1d4ed8;
		}

		.divider {
			text-align: center;
			margin: 1.5rem 0;
			color: #666;
		}

		.btn-google {
			width: 100%;
			padding: 0.75rem;
			background: white;
			color: #333;
			border: 1px solid #d1d5db;
			border-radius: 6px;
			font-size: 1rem;
			cursor: pointer;
			display: flex;
			align-items: center;
			justify-content: center;
		}

		.btn-google:hover {
			background: #f9fafb;
		}

		.switch-auth {
			text-align: center;
			margin-top: 1rem;
			color: #666;
		}

		.switch-auth a {
			color: #2563eb;
			cursor: pointer;
			text-decoration: none;
		}

		.success-message {
			display: none;
			text-align: center;
			padding: 2rem;
		}

		.success-message.active {
			display: block;
		}

		.success-icon {
			font-size: 4rem;
			color: #10b981;
			margin-bottom: 1rem;
		}





/* Width >= 375 (iPhone 6/7/8/SE, X) */
@media (min-width: 375px) {
	html {
		font-size: 16.5px;
	}
	.logo img {
		height: 2.2rem;
	}
	.nav-buttons button {
		padding: 0.6rem 1.12rem;
	}
	.cloud-1 {
		top: 36%;
	}
	.cloud-2 {
		top: 28%;
	}
	.cloud-3 {
		top: 20%;
	}
}




/* Width >= 390 (iPhone 12 Pro) */
@media (min-width: 390px) {
	.logo img {
		height: 2.4rem;
	}
	.cloud-1 {
		top: 32%;
	}
	.cloud-2 {
		top: 24%;
	}
	.cloud-3 {
		top: 18%;
	}
}




/* Width >= 414 (iPhone 6/7/8 Plus, XR) */
@media (min-width: 414px) {
	html {
		font-size: 17px;
	}
	.logo img {
		height: 2.44rem;
	}
	.cloud-1 {
		top: 32%;
	}
}




/* Width >= 430 (iPhone 14 Pro Max) */
@media (min-width: 430px) {
	.logo img {
		height: 2.6rem;
	}

}




/* Width >= 768 (iPad) */
@media (min-width: 768px) {
	.cloud-1 {
		top: 24%;
	}
	.cloud-2 {
		top: 16%;
	}
	.cloud-3 {
		top: 12%;
	}
	.feature-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}




/* Width >= 981 (Small Desktop) */
@media (min-width: 981px) {
	html {
		font-size: 18px;
	}
	.nav {
		padding: var(--container-padding-desktop);
	}
	.nav-buttons button {
		padding: 0.68rem 1.4rem;
	}
	.hero-content {
		padding: var(--container-padding-desktop);
	}
	h1 {
		font-size: 2.28rem;
		line-height: 2.36rem;
		margin: 0rem 0rem 1.6rem 0rem;
	}
	.cloud-1 {
		top: 32%;
	}
	.cloud-2 {
		top: 24%;
	}
	.cloud-3 {
		top: 18%;
	}
	.what-youll-get {
		padding: var(--container-padding-desktop);
	}
}




/* Width >= 1112 (Medium Desktop) */
@media (min-width: 1112px) {
	
}




/* Width >= 1336 (Large Desktop) */
@media (min-width: 1336px) {
	.nav {
		padding: var(--container-padding-desktop-large);
	}
	.hero {
		padding: 4rem 16rem;
	}
	.cloud-1 {
		animation-duration: 90s;
		top: 40%;
	}
	.cloud-2 {
		animation-duration: 120s;
		top: 28%;
	}
	.cloud-3 {
		animation-duration: 180s;
		top: 22%;
	}
	.what-youll-get {
		padding: var(--container-padding-desktop-large);
	}
	.feature-grid {
		grid-template-columns: repeat(4, 1fr);
	}
	.how-it-works {
		padding: 1rem 26rem;
	}
}