@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

body {
  font-family: 'Inter', sans-serif;
  background: #f5f8fb;
  margin: 0;
  padding: 0;
  color: #333;
}

/* ========== HEADER ========== */
header {
  background: #fff;
  padding: 1rem 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
header h1 a {
  color: #111;
  text-decoration: none;
  font-weight: 600;
}
nav#main-nav a {
  margin-left: 1rem;
  text-decoration: none;
  color: #007acc;
  font-weight: 500;
  transition: color 0.2s;
}
nav#main-nav a:hover {
  color: #005f99;
}
#nav-toggle {
  background: none;
  border: none;
  font-size: 1.8rem;
  display: none;
  cursor: pointer;
  color: #007acc;
}

/* ========== LAYOUT ========== */
main {
  max-width: 960px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.hero {
  background: #e0f3ff;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  text-align: center;
}
.hero h1 {
  margin-top: 0;
}

/* ========== GRID & CARD STYLES ========== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}
.card {
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}
.card:hover {
  transform: translateY(-5px);
}

/* ========== MAP ========== */
#map {
  height: 400px;
  margin: 2rem 0;
  border-radius: 10px;
}

/* ========== HIGHLIGHTS ========== */
.highlight-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}
.highlight-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.highlight-row:nth-child(even) {
  direction: rtl;
}
.highlight-row:nth-child(even) > * {
  direction: ltr;
}
.highlight-block {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
  animation: fadeInUp 0.5s ease-in;
  min-height: 140px;
}
.highlight-block:hover {
  transform: translateY(-4px);
}
.highlight-block.stat {
  background: linear-gradient(135deg, #e0f3ff, #d0eaff);
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  color: #004477;
}
.highlight-block.quote {
  background: #f7f7f7;
  font-style: italic;
  font-size: 1.2rem;
  color: #444;
  display: flex;
  align-items: center;
  justify-content: center;
}
.highlight-block.data h3 {
  margin-top: 0;
}
.highlight-block.data a {
  color: #007acc;
  text-decoration: none;
  font-weight: 600;
}
.highlight-block.data a:hover {
  color: #005f99;
}

/* Themed Blocks */
.bright-city {
  background: linear-gradient(135deg, #ffe0e0, #ffd3ec);
  color: #440022;
}
.bright-conf {
  background: linear-gradient(135deg, #e0ffe8, #c0fdd9);
  color: #004422;
}
.bright-venue {
  background: linear-gradient(135deg, #e0e9ff, #d3dfff);
  color: #002244;
}
.bright-city a, .bright-conf a, .bright-venue a {
  color: #111;
  font-weight: bold;
}
.bright-city a:hover, .bright-conf a:hover, .bright-venue a:hover {
  color: #007acc;
}

/* ========== TABS ========== */
.tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.tab-button {
  padding: 0.5rem 1rem;
  background: #e0f3ff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
}
.tab-button.active {
  background: #007acc;
  color: white;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
  margin-top: 1rem;
}

/* ========== HOTEL STYLES ========== */
.hotel-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.hotel-card h4 {
  margin-top: 0;
}
.hotel-card a {
  color: #007acc;
}
.hotel-card p {
  margin: 0.3rem 0;
}
.hotel-detail {
  background: #fff;
  padding: 2rem;
  margin: 1rem 0;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.hotel-detail h1 {
  margin-top: 0;
}
.hotel-detail a {
  color: #007acc;
  text-decoration: none;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== MOBILE STYLES ========== */
@media (max-width: 768px) {
  #nav-toggle {
    display: block !important;
  }
  nav#main-nav {
    display: none !important;
    flex-direction: column;
    gap: 0.75rem;
    background: #fff;
    position: absolute;
    top: 3.5rem;
    right: 2rem;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 10px;
    z-index: 1000;
  }
  nav#main-nav.open {
    display: flex !important;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .highlight-block {
    padding: 1.5rem;
    font-size: 1.05rem;
  }
  .highlight-block h3 {
    font-size: 1.3rem;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
}
.hotel-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.hotel-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
}
.workshop-card a { text-decoration: none; }
.workshop-card a:hover { text-decoration: underline; }
/* Compact lists */
.clean-list { list-style: none; padding: 0; margin: .25rem 0 1rem; }
.clean-list li { margin: .25rem 0; }


/* Past appearances as chips */
.meta-row { display: flex; align-items: center; gap: .5rem; margin-top: .75rem; }
.meta-label { font-weight: 600; color: #555; }
.chip-list { display: flex; gap: .5rem; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.chip {
  display: inline-block;
  padding: .25rem .6rem;
  border-radius: 999px;
  background: #eef5ff;
  border: 1px solid #d7e7ff;
  text-decoration: none;
  font-size: .9rem;
  color: #1a4a7a;
}
.chip:hover { background: #e2eeff; }
.home-stream { margin: 2rem 0; display: grid; gap: 2rem; }
.stream-header { display:flex; align-items:center; justify-content:space-between; gap:1rem; }
.stream-header h2 { margin: 0; }
.stream-more { text-decoration:none; font-weight:600; }
.stream-list { list-style:none; padding:0; margin:1rem 0 0 0; display:grid; gap:1rem; }
.stream-item { padding:1rem; border:1px solid #eee; border-radius:.75rem; }
.stream-title { font-weight:600; text-decoration:none; }
.stream-date { margin-left:.5rem; opacity:.7; font-size:.9rem; }
.stream-excerpt { margin:.4rem 0 0 0; }
