@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@500;600;700&family=Source+Sans+3:wght@400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans 3", "Noto Sans SC", sans-serif;
  background: #f7f1e6;
  color: #1c120c;
  min-height: 100vh;
}

a {
  text-decoration: none;
}

p {
  font-weight: 300;
  color: #4d3b2f;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 80px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s;
}

header.sticky {
  background: #1c120c;
  padding: 12px 80px;
  box-shadow: 0 8px 24px rgba(28, 18, 12, 0.25);
}

header .logo {
  color: #fff;
  font-family: "Noto Serif SC", "KaiTi", serif;
  font-weight: 700;
  font-size: 2em;
  letter-spacing: 2px;
}

header .logo span {
  color: #d4af37;
}

header .navigation {
  position: relative;
  display: flex;
}

header .navigation li {
  list-style: none;
  margin-left: 30px;
}

header .navigation li a {
  color: #fff;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
}

header .navigation li a:hover {
  color: #d4af37;
}

/* Banner */
.banner {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(rgba(28, 18, 12, 0.55), rgba(92, 16, 16, 0.55)),
    url("https://images.unsplash.com/photo-1563245372-f21724e3856d?auto=format&fit=crop&w=2000&q=80");
  background-size: cover;
  background-position: center;
}

.banner .content {
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
}

.banner .content h2 {
  font-size: 5em;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.banner .content p {
  font-size: 1.05em;
  color: #f3e6c8;
  margin-bottom: 8px;
}

.banner .content p a {
  color: #d4af37;
}

.btn {
  display: inline-block;
  font-size: 1em;
  background: #8f1d1d;
  color: #fff;
  padding: 12px 28px;
  margin-top: 20px;
  letter-spacing: 2px;
  transition: 0.4s;
  border: 1px solid #d4af37;
}

.btn:hover {
  background: #d4af37;
  color: #1c120c;
  letter-spacing: 4px;
}

/* Shared sections */
section {
  padding: 100px;
}

.row {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.row .col80 {
  position: relative;
  width: 70%;
}

.row .col20 {
  position: relative;
  width: 30%;
}

.titleText {
  color: #1c120c;
  font-size: 2.2em;
  font-weight: 700;
  font-family: "Noto Serif SC", serif;
}

.titleText span {
  color: #8f1d1d;
  font-weight: 700;
  font-size: 1.5em;
}

.row .col80 p {
  line-height: 1.8;
  margin-top: 18px;
}

.imgBx {
  position: relative;
  width: 100%;
  min-height: 300px;
}

.imgBx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 4px solid #d4af37;
}

/* Menu */
.title {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.menu .content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  margin-top: 40px;
}

.menu .content .box {
  width: 340px;
  margin: 20px;
  border: 12px solid #fff;
  box-shadow: 0 12px 30px rgba(28, 18, 12, 0.12);
  background: #fffaf2;
  transition: 0.35s;
}

.menu .content .box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(143, 29, 29, 0.18);
}

.menu .content .box .imgBx {
  position: relative;
  width: 100%;
  height: 280px;
}

.menu .content .box .text {
  padding: 15px 0 8px;
}

.menu .content .box .text h3 {
  font-weight: 600;
  color: #1c120c;
  text-align: center;
  font-family: "Noto Serif SC", serif;
}

/* Contact */
.contact {
  background: #1c120c;
}

.contact .titleText {
  color: #fff;
}

.contact .titleText span {
  color: #d4af37;
}

.contact .title p {
  color: #f3e6c8;
  margin-top: 12px;
}

.contact .title p a {
  color: #d4af37;
}

.contactInfo {
  width: min(900px, 100%);
  margin: 36px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.contactInfo .infoBox {
  flex: 1 1 280px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.28);
  padding: 24px 22px;
  text-align: center;
}

.contactInfo .infoBox h3 {
  color: #d4af37;
  font-family: "Noto Serif SC", serif;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.contactInfo .infoBox p,
.contactInfo .infoBox a {
  color: #f3e6c8;
}

.contactInfo .infoBox a:hover {
  color: #d4af37;
}

.mapBx {
  width: min(900px, 100%);
  margin: 28px auto 0;
  border: 1px solid rgba(212, 175, 55, 0.28);
  overflow: hidden;
  min-height: 280px;
}

.mapBx iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

.slideshow {
  padding-top: 140px;
  min-height: calc(100vh - 80px);
}

.slideshow .slides {
  width: min(920px, 100%);
  margin: 28px auto 0;
  display: grid;
  gap: 24px;
}

.slideshow .slide {
  background: #fffaf2;
  border: 12px solid #fff;
  box-shadow: 0 12px 30px rgba(28, 18, 12, 0.12);
}

.slideshow .slide img {
  position: static;
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  background: #1c120c;
  border: 0;
}

.slideshow .slide p {
  text-align: center;
  padding: 14px 12px 18px;
  color: #1c120c;
  font-family: "Noto Serif SC", serif;
}

.copyrightText {
  padding: 12px 40px;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  text-align: center;
  background: #140d08;
}

.copyrightText p {
  color: #cbb89d;
}

.copyrightText a {
  color: #d4af37;
  font-weight: 600;
}

/* Mobile */
@media (max-width: 991px) {
  header,
  header.sticky {
    padding: 10px 20px;
  }

  header .navigation {
    display: none;
  }

  header .navigation.active {
    width: 100%;
    height: calc(100% - 68px);
    position: fixed;
    top: 68px;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #1c120c;
  }

  header .navigation li {
    margin-left: 0;
  }

  header .navigation li a {
    color: #fff;
    font-size: 1.6em;
  }

  .menuToggle {
    position: relative;
    width: 40px;
    height: 40px;
    background: url("https://cdn.jsdelivr.net/gh/ionic-team/ionicons@5.5.2/src/svg/menu-outline.svg");
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    filter: invert(1);
  }

  .menuToggle.active {
    background: url("https://cdn.jsdelivr.net/gh/ionic-team/ionicons@5.5.2/src/svg/close-outline.svg");
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
    filter: invert(1);
  }

  section {
    padding: 20px;
  }

  .banner .content h2 {
    font-size: 3em;
  }

  .row {
    flex-direction: column;
  }

  .row .col80,
  .row .col20 {
    width: 100%;
  }

  .row .col20 {
    margin-top: 20px;
  }
}
