/* general */
* {
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
}

body {
	font-family: Helvetica, Arial, sans-serif;
	color: #000000;
	background: #dddddd;
	line-height: 1.6;
	letter-spacing: 0.175rem;
	word-spacing: 0.075rem;
	font-size: 1.35rem;
}

@media (max-width: 768px) {
	body {
		font-size: 1.15rem;
	}
}

/* navigation */
nav {
	position: fixed;
	width: 100%;
	background: #ffffff;
	box-shadow: 0 4px 10px #00000055;
	z-index: 10;
}

nav ul {
	display: flex;
	justify-content: center;
	padding: 20px 0;
	list-style: none;
}

nav ul a {
	display: flex;
	color: #000000;
	padding: 0 20px;
	font-weight: bold;
	transition: color 0.3s;
	font-size: 1.25rem;
	text-decoration: none;
	align-items: center;
}

#navbar-logo {
	display: inline;
	background-image: url("res/logo-cut.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	filter: invert(1);
	height: 4rem;
	width: 4rem;
}

nav .menu-btn,
nav .menu-icon {
	display: none;
}

@media (max-width: 960px) {
	nav {
		background: #ffffff;
	}

	#navbar-logo {
		margin-bottom: 3rem;
		width: 100%;
	}

	nav ul {
		width: 100%;
		flex-direction: column;
		overflow: hidden;
		height: 0;
		transition: height 0.4s ease-out;
		padding: 0;
		justify-content: unset;
	}

	nav ul a {
		padding: 20px 0;
		margin: 0 auto;
		font-size: 2rem;
		width: 100%;
	}

	nav ul a li {
		margin: 0 auto;
	}

	nav .menu-icon {
		display: inline-block;
		cursor: pointer;
		float: right;
		padding: 32px 20px;
	}

	nav .menu-icon .navicon {
		background: #000000;
		display: block;
		height: 2px;
		position: relative;
		transition: background 0.2s ease-out;
		width: 18px;
	}

	nav .menu-icon .navicon:before,
	nav .menu-icon .navicon:after {
		background: #000000;
		content: "";
		height: 100%;
		position: absolute;
		transition: all 0.2s ease-out;
		width: 100%;
	}

	nav .menu-icon .navicon:before {
		top: 5px;
	}

	nav .menu-icon .navicon:after {
		top: -5px;
	}

	nav .menu-btn {
		display: none;
	}

	nav .menu-btn:checked ~ ul {
		height: 100vh;
	}

	nav .menu-btn:checked ~ .menu-icon .navicon {
		background: transparent;
	}

	nav .menu-btn:checked ~ .menu-icon .navicon:before {
		transform: rotate(-45deg);
	}

	nav .menu-btn:checked ~ .menu-icon .navicon:after {
		transform: rotate(45deg);
	}

	nav .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
	nav .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
		top: 0;
	}
}

/* section start */
#section-start {
	background: url("res/bg.jpeg");
	background-repeat: no-repeat;
	background-size: cover;
	color: #ffffff;
	align-items: center;
	flex-direction: row;
	text-align: center;
	height: 80vh;
}

#header-container {
	height: 100%;
}

#section-start h1 {
	top: 30%;
	position: relative;
	font-size: 3rem;
	font-weight: 400;
	text-shadow: 8px 8px 8px black;
}

@media (max-width: 1400px) {
	#section-start h1 {
		font-size: 2.5rem;
	}
}

@media (max-width: 576px) {
	#section-start {
		height: 70vh;
	}

	#section-start h1 {
		font-size: 2rem;
	}
}

/* scroll title, content logic */
section {
	padding-left: 5rem;
	padding-right: 5rem;
	display: flex;
	justify-content: center;
}

section:nth-child(even) {
	background: #eeeeee;
}

.section-container {
	width: 100%;
	padding-top: 5rem;
}

.section-title-container {
	text-align: center;
}

.section-title {
	font-size: 3rem;
	font-weight: bold;
}

.section-content {
	min-height: 70vh;
	overflow-y: auto;
	padding-bottom: 5rem;
}

@media (max-width: 768px) {
	.section-title {
		font-size: 2rem;
	}
}

@media (max-width: 576px) {
	section {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

/* services */

#section-services {
	margin: auto;
	padding: 0;
	width: 50%;
}

#services {
	text-align: center;
}

.service-item {
	margin-top: 1.5rem;
	margin-bottom: 7rem;
}

.service-item h4 {
	font-size: 2rem;
	margin-bottom: 0.5rem;
	margin-top: 1rem;
}

.service-content {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

#section-services .subtitle {
	color: #666666;
	margin-bottom: 2.5rem;
}

.service-item ul {
	list-style-position: inside;
	margin-bottom: 2rem;
}

.service-item ul li::marker {
	content: "- ";
}

.service-item ul li {
	margin-bottom: 0.5rem;
}

#section-services .price {
	font-weight: bold;
	margin: 2rem 0;
}

#section-services .note {
	margin-bottom: 0.5rem;
	margin-top: auto;
	font-size: 1.125rem;
	color: #777777;
}

@media (max-width: 1400px) {
	#section-services {
		width: 60%;
	}
}

@media (max-width: 1024px) {
	#section-services {
		width: 75%;
	}

	#services {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	#section-services {
		width: 85%;
	}

	.service-item h4 {
		font-size: 1.5rem;
	}
}

@media (max-width: 576px) {
	#section-services {
		width: 90%;
	}
}

/* contact */

#section-contact .contact-group {
	margin-bottom: 2.5rem;
	text-align: center;
}

#section-contact .contact-group h4 {
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
	font-size: 2rem;
}

#section-contact .contact-group p {
	margin: 0.5rem 0;
}

#section-contact .contact-group a {
	color: #89b5fc;
	text-decoration: none;
}

#section-contact .contact-group a:hover {
	text-decoration: underline;
}

#section-contact .note {
	font-size: 1.125rem;
	margin-top: 0.5rem;
}

#section-contact .map-container {
	max-width: 800px;
	margin: 3rem auto 0;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 10px #00000055;
}

#contact-seeyou {
	text-align: center;
}

@media (max-width: 768px) {
	#section-contact .contact-group h4 {
		font-size: 1.5rem;
	}
}

/* footer */
footer {
	text-align: center;
	padding: 15px;
	background: #ffffff;
}

#footer-nav ul {
	display: flex;
	list-style: none;
	justify-content: space-between;
	margin: 0 10%;
}

#footer-nav ul li a {
	color: #000000;
	text-decoration: none;
	font-weight: bold;
	transition: color 0.3s;
}

@media (max-width: 1024px) {
	#footer-nav ul {
		display: block;
	}

	#footer-nav ul li {
		padding: 10px 0;
	}
}
