@import url('https://fonts.googleapis.com/css?family=Pacifico&subset=latin,latin-ext');
@import url('https://fonts.googleapis.com/css?family=Average&subset=latin,latin-ext');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Georgia, serif;
  background-image: url('theme/footer-bg.jpg');
  background-repeat: repeat;
  min-height: 100%;
}

a {
  text-decoration: none;
}

/* ── Container ─────────────────────────── */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 10px;
}

/* ── Ceiling (header) ───────────────────── */
#ceiling {
  position: relative;
  height: 124px;
  background-image: url('theme/ceiling-center.jpg');
  background-repeat: repeat-x;
  background-position: center top;
  overflow: hidden;
}

#ceiling .side-left {
  position: absolute;
  top: 0; left: 0;
  width: 50%;
  height: 100%;
  background-image: url('theme/ceiling-left.jpg');
  background-repeat: no-repeat;
  background-position: left top;
}

#ceiling .side-right {
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background-image: url('theme/ceiling-right.jpg');
  background-repeat: no-repeat;
  background-position: right top;
}

.lights {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 160px;
  pointer-events: none;
}

.light1, .light2, .light3 {
  width: 80px;
  height: 60px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
}

.light1 { background-image: url('theme/light-1.jpg'); }
.light2 { background-image: url('theme/light-2.jpg'); }
.light3 { background-image: url('theme/light-3.jpg'); }

#ceiling .container {
  position: relative;
  z-index: 2;
  height: 124px;
  display: flex;
  align-items: center;
}

#wsite-title {
  font-family: Pacifico, serif;
  font-size: 2.4rem;
  color: #fff;
  text-shadow: 1px 2px 4px rgba(0,0,0,0.6);
  letter-spacing: 0.5px;
}

#ceiling a { color: #fff; }

/* ── Nav ────────────────────────────────── */
#nav-wrap {
  background-color: rgba(44, 22, 5, 0.88);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 2px solid rgba(0,0,0,0.4);
}

#nav-wrap .container {
  padding: 0;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.nav-list li a {
  display: block;
  padding: 14px 22px;
  font-family: Pacifico, serif;
  font-size: 1rem;
  color: rgb(153, 203, 35);
  transition: color 0.2s;
}

.nav-list li a:hover {
  color: #c5e86e;
}

.nav-list li.nav-active a {
  color: #d4ee66;
  border-bottom: 3px solid rgb(153, 203, 35);
}

/* ── Banner ─────────────────────────────── */
#banner-wrap {
  line-height: 0;
}

#banner-wrap .container {
  padding: 0;
  max-width: 100%;
}

.banner-img {
  width: 100%;
  display: block;
  max-height: 320px;
  object-fit: cover;
  object-position: center;
  border: 6px solid #fff;
  border-left: none;
  border-right: none;
}

/* ── Main content ───────────────────────── */
#main-wrap {
  background-image: url('theme/wall-bg.jpg');
  background-repeat: repeat;
  padding: 6px 0;
}

#wsite-content {
  background: #fff;
  padding: 30px 40px 40px;
  max-width: 960px;
  margin: 0 auto;
}

/* Section headings */
h2.section-title {
  font-family: Pacifico, serif;
  color: rgb(174, 87, 31);
  font-size: 1.6rem;
  font-weight: normal;
  margin: 28px 0 14px;
}

h2.section-title:first-child {
  margin-top: 0;
}

/* Two-column row */
.two-col {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.col-text {
  flex: 1;
  color: rgb(132, 133, 133);
  font-family: Georgia, serif;
  font-size: 0.95rem;
  line-height: 1.65;
}

.col-image {
  flex: 1;
  text-align: center;
}

.col-image img {
  max-width: 100%;
  height: auto;
}

.col-text ul {
  margin-left: 1.4em;
  margin-top: 6px;
}

.col-text li {
  margin-bottom: 4px;
}

.col-text li a {
  color: rgb(121, 117, 112);
}

.col-text li a:hover {
  text-decoration: underline;
}

/* Horizontal divider */
hr.section-divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 28px 0;
}

/* ── Footer ─────────────────────────────── */
#footer-wrap {
  background-image: url('theme/footer-bg.jpg');
  background-repeat: repeat;
  padding: 24px 0;
  min-height: 60px;
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 640px) {
  #wsite-title { font-size: 1.6rem; }
  .two-col { flex-direction: column; }
  .nav-list li a { padding: 10px 14px; font-size: 0.85rem; }
  #wsite-content { padding: 20px; }
}
