body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: 'Inter', Arial, sans-serif;
  box-sizing: border-box;
}

.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100vw;
  min-height: 100vh;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
}

.overlay {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  background: rgba(255,255,255,0.2); /* subtle overlay for readability */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.top-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 0px 0 0 24px;
  gap: 32px;
  margin: 0;
}

.logo {
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

.logo img {
  height: 120px;
  width: auto;
  margin: 0;
  padding: 0;
}

.top-images {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 48px;
  margin-left: 32px;
  margin-top: 18px;
}

.top-img.art-logo {
  width: 180px;
  height: auto;
}

.top-img.date-venue {
  width: 340px;
  height: auto;
}

.top-navbar {
  flex: 1;
  display: flex;
  align-items: center;
  margin-left: 32px;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 4vw;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-menu li a {
  text-decoration: none;
  color: #000;
  font-size: 22px;
  font-weight: 700;
  transition: color 0.2s;
}

.nav-menu li a:hover {
  color: #606060;
}

.nav-menu li a.active {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
  text-decoration-color: #000;
}

.main-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 40px 5vw 0 5vw;
}

.intro {
  max-width: 1080px;
  border-radius: 16px;
  padding: 32px 24px;
}

.intro h1 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 1.2em;
  color: #000;
  line-height: 1.3;
}

.intro p {
  font-size: 1.1rem;
  color: #222;
  line-height: 1.7;
  margin-bottom: 1em;
}

.footer {
  text-align: center;
  padding: 24px 0 16px 0;
  font-size: 12px;
  color: #606060;
  background: transparent;
}

.footer a {
  color: #000;
  text-decoration: underline;
}

.no-bg {
  background: none !important;
  box-shadow: none !important;
}

.right-layout {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  min-height: 70vh;
  width: 100%;
  padding-right: 7vw;
  box-sizing: border-box;
}

.right-intro {
  max-width: 700px;
  margin-left: auto;
  margin-right: 0;
  background: rgba(255,255,255,0.85);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.below-menu-images {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 48px;
  margin: 32px 0 0 0;
}

.below-img.art-logo {
  width: 180px;
  height: auto;
}

.below-img.date-venue {
  width: 340px;
  height: auto;
}

.left-footer {
  text-align: left;
  padding-left: 24px;
}

.under-bar-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin: 18px 0 0 0;
  padding: 0 32px;
  box-sizing: border-box;
}

.under-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
}

.under-menu {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
}

.under-img.art-logo {
  width: 106px;
  padding-left: 50px;
  height: auto;
}

.under-img.date-venue {
  width: 215px;
  height: auto;
  padding-right:50px ;
}

.exhibition-main-title {
  font-size: 48px;
  text-align: center;
  font-weight: bold;
  margin: 40px 0 32px 0;
  line-height: 1.2;
}

@media (max-width: 1100px) {
  .top-bar {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding-left: 8px;
    padding-right: 8px;
  }
  .logo {
    margin-bottom: 0;
  }
  .top-navbar {
    margin-left: 16px;
    width: auto;
  }
  .nav-menu {
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
  }
  .nav-menu li a {
    font-size: 15px;
  }
}

@media (max-width: 700px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-left: 4px;
  }
  .top-navbar {
    margin-left: 0;
    width: 100%;
  }
  .nav-menu {
    gap: 10px;
    flex-wrap: wrap;
  }
  .logo img {
    height: 60px;
  }
  .top-images {
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
  }
  .top-img.art-logo {
    width: 100px;
  }
  .top-img.date-venue {
    width: 160px;
  }
  .main-content {
    padding: 12px 2vw 0 2vw;
    align-items: flex-start;
  }
  .intro {
    padding: 12px 2vw;
    max-width: 98vw;
  }
  .exhibition-content{
    padding: 12px 2vw;
    max-width: 98vw;

  }
  .right-layout {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-right: 0;
  }
  .right-intro {
    margin: 24px 0 0 0;
    max-width: 95vw;
    padding: 20px 8px;
  }
  .exhibition-main-title {
    font-size: 28px;
    margin: 24px 0 18px 0;
  }
}

@media (max-width: 900px) {
  .below-menu-images {
    gap: 18px;
    margin-top: 18px;
  }
  .below-img.art-logo {
    width: 100px;
  }
  .below-img.date-venue {
    width: 160px;
  }
  .left-footer {
    padding-left: 8px;
  }
  .under-bar-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    gap: 0;
  }
  .under-logo {
    justify-content: flex-start;
    flex: 1;
  }
  .under-menu {
    justify-content: flex-end;
    flex: 1;
  }
  .under-img.art-logo {
    width: 80px;
    padding-left: 37px;
  }
  .under-img.date-venue {
    width: 120px;
    padding-right: 37px;
  }
  .nav-menu li a {
    font-size: 16px;
  }
  .logo img {
    height: 60px;
    padding-bottom: 30px;
  }
}

@media (max-width: 600px) {
  html, body {
    height: 100dvh;
    min-height: 100dvh;
    width: 100vw;
    min-width: 100vw;
    overflow-x: hidden;
  }
  .bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100dvh !important;
    min-width: 100vw !important;
    min-height: 100dvh !important;
    object-fit: cover;
    z-index: 0;
    background: #000;
  }
  .below-menu-images {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .top-bar {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-left: 0;
    padding-right: 0;
  }
  .logo {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 12px;
    margin-bottom: 8px;
  }
  .logo img {
    height: 40px;
    padding-bottom: 16px;
  }
  .top-navbar {
    width: 100%;
    margin-left: 0;
    display: flex;
    justify-content: center;
  }
  .nav-menu {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin: 0;
    padding: 0;
    padding-bottom: 50px;
  }
  .nav-menu li {
    width: 100%;
    text-align: center;
  }
  .nav-menu li a {
    font-size: 15px;
    display: block;
    padding: 8px 0;
  }
  .under-bar-row {
    flex-direction: column;
    align-items: center;
    padding: 0 4px;
    gap: 8px;
  }
  .under-img.art-logo {
    width: 120px;
    padding-left: 0;
  }
  .under-img.date-venue {
    width: 120px;
    padding-right: 0;
  }
  .exhibition-main-title,
  .exhibition-title h1 {
    font-size: 22px;
    margin: 16px 0 12px 0;
    line-height: 1.2;
    padding: 0 4vw;
  }
  .exhibition-section h2 {
    font-size: 16px;
    margin: 12px 0 8px 0;
    padding: 0 4vw;
  }
  .exhibition-section p,
  .exhibition-section ul,
  .exhibition-section li {
    font-size: 1.1rem;
    line-height: 1.6;
    padding: 0 4vw;
    margin: 0 0 8px 0;
  }
}

@media (max-width: 1440px) {
  .nav-menu li a {
    font-size: 18px;
  }
}

@media (max-width: 1200px) {
  .logo img {
    height: 80px;
    padding-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .exhibition-main-title,
  .exhibition-title h1 {
    font-size: 1.7rem;
    margin: 10px 0 8px 0;
    line-height: 1.15;
    padding: 0 2vw;
  }
  .exhibition-section h2 {
    font-size: 1.7rem;
    margin: 8px 0 6px 0;
    padding: 0 2vw;
  }
  .exhibition-section p,
  .exhibition-section ul,
  .exhibition-section li {
    font-size: 1.1rem;
    line-height: 1.5;
    padding: 0 2vw;
    margin: 0 0 6px 0;
  }
} 




.shortlist-table-section {
  width: 100%;
  overflow-x: auto;
  margin-top: 32px;
}
.shortlist-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  font-family: 'Roboto', 'Inter', Arial, sans-serif;
  margin: 0 auto;
}
.shortlist-table th {
  background: #606060;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  padding: 14px 8px;
  text-align: left;
  border-bottom: 1px solid #fff;
}
.shortlist-table td {
  color: #606060;
  font-size: 13px;
  padding: 12px 8px;
  border-bottom: 1px solid #e8e7e7;
  vertical-align: top;
}
.shortlist-table tr:last-child td {
  border-bottom: none;
}
.shortlist-table th:first-child, .shortlist-table td:first-child {
  border-left: none;
}
.shortlist-table th:last-child, .shortlist-table td:last-child {
  border-right: none;
}
.shortlist-table thead tr {
  border-radius: 12px 12px 0 0;
}
.shortlist-table tbody tr:last-child {
  border-radius: 0 0 12px 12px;
}

.shortlist-table tbody tr:hover {
  background: #f2f2f2;
  transition: background 0.2s;
}

@media (max-width: 700px) {
  .shortlist-table th, .shortlist-table td {
    font-size: 12px;
    padding: 8px 4px;
  }
}
@media (max-width: 480px) {
  .shortlist-table th, .shortlist-table td {
    font-size: 10px;
    padding: 6px 2px;
  }
}

/* Row color cycling for comp-shortlist.html table (from Figma) */
.row-color-1 { background: #ffe187 !important; }
.row-color-2 { background: #efeeee !important; }
.row-color-3 { background: #eee3b1 !important; }
.row-color-4 { background: #d3fbff !important; }
.row-color-5 { background: #ffffff !important; }

/* Download button styles */
.download-section {
  margin-top: 24px;
  text-align: center;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.2s ease;
  border: 2px solid #000;
}

.download-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.download-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

@media (max-width: 700px) {
  .download-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .download-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}