/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
	* {
		font: normal 16px/20px OutfitRegular, "Sans-serif";
	}
	.text-heading {
		font: bold 24px/32px LexendBold, "Sans-serif";
		color: var(--secondary-color);
	}

	.text-subheading {
		font: normal 18px/26px OutfitRegular, "Sans-serif";
		color: var(--primary-color);
	}

	#bannerArea {
		.item {
			height: 60vh;
			min-height: 450px;
			max-height: 760px;
		}

		.text {
			h1 {
				font: bold 32px/40px OutfitRegular, "Sans-serif" !important;
			}
			h3 {
				font: bold 24px/32px OutfitRegular, "Sans-serif" !important;
			}
		}
	}

	#aboutArea {
		.imgbox {
			background-color: var(--primary-color);

			&::before {
				transform: translateX(-10%);
			}
		}

		.primary-img {
			width: 100%;
			max-height: 420px;
		}

		.text {
			h2:has(a) a {
				font: bold 24px/36px OutfitRegular, "Sans-serif";
			}
		}
	}
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) and (max-width: 992px) {
	* {
		font: normal 16px/20px OutfitRegular, "Sans-serif";
	}
	.text-heading {
		font: bold 28px/36px LexendBold, "Sans-serif";
		color: var(--secondary-color);
	}

	.text-subheading {
		font: normal 20px/30px OutfitRegular, "Sans-serif";
		color: var(--primary-color);
	}

	#bannerArea {
		.item {
			height: 45vh;
			min-height: 450px;
			max-height: 500px;
		}

		.text {
			h1 {
				font: bold 32px/40px OutfitRegular, "Sans-serif" !important;
			}
			h1 {
				font: bold 24px/32px OutfitRegular, "Sans-serif" !important;
			}
		}
	}

	#aboutArea {
		.imgbox {
			background-color: var(--primary-color);

			&::before {
				width: 1200px;
				transform: translateX(-10%);
			}
		}

		.primary-img {
			width: 100%;
			max-height: 420px;
		}
		
		.primary-img.main-img {
			min-height: 500px;
			max-height: 650px;
			object-position: top;
		}
		
		h3.name {
			font: bold 24px/36px OutfitRegular, "Sans-serif";
		}

		.text {
			h2:has(a) a {
				font: bold 24px/36px OutfitRegular, "Sans-serif";
			}
		}
	}
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 600px) and (max-width: 992px) {}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
	#headerArea {
		#menu-header-menu {
			li {
				a {
					&::after {
						top: 184%;
					}
				}
			}
		}
		.nav-img {
			top: calc(100% + 15px);
			left: 0;
			transform: translateY(-50%);
			transition: 300ms ease-in-out;
			z-index: 2;
			padding: 5px;
			overflow: hidden;
			
			img {
				border-radius: 50%;
				max-width: 115px;
				min-height: 115px;
			}
		}
	}
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {}

/* Extra large devices (large desktops, 1400px and up) */
@media only screen and (min-width: 1400px) {}