@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.macondo-swash-caps-regular {
  font-family: "Macondo Swash Caps", cursive;
  font-weight: 400;
  font-style: normal;
}

body header {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
body header div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
body header div img.header1 {
  width: 30vw;
}
body header div img.header2 {
  width: 5vw;
  display: block;
  margin: 0 auto;
  animation: spinners 5s infinite;
  animation-timing-function: linear;
}
body nav {
  background-color: white;
  position: sticky;
  top: 0;
  padding: 0rem 2rem 1rem 2rem;
  z-index: 5;
}
body nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
body nav ul li {
  list-style-type: none;
  margin: 1rem;
}
body nav ul li a {
  color: black;
  padding: 0.25rem 0.5rem;
  font-size: 1.5vw;
  border-radius: 20px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.1s ease;
}
body nav ul li a:hover {
  color: darkred;
  transform: scale(1.2);
}
body nav ul li a img {
  width: 3vw;
  padding-top: 0.35rem;
}

main section.grid-wrapper {
  margin-left: 3rem;
  margin-right: 3rem;
  display: grid;
  grid-gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
}
main section.grid-wrapper div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
main section.grid-wrapper div img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: inline-block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
main section.grid-wrapper div img:hover {
  cursor: pointer;
  transform: scale(1.02);
}

footer {
  margin-top: 3rem;
  margin-bottom: 1rem;
}
footer p.mail {
  text-align: center;
}
footer p {
  text-align: center;
}

div.wide {
  grid-column: span 2;
}

div.tall {
  grid-row: span 2;
}

div.png {
  display: inline-block;
}
div.png div.animation {
  justify-content: center;
  align-items: center;
}
div.png div.animation img {
  width: 90%;
}

.lightbox {
  display: none; /* 初始隱藏 */
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  justify-content: center;
  align-items: center;
}

.imagecaption {
  display: none;
  position: fixed;
  z-index: 1000;
  bottom: 0;
  width: 100%;
  height: 5%;
  background-color: rgb(255, 255, 255);
  text-align: center;
}

.lightbox-content {
  max-width: 80%;
  max-height: 80%;
}

.close,
.prev,
.next {
  color: black;
  cursor: pointer;
  position: absolute;
}

.close {
  top: 20px;
  right: 30px;
  font-size: 40px;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

main.about section.main-area {
  margin-left: 3.5rem;
  margin-right: 3.5rem;
  max-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
main.about section.main-area div.photo {
  flex-basis: 400px;
  padding-left: 2rem;
}
main.about section.main-area div.photo img {
  height: 50vh;
}
main.about section.main-area div.info {
  flex-basis: 600px;
}
main.about section.main-area div.info h3 {
  color: rgb(85, 69, 72);
  font-size: 2rem;
}
main.about section.main-area div.info p {
  color: rgb(133, 112, 116);
  font-size: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-align: justify;
}
main.about section.main-area div.info div.award {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
main.about section.main-area div.info div.award a {
  text-decoration: none;
  color: rgb(142, 80, 92);
  font-size: 1.5rem;
}
main.about section.main-area div.info div.mail {
  font-size: 1.5rem;
}

div.contact-container {
  background-color: #8f6069;
  width: 100vw;
  min-height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2rem;
}
div.contact-container form.contact-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
div.contact-container form.contact-left textarea {
  height: 140px;
  padding-top: 15px;
  border-radius: 20px;
}
div.contact-container form.contact-left button {
  display: flex;
  align-items: center;
  padding: 1vw;
  font-size: 1vw;
  color: rgb(246, 222, 222);
  gap: 10px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(270deg, #c57f83, #d98f9d);
  cursor: pointer;
}

.contact-inputs {
  width: 50vw;
  height: 35px;
  border: rgb(125, 101, 102);
  outline: none;
  padding-left: 20px;
  font-weight: 500;
  color: darkolivegreen;
  border-radius: 50px;
}

.contact-inputs:focus {
  border: 2px solid #786165;
}

.contact-inputs::-moz-placeholder {
  color: #a9a9a9;
}

.contact-inputs::placeholder {
  color: #a9a9a9;
}

div.contact-left-title h3 {
  color: #eac6cc;
}/*# sourceMappingURL=style.css.map */