/* Base */
body {
  font-family: var(--font-gothic);
  color: var(--color-text);
  background-color: var(--color-background);
  line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

/* Section Headings (like temporary site) */
.section-heading {
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 2rem;
}
.section-heading p {
  font-size: 0.9rem;
  color: var(--color-text);
  margin: 5px 0 0 0;
  font-weight: normal;
  letter-spacing: 0.1em;
  text-transform: none;
}

/* Glass Header */
.glass-header {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

/* Buttons */
.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-full);
  padding: 12px 32px;
  transition: all 0.3s ease;
  border: none;
  font-weight: bold;
  display: inline-block;
  text-decoration: none;
}
.btn-primary:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  color: var(--color-white);
  text-decoration: none;
}

/* Round Banner (Shake animation on hover) */
.round-banner {
  position: absolute;
  bottom: 20px;
  right: 40px;
  width: 148px;
  height: 148px;
  z-index: 10;
  transition: transform 0.3s ease;
}

.round-banner:hover {
  animation: shake 1.5s ease-in-out both;
}

@keyframes shake {
  10%, 90% { transform: translate3d(-1px, 0, 0) rotate(-4deg); }
  20%, 80% { transform: translate3d(2px, 0, 0) rotate(4deg); }
  30%, 50%, 70% { transform: translate3d(-4px, 0, 0) rotate(-12deg); }
  40%, 60% { transform: translate3d(4px, 0, 0) rotate(12deg); }
}

/* Cards */
.topic-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.5s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.topic-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  transition: all 0.5s ease;
}
.topic-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.topic-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.topic-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: #666;
}
.topic-card__category {
  background: var(--color-secondary-light);
  color: var(--color-text);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  font-weight: bold;
}
.topic-card__title {
  font-family: var(--font-gothic);
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--color-text);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Reservation Strip */
.reservation-strip {
  text-align: center;
  padding: 20px 0;
}
.reservation-strip picture img {
  width: 100%;
  max-width: 728px;
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}
.reservation-strip picture img:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* Modern Offcanvas Menu */
.modern-offcanvas {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  color: var(--color-text);
  border-left: 1px solid var(--glass-border);
}
.modern-offcanvas .uk-offcanvas-close {
  color: var(--color-primary);
}
.modern-offcanvas .uk-offcanvas-close:hover {
  color: var(--color-primary-light);
}
.modern-offcanvas .uk-nav-default > li > a {
  color: #999 !important;
  font-size: 1.1rem;
  padding: 15px 0;
  font-weight: bold;
  transition: color 0.3s ease;
}
.modern-offcanvas .uk-nav-default > li > a:hover {
  color: var(--color-primary) !important;
}
.modern-offcanvas .uk-nav-divider {
  border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
  margin: 15px 0;
}

/* Modern Schedule Table */
.modern-schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
  table-layout: fixed;
}
.modern-schedule-table th, 
.modern-schedule-table td {
  padding: 12px 2px;
  text-align: center;
  border: none;
  font-size: 0.95rem;
  vertical-align: middle;
}
.modern-schedule-table thead tr th {
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-primary-light);
  font-weight: bold;
  color: var(--color-text);
}
.modern-schedule-table tbody tr {
  border-bottom: 1px dashed rgba(0,0,0,0.08);
}
.modern-schedule-table tbody tr:last-child {
  border-bottom: none;
}
.modern-schedule-table th.time-col,
.modern-schedule-table td.time-col {
  width: 75px;
  text-align: center;
  font-weight: bold;
  font-size: 0.9rem;
  font-family: var(--font-gothic);
}
@media (max-width: 480px) {
  .modern-schedule-table th, 
  .modern-schedule-table td {
    padding: 10px 0;
    font-size: 0.85rem;
  }
  .modern-schedule-table th.time-col,
  .modern-schedule-table td.time-col {
    width: 50px;
    font-size: 0.75rem;
  }
}
.modern-schedule-table th.sat { color: #5B8CFF; }
.modern-schedule-table th.sun { color: #FF7B7B; }

.status-open {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.status-closed {
  display: inline-block;
  width: 12px;
  height: 2px;
  background-color: #dcdcdc;
  border-radius: 2px;
}

.news-date {
    color: var(--color-primary);
    font-size: 0.9rem;
    margin-bottom: 5px;
    padding-right: 10px;
}
.news-category {
    display: inline-block;
    padding: 1px 10px;
    font-size: 0.75rem;
    background-color: var(--color-primary);
    color: white;
    border-radius: 2px;
    margin-right: 10px;
}