

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* .reservation-bg{
	padding: 100px 0;
} */
.page-con{
	width: 100%;
	max-width: 1200px;
	padding: 0 15px;
	margin: 0 auto;
}

.hero-section {
	width: 100%;
	padding: 120px 0 80px;
	text-align: center;
	position: relative;
}

.hero-bg-text {
	font-size: 220px;
	color: #d8d0c0;
	font-weight: 400;
	opacity: 0.25;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 0;
	letter-spacing: 15px;
	white-space: nowrap;
}

.hero-content {
	position: relative;
	z-index: 1;
}

.hero-label {
	display: inline-block;
	font-size: 11px;
	color: #D4854A;
	font-weight: 400;
	letter-spacing: 6px;
	margin-bottom: 25px;
	position: relative;
	padding: 0 60px;
}

.hero-label::before,
.hero-label::after {
	content: "";
	width: 40px;
	height: 1px;
	background: #D4854A;
	position: absolute;
	top: 50%;
}

.hero-label::before { left: 0; }
.hero-label::after { right: 0; }

.hero-title {
	font-size: 52px;
	color: #1a1a1a;
	font-weight: 300;
	letter-spacing: 8px;
	margin-bottom: 25px;
}

.hero-desc {
	font-size: 15px;
	color: #6a6a6a;
	font-weight: 300;
	line-height: 1.9;
	max-width: 550px;
	margin: 0 auto;
}

/* Section Common */
.section {
	padding: 80px 0;
}

.section-header {
	text-align: center;
	margin-bottom: 50px;
}

.section-label {
	font-size: 11px;
	color: #D4854A;
	font-weight: 400;
	letter-spacing: 5px;
	margin-bottom: 15px;
}

.section-title {
	font-size: 28px;
	color: #1a1a1a;
	font-weight: 400;
	letter-spacing: 4px;
}

/* Check In/Out Section */
.checkin-section {
	background: #fff;
	padding: 70px 0;
}

.checkin-wrap {
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 0;
}

.checkin-card {
	flex: 1;
	max-width: 350px;
	padding: 50px 40px;
	text-align: center;
	position: relative;
}

.checkin-card:first-child {
	border-right: 1px solid #e8e8e8;
}

.checkin-card .label {
	font-size: 11px;
	color: #9a9a9a;
	font-weight: 400;
	letter-spacing: 4px;
	margin-bottom: 20px;
}

.checkin-card .time-wrap {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 8px;
	margin-bottom: 15px;
}

.checkin-card .period {
	font-size: 16px;
	color: #D4854A;
	font-weight: 400;
}

.checkin-card .time {
	font-size: 64px;
	color: #1a1a1a;
	font-weight: 200;
	line-height: 1;
}

.checkin-card .suffix {
	font-size: 14px;
	color: #9a9a9a;
	font-weight: 300;
}

/* 체크인/아웃 안내 텍스트 - 새로운 디자인 */
.checkin-info {
	max-width: 800px;
	margin: 50px auto 0;
	text-align: center;
	position: relative;
}

.checkin-info::before {
	content: "";
	display: block;
	width: 60px;
	height: 1px;
	background: #d8d0c0;
	margin: 0 auto 30px;
}

.checkin-info p {
	font-size: 14px;
	color: #6a6a6a;
	font-weight: 300;
	line-height: 2;
}

.checkin-info p + p {
	margin-top: 8px;
}

.checkin-info .highlight {
	color: #D4854A;
	font-weight: 500;
}

.checkin-info .phone-link {
	color: #D4854A;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid #D4854A;
	padding-bottom: 2px;
	transition: all 0.3s ease;
}

.checkin-info .phone-link:hover {
	color: #4a6a5a;
	border-color: #4a6a5a;
}

/* Important Rules - Icon Grid */
.rules-section {
	padding: 80px 0;
	background: linear-gradient(0deg, #F5F1E8 0%, #F5F1E8 100%), #FFF;
}

.rules-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 40px;
}

.rule-card {
	background: #fff;
	border-radius: 16px;
	padding: 35px 25px;
	text-align: center;
	box-shadow: 0 8px 30px rgba(0,0,0,0.04);
	transition: all 0.3s ease;
}

.rule-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(90, 122, 106, 0.12);
}

.rule-card.warning {
	background: linear-gradient(180deg, #fff 0%, #fef9f9 100%);
}

.rule-card .icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	background: linear-gradient(135deg, #f5f9f7 0%, #eef3f0 100%);
}

.rule-card .icon i {
	font-size: 24px;
	color: #D4854A;
}

.rule-card.warning .icon {
	background: linear-gradient(135deg, #fdf5f5 0%, #fceaea 100%);
}

.rule-card.warning .icon i {
	color: #c75a5a;
}

.rule-card h5 {
	font-size: 15px;
	color: #1a1a1a;
	font-weight: 600;
	margin-bottom: 10px;
	letter-spacing: 1px;
}

.rule-card p {
	font-size: 13px;
	color: #7a7a7a;
	font-weight: 300;
	line-height: 1.6;
}

.rule-card .penalty {
	display: inline-block;
	margin-top: 12px;
	font-size: 11px;
	color: #c75a5a;
	font-weight: 500;
	padding: 4px 10px;
	background: #fef5f5;
	border-radius: 20px;
}

/* Detailed Rules List */
.details-section {
	background: #fff;
	padding: 80px 0;
}

.details-wrap {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}

.details-box {
	padding: 35px;
	background: #fafaf8;
	border-radius: 16px;
}

.details-box h4 {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 16px;
	color: #1a1a1a;
	font-weight: 600;
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 1px solid #e8e8e8;
	letter-spacing: 2px;
}

.details-box h4 i {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: linear-gradient(135deg, #D4854A 0%, #a35f30 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: #fff;
}

.details-list {
	list-style: none;
}

.details-list li {
	position: relative;
	padding: 10px 0 10px 18px;
	font-size: 14px;
	color: #4a4a4a;
	line-height: 1.7;
}

.details-list li::before {
	content: "";
	width: 4px;
	height: 4px;
	background: #D4854A;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 18px;
}

.details-list li b {
	color: #1a1a1a;
	font-weight: 500;
}

.details-list li .warn {
	color: #c75a5a;
	font-weight: 500;
}

/* Reservation Section */
.reservation-section {
	padding: 80px 0;
	background: linear-gradient(0deg, #F5F1E8 0%, #F5F1E8 100%), #FFF;
}

.reservation-wrap {
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 15px 50px rgba(0,0,0,0.06);
}

.reservation-top {
	background: linear-gradient(135deg, #D4854A 0%, #a35f30 100%);
	padding: 40px;
	text-align: center;
	color: #fff;
}

.reservation-top .badge {
	display: inline-block;
	font-size: 11px;
	letter-spacing: 3px;
	padding: 6px 16px;
	background: rgba(255,255,255,0.15);
	border-radius: 20px;
	margin-bottom: 15px;
}

.reservation-top h3 {
	font-size: 22px;
	font-weight: 400;
	letter-spacing: 3px;
}

.reservation-body {
	padding: 50px 40px;
}

.reservation-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 40px;
}

.reservation-item {
	text-align: center;
	padding: 30px 20px;
	background: #fafaf8;
	border-radius: 12px;
}

.reservation-item .icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(135deg, #D4854A 0%, #a35f30 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 15px;
}

.reservation-item .icon i {
	font-size: 18px;
	color: #fff;
}

.reservation-item .label {
	font-size: 11px;
	color: #9a9a9a;
	letter-spacing: 3px;
	margin-bottom: 10px;
}

.reservation-item .value {
	font-size: 18px;
	color: #1a1a1a;
	font-weight: 600;
}

.reservation-item .sub {
	font-size: 13px;
	color: #7a7a7a;
	font-weight: 400;
	margin-top: 5px;
}

.reservation-notices {
	padding: 25px 30px;
	background: #fef9f5;
	border-radius: 12px;
	border-left: 4px solid #d4a574;
}

.reservation-notices p {
	font-size: 13px;
	color: #5a5a5a;
	line-height: 1.9;
	margin-bottom: 5px;
}

.reservation-notices p:last-child {
	margin-bottom: 0;
}

.reservation-notices .em {
	color: #c75a5a;
	font-weight: 500;
}

/* Contact Section - 새로운 디자인 */
.contact-section {
	padding: 0px 0 100px;
	text-align: center;
	background: linear-gradient(0deg, #F5F1E8 0%, #F5F1E8 100%), #FFF;
}

.contact-inner {
	position: relative;
}

.contact-inner::before,
.contact-inner::after {
	content: "";
	display: block;
	width: 1px;
	height: 50px;
	background: linear-gradient(180deg, transparent 0%, #d8d0c0 50%, transparent 100%);
	margin: 0 auto;
}

.contact-inner::before {
	margin-bottom: 60px;
}

.contact-inner::after {
	display: none;
}

.contact-label {
	font-size: 11px;
	color: #9a9a9a;
	letter-spacing: 5px;
	margin-bottom: 25px;
}

.contact-numbers {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 50px;
}

.contact-link {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.contact-link:hover {
	transform: translateY(-2px);
}

.contact-link:hover .number {
	color: #D4854A;
}

.contact-link i {
	font-size: 16px;
	color: #D4854A;
}

.contact-link .number {
	font-size: 28px;
	color: #1a1a1a;
	font-weight: 300;
	letter-spacing: 2px;
	transition: color 0.3s ease;
}

.contact-divider {
	width: 1px;
	height: 30px;
	background: #d8d0c0;
}

@media (max-width: 1024px) {
	.hero-bg-text { font-size: 140px; }
	.hero-title { font-size: 40px; }
	.rules-grid { grid-template-columns: repeat(2, 1fr); }
	.details-wrap { grid-template-columns: 1fr; }
	.reservation-grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 768px) {
	.hero-section { padding: 80px 0 60px; }
	.hero-bg-text { font-size: 80px; }
	.hero-title { font-size: 32px; letter-spacing: 5px; }
	.hero-label { padding: 0 45px; }
	.hero-label::before, .hero-label::after { width: 30px; }
	
	.section { padding: 60px 0; }
	.section-title { font-size: 24px; }
	
	.checkin-wrap { flex-direction: column; gap: 30px; }
	.checkin-card { max-width: 100%; padding: 30px 20px; }
	.checkin-card:first-child { border-right: none; border-bottom: 1px solid #e8e8e8; }
	.checkin-card .time { font-size: 52px; }
	
	.checkin-info { margin-top: 40px; }
	.checkin-info p { font-size: 13px; }
	
	.rules-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
	.rule-card { padding: 25px 20px; }
	
	.reservation-body { padding: 30px 20px; }
	.reservation-notices { padding: 20px; }
	
	.contact-numbers { 
		flex-direction: column; 
		gap: 25px; 
	}
	.contact-divider { 
		width: 40px; 
		height: 1px; 
	}
	.contact-link .number { font-size: 24px; }
}

@media (max-width: 576px) {
	.page-con { padding: 0 20px; }
	.hero-bg-text { font-size: 50px; }
	.hero-title { font-size: 26px; }
	.hero-desc { font-size: 14px; }
	
	.checkin-card .time { font-size: 44px; }
	
	.rules-grid { grid-template-columns: 1fr; }
	.rule-card .icon { width: 50px; height: 50px; }
	.rule-card .icon i { font-size: 20px; }
	
	.details-box { padding: 25px 20px; }
	.details-box h4 { font-size: 15px; }
	.details-list li { font-size: 13px; }
	
	.reservation-item { padding: 25px 15px; }
	.reservation-item .value { font-size: 16px; }
	
	.contact-link .number { font-size: 22px; }
	
	.contact-inner::before,
	.contact-inner::after { height: 35px; }
}