@charset "UTF-8";

html, body {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #c2723c;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10; /* 确保在图片上方 */
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.main-nav a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
}

.main-nav a:hover {
    color: #ffcc00;
}

/* ===== 图片容器 ===== */
.part2, .part3 {
    position: relative;
    width: 100%;
}

.part2 img,
.part3 img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== 文字叠加 - 自适应 ===== */
.text_nest,
.text_room,
.text_buffet {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: justify;
    z-index: 5;
}

/* --- FESTIVE NEST --- */
.text_nest {
    top: 6%;
    left: 55%;
    width: clamp(200px, 50%, 530px);
    font-size: clamp(0.9rem, 1.6vw, 1.0rem);
    color: #222;
}

/* --- FUNCTION ROOM --- */
.text_room {
    top: 60%;
    left: 60%;
    width: clamp(180px, 35%, 480px);
    font-size: clamp(0.9rem, 1.6vw, 1.0rem);
    color: #222;
}

/* --- BUFFET --- */
.text_buffet {
    top: 41%;
    left: 26%;
    width: clamp(160px, 25%, 320px);
    font-size: clamp(0.9rem, 1.6vw, 1.0rem);
    color: #fff;
}

.card-group {
	background: #fdf6e9;
}
.rental-card{
  	background: #fdf6e9;
  	border: 5px solid #c2723c;
  	border-radius: 14px; 
  	padding: 28px;
  	min-height: 210px;
  	display: flex;
  	flex-direction: column;
  	gap: 8px;
}

.rental_title{
	color: #222;
	margin-bottom: 60px;
	margin-top: 20px;
	text-align: center;
	font-family: "PT Serif", serif;
  	font-weight: 700;
  	font-style: normal;
}

.card-img-top {
	border: 2px solid #c2723c;
  	border-radius: 14px;
}


.rental-card .btn-primary {
  	background-color: #c2723c;
  	border-color: #2c2c2c;
}

.rental-card .btn-primary:hover {
  	background-color: #2c2c2c;
  	border-color: #fff;
}



.site-footer .footer-pill-wrap{
	width: 1000px;
	height: 35px;
	padding-bottom: 40px;
	background-color: #c2723c;
	border: 3px solid #2c2c2c;
 	border-radius: 40px;
	margin-top: 40px;
	margin: 60px auto 0;
}
.site-footer .footer-pill{
 	max-width: 1100px;
	margin: 0 auto;
  	color: #fff;
 	border-radius: 9999px;
  	padding: 14px 22px;
  	text-align: center;
 	font-size: 10px;
  	line-height: 1.3;
}

/* 2) footer */

.site-footer .footer-legal{
	background-color: #fdf6e9;
	margin-top: 5px;
}
.site-footer .footer-legal-row{
  	display: flex;
  	justify-content: space-between;
 	gap: 20px;
  	flex-wrap: wrap;
  	padding: 16px 0;
}
.site-footer .footer-legal-row a{
  	color: #2c2c2c;
  	text-decoration: none;
  	font-weight: 600;
}
.site-footer .footer-legal-row a:hover{
  	text-decoration: underline;
}

/* 3) social */
.site-footer .footer-social{
	background-color: #2c2c2c;
	padding: 26px 0 30px;
}
.site-footer .social-row{
  	display: flex;
  	justify-content: center;
  	gap: 160px;
}
.site-footer .social-btn{
  	width: 64px;
  	height: 64px;
  	border-radius: 50%;
  	background: #d9d9d9;
  	display: inline-flex;
  	align-items: center;
  	justify-content: center;
  	color: #2c2c2c;
  	text-decoration: none;
  	font-size: 30px;
}

/* 4) bottom thin bar */
.site-footer .footer-bottom{
  	background-color: #fdf6e9;
  	color: #2c2c2c;
  	font-size: 14px;
  	padding: 6px 0;
}

.container1 {
	margin-top: 40px;
	margin-bottom: 20px;
	color: #fdf6e9;
	font-size: 15px;
	background-color: #c2723c;
}





/* ===== 响应式自动缩放 ===== */
@media (max-width: 1024px) {
    .text_nest { left: 50%; width: 45%; }
    .text_room { left: 50%; width: 40%; }
    .text_buffet { left: 35%; width: 35%; }
}

@media (max-width: 768px) {
    .text_nest { top: 5%; left: 5%; width: 70%; text-align: left; }
    .text_room { top: 55%; left: 5%; width: 85%; text-align: left; }
    .text_buffet { top: 60%; left: 5%; width: 80%; text-align: left; }
}

@media (max-width: 480px) {
    .text_nest, .text_room, .text_buffet {
        font-size: clamp(0.8rem, 2.5vw, 1rem);
    }
}
