@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=Playfair+Display:wght@400;500;600&display=swap");

* {
  font-family: "EB Garamond", serif;
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  height: 100%;
}
body {
  margin: 0;
  position: relative;
}
.topContainer {
    width: 80%;
    margin: -30px;
}

header {
    background-color: #1b1b1b;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

.logo {
  flex-shrink: 0;
  text-align: center;
}

.center-logo {
  width: 200px;
  height: auto;
  display: block;
  margin: 0 auto;
}

#navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.leftNav,
.rightNav {
  display: flex;
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 40px;
}

.leftNav {
  justify-content: flex-end;
  gap: 50px;
}

.rightNav {
  justify-content: flex-start;
  gap: 40px;
}


#navbar a {
  color: white;
  font-size: 20px;
  font-weight: 560;
  text-decoration: none;
  transition: color 0.2s;
}

#navbar a:hover {
  color: #f1c400;
}

/* 汉堡菜单图标 - 默认隐藏 */
#menuToggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
  z-index: 1001;
}



