/* 基本样式 */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #E3F2FD;
    color: #333;
}

header {
    background-color: #fff;
    padding: 10px 0;
    text-align: center;
}

.header-image {
    max-width: 100%;
    height: auto;
}

nav {
    background-color: #333;
    padding: 10px;
}

.menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.menu li {
    margin: 0 15px;
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
}

.menu-icon {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

.welcome-section {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    margin: 20px;
    border-radius: 10px;
}

.info-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.address, .gallery-preview {
    background-color: #fff;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    flex: 1 1 300px;
}

.gallery-images {
    text-align: center;
}

.gallery-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.gallery-section {
    padding: 20px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.gallery-item {
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
    margin-top: 20px;
}

.footer-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
    background-color: #fff;
    margin: 20px;
    border-radius: 10px;
}

.footer-phone, .open-time {
    flex: 1 1 300px;
    text-align: center;
    margin: 10px;
}

.footer-phone hr, .open-time hr {
    border: 0;
    border-top: 1px solid #ccc;
    margin: 10px 0;
}

.offer-section {
    padding: 20px;
    text-align: center;
}

.offer-box {
    background-color: #fff;
    border: 2px solid #ffcc00; /* 边框颜色 */
    border-radius: 15px; /* 圆角 */
    padding: 20px;
    max-width: 400px; /* 最大宽度 */
    margin: 0 auto; /* 居中 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 阴影效果 */
}

.offer-box h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.offer-box .price {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.offer-box .highlight {
    color: #e74c3c; /* 高亮颜色 */
    font-weight: bold;
}

.offer-box .time {
    font-size: 18px;
    color: #555;
    margin: 10px 0;
}

.offer-box .slogan {
    font-size: 20px;
    color: #2ecc71; /* 标语颜色 */
    font-weight: bold;
    margin-top: 15px;
}

.offer-box hr {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 15px 0;
}

/* Buffet 价格区域样式 */
.buffet-prices {
    padding: 20px;
    text-align: center;
}

.buffet-box {
    background-color: #fff;
    border: 2px solid #ffcc00; /* 边框颜色 */
    border-radius: 15px; /* 圆角 */
    padding: 20px;
    max-width: 600px; /* 最大宽度 */
    margin: 20px auto; /* 居中 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 阴影效果 */
}

.buffet-box h1 {
    font-size: 28px;
    color: #e74c3c; /* 红色标题 */
    margin-bottom: 15px;
}

.buffet-box h2 {
    font-size: 22px;
    color: #333;
    margin: 10px 0;
}

.buffet-box .price {
    color: #e74c3c; /* 红色价格 */
    font-weight: bold;
    font-size: 28px;
}

.buffet-box .highlight {
    color: #e74c3c; /* 红色高亮 */
    font-weight: bold;
}

.buffet-box .highlight-green {
    color: #2ecc71; /* 绿色高亮 */
    font-weight: bold;
}

.buffet-box .example {
    font-size: 18px;
    color: #555;
    margin-top: 10px;
}

.buffet-box hr {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 15px 0;
}

.back-link {
    margin-top: 20px;
}

.back-link a {
    font-size: 18px;
    color: #e74c3c; /* 红色链接 */
    text-decoration: none;
    font-weight: bold;
}

.back-link a:hover {
    text-decoration: underline;
}
.address-text {
    line-height: 1.8; /* 调整行高，值越大行距越大 */
    margin: 0; /* 移除默认的外边距 */
    padding: 0; /* 移除默认的内边距 */
}



/* 方案1样式 */
.vacation-notice {
    background: #fff8e6;
    border-left: 5px solid #e67e22;
    padding: 20px;
    margin: 20px 15px;
    border-radius: 0 5px 5px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    line-height: 1.6;
}

.notice-header h2 {
    color: #e67e22;
    margin-top: 0;
}

.highlight {
    color: #e74c3c;
    font-weight: bold;
}

.signature {
    font-style: italic;
    text-align: right;
    margin-top: 15px;
}

/* 方案2样式 */
.vacation-banner {
    background: #e74c3c;
    color: white;
    padding: 15px;
    text-align: center;
    margin: 15px 0;
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

/* .vacation-banner::before {
    content: "⚠️";
    margin-right: 8px;
} */


@keyframes pulse {
    0% { opacity: 0.9; }
    50% { opacity: 1; }
    100% { opacity: 0.9; }
}

/* 方案3样式 */
.vacation-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-top: 4px solid #3498db;
    text-align: center;
}

.vacation-card h3 {
    color: #3498db;
    margin-top: 0;
}

.card-content p {
    margin: 10px 0;
}

.card-message {
    font-style: italic;
    color: #7f8c8d;
    margin-top: 15px !important;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
    }

    .menu.active {
        display: flex;
    }

    .menu-icon {
        display: block;
    }

    .info-section {
        flex-direction: column;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
	.footer-info {
        flex-direction: column;
    }

    .footer-phone, .open-time {
        flex: 1 1 auto;
    }
	 .offer-box {
        padding: 15px;
    }

    .offer-box h2 {
        font-size: 22px;
    }

    .offer-box .price {
        font-size: 18px;
    }

    .offer-box .time {
        font-size: 16px;
    }

    .offer-box .slogan {
        font-size: 18px;
    }
	.buffet-box {
        padding: 15px;
    }

    .buffet-box h1 {
        font-size: 24px;
    }

    .buffet-box h2 {
        font-size: 20px;
    }

    .buffet-box .price {
        font-size: 24px;
    }

    .buffet-box .example {
        font-size: 16px;
    }
	
	.vacation-notice {
        padding: 15px;
        margin: 15px 10px;
        font-size: 0.95rem;
    }
    
    .vacation-banner {
        padding: 12px 15px;
        margin: 15px 0;
        font-size: 0.95rem;
    }
    
    .notice-header h2 {
        font-size: 1.3rem;
    }
    
    .signature {
        margin-top: 10px;
    }

}

@media (max-width: 480px) {
    .vacation-banner {
        padding: 12px 15px 12px 45px;
        text-align: left;
        background-position: 15px center;
    }
    
    .vacation-banner::before {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .vacation-notice {
        border-left-width: 4px;
        padding: 12px;
    }
    
    .banner-content p {
        margin: 3px 0;
    }
    
    .highlight {
        font-size: 1em; /* 防止放大导致换行 */
    }
}