@import url("colors.css");

h2{
align-content:flex-start !important;  
}


.light-intro {
  border: 2px solid var(--priAcc);
  background-color: var(--pri);
  border-radius: 10px;
  box-shadow: 0 8px 25px var(--shadow1);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.light-intro:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px var(--shadow2);
}

.awards {
  width: 80%;
  max-width: 900px;
  margin: 24px auto;
  padding-left: 16px;  /* matches table cell padding */
  text-align: left;
  box-sizing: border-box;
  font-style: italic;
  color: var(--text2);
}

table.shows {
  width: 80%;
  max-width: 900px;
  margin: 0 auto 40px auto;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 2px 8px var(--shadow2);
  border-radius: 10px;
  border: 1px solid var(--priAcc);
  font-size: 14px;
  table-layout: fixed;
  font-family: Arial, sans-serif;
}

table.shows th, table.shows td {
  padding: 10px 14px;
  text-align: center;
  word-wrap: break-word;
}

table.shows th {
  background-color: var(--priAcc);
  color: var(--bkg);
  font-weight: 700;
}

table.shows tr:nth-child(even) {
  background-color: var(--bkg);
}

table.shows tr:hover {
  background-color: #e0edf2;
  transition: background 0.2s;
}

.portfolioBtn {
  position: relative;
  display: flex;
  max-width: 300px;
  flex: 1 1 280px;
  background: var(--bkg);
  border: 2px solid var(--pri);
  border-radius: 16px;
  overflow: hidden;
  margin: 10px;
  box-shadow: 0 8px 25px var(--shadow1);
  transition: all 0.3s ease;
  flex-direction: column;
}

.portfolioBtn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px var(--shadow2);
}

.portfolioBtn img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.portfolioBtn:hover img {
  transform: scale(1.05);
}

.portfolioBtn button {
  position: absolute;
  bottom: 1%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  padding: 12px 20px;
  color: var(--bkg);
  font-weight: 400;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  border: 2px solid var(--pri);
  background: var(--priAcc);
  transform: translate(-50%, -50%);
}

.folioBtns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 20px 0;
}

@media (max-width: 700px) {
  body {
    font-size: 14px;
  }
  .light-intro {
    padding: 18px;
  }
  table.shows {
    width: 95%;
    font-size: 12px;
  }
  table.shows th, table.shows td {
    padding: 8px 10px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.3rem;
  }
}