/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 页面整体样式 */
body {
    font-family: 'Arial', sans-serif;
    background-color: #fce4ec;
    color: #333;
    line-height: 1.6;
    text-align: center;
}

/* 容器 */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 顶部标题 */
header {
    margin-bottom: 30px;
}

header h1 {
    font-size: 3rem;
    color: #D32F2F;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

header p {
    font-size: 1.2rem;
    color: #616161;
    margin-top: 10px;
}

/* 节日氛围部分 */
.holiday-section {
    margin-bottom: 30px;
}

.holiday-banner {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.holiday-banner img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.holiday-banner:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.overlay p {
    font-size: 1.2rem;
}

/* 按钮 */
.action-section {
    margin: 40px 0;
}

button {
    background-color: #D32F2F;
    color: white;
    font-size: 1.2rem;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #C2185B;
}

/* 底部 */
footer {
    margin-top: 50px;
    font-size: 1rem;
    color: #616161;
}

footer p {
    padding: 10px;
    background-color: #f8bbd0;
    border-radius: 5px;
}
