/* 这是你的主样式文件 */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* 设置一个温柔的字体 */
    margin: 0;
    padding: 0;
    background-color: #fce4ec; /* 浅粉色背景，更吸引女孩子 */
    color: #333; /* 深灰色文字 */
    line-height: 1.6;
}

header {
    background-color: #ff80ab; /* 亮粉色头部 */
    color: white;
    padding: 25px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* 柔和的阴影 */
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: white; /* 标题颜色改为白色，与粉色背景对比 */
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s ease; /* 鼠标悬停平滑过渡 */
}

nav ul li a:hover {
    color: #ffecb3; /* 悬停时变为浅黄色 */
}

main {
    padding: 30px 20px;
    max-width: 960px;
    margin: 20px auto; /* 居中显示内容 */
    background-color: white;
    border-radius: 10px; /* 圆角边框 */
    box-shadow: 0 4px 10px rgba(0,0,0,0.05); /* 更明显的阴影 */
}

section {
    margin-bottom: 40px;
    text-align: center;
}

section h2 {
    font-size: 2em;
    color: #ff80ab; /* 与头部同色，保持一致 */
    margin-bottom: 20px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 15px; /* 更大的图片圆角，显得更柔和 */
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* 图片阴影 */
}

footer {
    background-color: #4a148c; /* 深紫色页脚 */
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
    font-size: 0.9em;
}