/* Full Page Background Pattern */
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 30px 0;
  background: #dfd7c6 url('images/header_bg.jpg') repeat center top;
  color: #333333;
}

/* Centered Boxed Container */
.site-wrapper {
  width: 960px;
  margin: 0 auto;
  background-color: #ffffff;
  border: 1px solid #b5ab96;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.3);
}

/* Header & Navigation Bar */
header {
  background-color: #008000;
 /* background: #2e5b20 url('images/header_bg.jpg') repeat-x center top; */
  border-bottom: 3px solid #1a3813;
  padding: 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 25px;
}

.logo img {
  max-height: 85px;
  width: auto;
  display: block;
}

/* Classic Tab Navigation Bar */
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 5px;
}

nav ul li a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  padding: 10px 16px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 4px 4px 0 0;
  text-shadow: 1px 1px 2px #000;
  transition: background-color 0.2s ease;
}

nav ul li a:hover,
nav ul li a.active {
  background-color: #487c37;
  color: #ffffff;
  text-decoration: none;
}

/* Main Content Layout */
.container {
  padding: 30px;
}

.main-content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 35px;
}

.primary-section {
  flex: 2;
  text-align: center;
}

.primary-section h1 {
  font-size: 2em;
  margin-top: 0;
  margin-bottom: 15px;
  color: #1a3813;
}

.primary-section img {
  max-width: 100%;
  height: auto;
  border: 1px solid #ccc;
}

.primary-section p {
  margin: 15px 0;
}

.announcement-main {
  font-size: 1.4em;
  font-weight: bold;
  color: #000;
}

.announcement-sub {
  font-size: 1.1em;
}

.ticket-section {
  flex: 1;
  text-align: center;
  padding-top: 40px;
}

.ticket-section img {
  max-width: 100%;
  height: auto;
}

/* Three-Column Feature Cards */
.features-grid {
  display: flex;
  gap: 20px;
  border-top: 2px solid #eee;
  padding-top: 25px;
}

.feature-box {
  flex: 1;
  background-color: #f9f8f5;
  padding: 20px;
  border: 1px solid #e0dcd3;
  border-radius: 5px;
}

.feature-box h3 {
  margin-top: 0;
  color: #2e5b20;
  font-size: 1.25em;
  border-bottom: 2px solid #2e5b20;
  padding-bottom: 5px;
}

.feature-box p {
  line-height: 1.5;
  font-size: 0.95em;
}

.feature-box a {
  color: #2e5b20;
  font-weight: bold;
}

footer {
  text-align: center;
  padding: 15px;
  background-color: #ede8dc;
  border-top: 1px solid #dcd5c5;
  font-size: 0.85em;
  color: #555;
}


/* Slideshow Container */
.slideshow-container {
  max-width: 630px;
  position: relative;
  margin: auto;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
}

/* Hide images by default */
.mySlides {
  display: none;
}

/* Next & Previous Buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: absolute;
  margin-top: -22px;
  padding: 12px 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.3s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.4);
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(46, 91, 32, 0.9); /* Matches header green */
}

/* Caption Text */
.caption-text {
  color: #f2f2f2;
  font-size: 14px;
  padding: 8px 12px;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  box-sizing: border-box;
}

/* Navigation Dots */
.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.active-dot, .dot:hover {
  background-color: #2e5b20;
}

/* Fading Animation */
.fade {
  animation-name: fade;
  animation-duration: 0.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}