@charset "utf-8";

body {
	background-color: #fffaf5;
	color: #333;
}

.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background-color: #ffe4e1;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	z-index: 1000;
}

.navbar nav ul {
	margin: 0;
	padding: 10px 0;
	display: flex;
	justify-content: center;
	list-style: none;
}

.navbar nav ul li {
	margin: 0 15px;
}

.navbar nav ul li a {
	text-decoration: none;
	color: #333;
	font-weight: bold;
}

.hero {
	position: relative;
	height: 100lvh;
	overflow: hidden;
}

.hero video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero .hero-text {
	max-width: 600px;
	position: absolute;
	top: 60px;
	left: 40px;
	color: #fff;
	line-height: 1.2;
}

.hero .hero-text h1 {
	max-width: 100%;
	margin: 40px 0 0 0;
	font-size: 4em;
}

.hero .hero-text h1 img {
	width: 100%;
	height: auto;
}

.hero .hero-text p {
	font-size: 2em;
	font-weight: bold;
	text-align: center;
}

.section {
	margin-top: 46px;
	padding: 60px 40px;
	background: #fff;
	border: 1px #ccc solid;
}

.container {
	max-width: 960px;
	margin: 0 auto;
}

.section img {
	max-width: 100%;
	border-radius: 8px;
}

.section h2 {
	font-size: 1.8em;
	margin: 0 0 30px 0;
	color: #d08080;
	border-bottom: 6px #d08080 dotted;
}

.section h2::before {
	content: "◆";
	padding-right: 8px;
}

.section.about {
	padding: 60px 40px 40px 40px;
}

.section.about .about-wrapper {
	padding: 0 0 20px 0;
	display: flex;
	align-items: center;
	gap: 40px;
}

.section.about .about-wrapper.reverse {
	flex-direction: row-reverse;
}

.section.about .about-wrapper img {
	width: calc((100% - 40px) * 0.4);
}

.section.about .about-wrapper div {
	width: calc((100% - 40px) * 0.6);
}

.section.about .about-wrapper div p {
	padding: 5px 0;
	font-size: 1.2em;
}

.section.pricing p {
	margin-top: 20px;
	text-align: right;
}

.section.pricing table {
	width: 100%;
	border-collapse: collapse;
}

.section.pricing table th, .section.pricing table td {
	width: 50%;
	border: 1px solid #ddd;
	padding: 12px;
	text-align: center;
}

.section.pricing table th {
	background-color: #ffe4e1;
}

.section.access iframe {
	width: 100%;
	height: 300px;
}

.section.access p {
	text-align: center;
}

.section .gallery-grid {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.section.info ul {
	margin-left: 40px;
}

.section .gallery-grid div {
	width: calc((100% - 60px) / 4);
	text-align: center;
	line-height: 1;
}

.section .gallery-grid div img {
	width: 100%;
	border-radius: 10px;
}

.section .gallery-grid div p {
	margin-top: 8px;
	color: #666;
}

footer {
	padding: 40px 0;
	margin-top: 80px;
	text-align: center;
	background-color: #ffe4e1;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

