#app {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  background: #303030;
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: env(safe-area-inset-top);
  padding-right: env(safe-area-inset-right);
  padding-bottom: env(safe-area-inset-bottom);
  padding-left: env(safe-area-inset-left);
}
@media (max-width: 500px) {
  #app {
    max-width: 100%;
    width: 100%;
  }
}

#banner {
  width: 100%;
  height: auto;
  margin: 0 auto 40px auto;
  display: block;
}

.home-container {
  min-height: 100vh;
  background: #000;
  color: #fff;
  font-family: "Kanit", sans-serif;
  padding: 20px 0;
}

.event-carousel-wrapper {
  margin-bottom: 20px;
}
.event-carousel-wrapper .splide {
  padding: 0 20px;
}

.event-banner {
  background: #000;
  border: 2px solid #fbefbd;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.event-banner h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 10px 0;
  text-transform: uppercase;
}
.event-banner p {
  color: #fbefbd;
  font-size: 24px;
  font-style: italic;
  margin: 0;
  font-family: "Sriracha", cursive;
}
.event-banner.coco-festival {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}
.event-banner.coco-festival .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("https://images.unsplash.com/photo-1511795409834-ef04bbd61622?w=800") center/cover;
  opacity: 0.3;
}
.event-banner.coco-festival .banner-content {
  position: relative;
  z-index: 1;
}
.event-banner.coco-festival h2 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.event-banner.coco-festival p {
  color: #fff;
  font-size: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.event-timings {
  background: #1a1a1a;
  padding: 15px 20px;
  margin: 0 20px 30px 20px;
  border-radius: 8px;
}
.event-timings .timing-item {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #333;
}
.event-timings .timing-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.event-timings .timing-item .timing-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.event-timings .timing-item .timing-content .timing-info .timing-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}
.event-timings .timing-item .timing-content .timing-info .timing-time {
  font-size: 14px;
  color: #999;
}
.event-timings .timing-item .timing-content .timing-registration {
  font-size: 12px;
  color: #666;
  text-align: right;
}

.nav-buttons {
  padding: 0 20px;
}

.nav-button {
  display: block;
  background: linear-gradient(to bottom, #4a4a4a 0%, #2a2a2a 50%, #000 100%);
  border-radius: 12px;
  padding: 15px 15px;
  margin-bottom: 15px;
  text-decoration: none;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s;
  border: 1px solid #666;
  line-height: 20px;
  /* &.login-btn {
       border-color: #666;
       color: #999;
       text-transform: lowercase;
       background: linear-gradient(to bottom, #3a3a3a 0%, #2a2a2a 50%, #1a1a1a 100%);

       &:hover {
           border-color: #999;
           color: #ccc;
           background: linear-gradient(to bottom, #4a4a4a 0%, #3a3a3a 50%, #2a2a2a 100%);
       }
   }*/
}
.nav-button:hover {
  background: linear-gradient(to bottom, #5a5a5a 0%, #3a3a3a 50%, #1a1a1a 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}
.nav-button.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

#back-to-home {
  max-width: 200px;
  margin: 20px auto;
  display: block;
}

.agenda-container {
  min-height: 100vh;
  background: #000;
  color: #fff;
  font-family: "Kanit", sans-serif;
  padding: 20px;
}

.agenda-tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  padding: 0 10px;
}

.tab-button {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 8px;
  background: #303030;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  font-family: "Kanit", sans-serif;
  cursor: pointer;
  transition: all 0.3s;
}
.tab-button.active {
  background: #fbefbd;
  color: #000000;
}
.tab-button:not(.active) {
  background: #1a1a1a;
  color: #fff;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.agenda-title {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 40px 0 0px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.agenda-list {
  list-style: square;
  padding: 15px 15px 15px 35px;
  margin: 0;
}

.agenda-item {
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  position: relative;
  /*   &::before {
          content: '';
          position: absolute;
          left: 0;
          top: 50%;
          transform: translateY(-50%);
          width: 8px;
          height: 8px;
          background: #fff;
          border-radius: 2px;
      }
  */
}
.agenda-item:last-child {
  border-bottom: none;
}
.agenda-item .agenda-text {
  color: #fff;
  font-size: 16px;
  flex: 1;
}
.agenda-item .agenda-time {
  color: #fbefbd;
  font-size: 16px;
  font-weight: 600;
}

.venue-container {
  min-height: 100vh;
  background: #000;
  color: #fff;
  font-family: "Kanit", sans-serif;
  padding: 30px 20px;
}

.venue-section {
  margin-bottom: 40px;
  text-align: center;
  padding: 0 15px;
}
.venue-section:last-child {
  margin-bottom: 0;
}

.venue-section-title {
  color: #fbefbd;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 15px 0;
  text-transform: capitalize;
}

.venue-details {
  color: #fff;
  font-size: 20px;
  margin: 0;
}

.transportation-list {
  list-style: square;
  padding: 0 0 0 20px;
  margin: 0;
  text-align: left;
}

.transportation-item {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  padding: 5px 0;
  padding-left: 5px;
  position: relative;
}

.question-container {
  min-height: 100vh;
  background: #000;
  color: #fff;
  padding: 30px 20px;
  background: url("../img/bg-th.png") top center repeat;
  background-size: 40%;
}

.question-title {
  font-size: 28px;
  font-weight: 700;
  color: #fbefbd;
  text-align: center;
  margin: 0 0 30px 0;
  text-transform: uppercase;
}

.question-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.form-textarea {
  width: 100%;
  padding: 15px;
  background: #1a1a1a;
  border: 2px solid #333;
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
  resize: vertical;
  box-sizing: border-box;
  transition: border-color 0.3s;
  font-family: "Noto Sans Thai Med", sans-serif;
}

.form-textarea:focus {
  outline: none;
  border-color: #fbefbd;
}

.form-textarea::placeholder {
  color: #666;
}

.char-count {
  text-align: right;
  font-size: 12px;
  color: #999;
  margin-top: 5px;
}

.submit-button {
  width: 100%;
  padding: 15px 15px 12px 15px;
  background: #fbefbd;
  border: none;
  border-radius: 8px;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-button:hover:not(:disabled) {
  background: #ffe789;
  transform: translateY(-2px);
}

.submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.success-message {
  text-align: center;
  padding: 30px;
  background: #1a1a1a;
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto;
}

.success-message i {
  font-size: 48px;
  color: #28a745;
  margin-bottom: 15px;
}

.success-message p {
  color: #fff;
  font-size: 18px;
  margin: 0;
}

/*# sourceMappingURL=chanel.css.map */
