/* --- 1. 全局变量和基础样式 (来自你的原版代码) --- */
:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --accent: #1f5aa6;
  --accent2: #3173c6;
  --shadow: 0 1px 2px rgba(0,0,0,.06), 0 4px 10px rgba(0,0,0,.04);
  --radius: 16px;
  --radius-sm: 12px;
  --container: 72rem;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font: 18px/1.7 system-ui, -apple-system, Segoe UI, Roboto, Inter, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  scroll-behavior: smooth; /* 添加平滑滚动效果 */
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--container); margin-inline: auto; padding-inline: 1rem; }
p, li { font-size: 1.05rem; }

/* --- 2. 顶栏 (Header) 样式 (★已为你添加现代化设计★) --- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* 品牌 Logo */
.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  transition: opacity 0.3s ease; /* ★新增: 悬停过渡 */
}
.brand:hover {
  opacity: 0.8; /* ★新增: 悬停时轻微透明 */
}

.brand-logo { height: 72px; width: auto; }
.brand-text { font-weight: 800; font-size: 1.25rem; }

/* 导航链接 (桌面端) */
.nav-links {
  display: none; /* 移动端默认隐藏 */
  gap: 0.5rem; /* ★修改: 调整间距以适应新的高亮背景 */
  align-items: center;
  font-size: 1.05rem;
}

/* ★新增: 导航链接的悬停设计★ */
.nav-links a {
  padding: 0.4rem 0.8rem; /* ★新增: 给予内边距，形成“药丸”背景 */
  border-radius: 999px; /* ★新增: 圆角胶囊形状 */
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); /* ★新增: 平滑的过渡动画 */
}
.nav-links a:hover {
  background-color: var(--line); /* ★新增: 悬停时显示浅灰色背景 */
  color: var(--accent); /* ★新增: 悬停时文字变主题蓝 */
}

/* 移动端菜单按钮 (来自你的原版代码) */
.menu-btn {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  padding: .45rem .65rem;
  border-radius: 12px;
  background: var(--surface);
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .menu-btn { display: none; }
}

.button {
  display: inline-block;
  border: 1px solid var(--line);
  padding: .6rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  background: var(--surface);
  font-size: 1rem;
  transition: all 0.3s ease; /* ★新增: 按钮悬停过渡 */
}
.button:hover {
  transform: translateY(-2px); /* ★新增: 按钮悬停时轻微上浮 */
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

/* 移动端菜单 (来自你的原版代码) */
.mobile { display: none; border-top: 1px solid var(--line); }
.mobile.open { display: block; }
.mobile a { display: block; padding: 1rem; border-bottom: 1px dashed var(--line); }

/* --- 3. 页面内容样式 (来自你的原版代码) --- */
.hero {
  position: relative;
  /* ★重要★: 你的图片路径需要更新 */
  background-image: url('../images/中科大.jpg'); /* ★修改: 路径已更新 */
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
  padding-block: 2rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .48);
}

.hero .container { position: relative; z-index: 1; }
.hero-wrap { display: grid; gap: 1rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) { .hero-wrap { grid-template-columns: 1.1fr .9fr; } }

h1 { font-size: clamp(1.6rem, 2.4vw, 2.3rem); line-height: 1.25; margin: .25rem 0; font-weight: 800; }
.muted { color: var(--muted); font-size: 1.05rem; }
.cta { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: .75rem; }

.hero-video video {
  width: min(600px, 95%);
  margin: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

section {
  scroll-margin-top: 96px; /* 滚动定位时避开顶栏 */
  padding-block: 3.25rem;
  border-bottom: 1px solid var(--line);
}
section:last-of-type { border-bottom: none; }

.sec-head { margin-bottom: 1rem; }
h2 { font-size: 1.8rem; margin: 0 0 .25rem; font-weight: 800; }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.grid { display: grid; gap: 1rem; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

/* --- 4. 页脚 (Footer) 样式 --- */
footer {
  border-top: 1px solid var(--line);
  padding-block: 2.2rem;
  color: var(--muted);
}


/* --- 5. 语言切换按钮样式 --- */
.nav-lang-toggle {
  background-color: var(--line);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}

.nav-lang-toggle:hover {
  background-color: var(--accent);
  color: var(--surface);
}


/* --- 6. CFP Topics List 样式 --- */
.topics-list dt {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
  margin-top: 1rem; /* 与上一个 topic 隔开 */
}
.topics-list dd {
  margin-left: 0;
  padding-left: 1.25rem; /* 左侧缩进 */
  border-left: 3px solid var(--line);
  color: var(--muted);
}
.topics-list dt:first-of-type {
  margin-top: 0;
}

/* --- 7. Organizers 样式 (Profile Cards) --- */

/* 响应式 3 列网格 */
.grid-responsive-3 {
  grid-template-columns: 1fr; /* 手机: 1 列 */
}
@media (min-width: 576px) {
  .grid-responsive-3 {
    grid-template-columns: 1fr 1fr; /* 平板: 2 列 */
  }
}
@media (min-width: 992px) {
  .grid-responsive-3 {
    grid-template-columns: 1fr 1fr 1fr; /* 桌面: 3 列 */
  }
}

/* 小标题样式 (例如 "Host Institution") */
.subsection-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--line);
  padding-bottom: 0.5rem;
}

/* 个人名片样式 */
.profile-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm); /* 12px 圆角 */
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.profile-card:hover {
  transform: translateY(-5px); /* 悬停时上浮 */
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* 头像样式 */
.profile-card img.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%; /* 圆形头像 */
  margin: 0 auto 1rem;
  object-fit: cover; /* 确保图片不变形 */
  background-color: var(--line); /* 占位符背景色 */
  border: 3px solid var(--surface);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.profile-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}
.profile-role {
  font-size: 1rem;
  color: var(--accent); /* 主题蓝色 */
  font-weight: 600;
  margin: 0.25rem 0;
}
.profile-affiliation {
  font-size: 0.95rem;
  color: var(--muted);
}


/* --- 手机端响应式菜单 --- */
.mobile-toggle {
  display: none; /* 电脑端隐藏 */
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text);
  margin: 5px 0;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* 当屏幕小于 992px (平板/手机) 时生效 */
@media (max-width: 992px) {
  .mobile-toggle {
    display: block; /* 手机端显示按钮 */
  }

  .nav-links {
    display: none; /* 默认隐藏菜单链接 */
    position: absolute;
    top: 72px; /* 紧贴Header底部 */
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-bottom: 1px solid var(--line);
  }

  /* JS 添加 active 类后显示 */
  .nav-links.active {
    display: flex;
    animation: slideDown 0.3s ease forwards;
  }

  .nav-links a {
    padding: 1rem 0;
    text-align: center;
    border-bottom: 1px dashed var(--line);
    width: 100%;
    border-radius: 0;
  }

  /* 语言切换按钮在手机上的样式 */
  .nav-lang-toggle {
    margin: 1rem auto;
    width: auto !important;
    display: inline-block;
  }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}