/* Google Font - League Spartan */
@font-face {
  font-family: 'League Spartan';
  src: url('../assets/fonts/LeagueSpartan-VariableFont_wght.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* Exercise Wrapper */
.exercise-wrapper {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  position: relative;
  padding-top: 6rem;
}

/* Main Container */
.exercise-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 36rem;
  padding: 1rem;
  overflow-y: auto;
}

/* Activities Grid */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  width: 100%;
}

/* Activity Item */
.activity-item {
  display: flex;
  flex-direction: column;
}

/* Image Container */
.image-container {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.1);
  background-color: #f0f0f0;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-container:hover img {
  transform: scale(1.05);
}

/* Text Container */
.text-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #f9f9f9;
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.1);
  height: 100%;
  position: relative;
}

/* Activity Text */
.activity-text {
  font-size: 1.2rem;
  font-weight: bold;
  color: #00699F;
  margin: 0;
  flex-grow: 1;
}

/* Hint Container */
.hint-container {
  display: flex;
  align-items: center;
  position: relative;
  margin-left: auto;
}

.hint-button {
  width: 2rem;
  height: 2rem;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.hint-icon {
  width: 2rem;
  height: 2rem;
  transition: transform 0.2s ease;
}

.hint-button:hover .hint-icon {
  transform: scale(1.1);
}

.hint-text {
  display: none;
  position: absolute;
  right: 0;
  top: 2.5rem;
  background-color: #fff;
  border: 0.0625rem solid #ddd;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  z-index: 10;
  box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  color: #333;
  min-width: 15rem;
  line-height: 1.5;
}

.hint-container.active .hint-text {
  display: block;
}

/* Hide elements */
.hidden {
  display: none;
}

/* Position for audio recorder */
/*
.audio_recorder {
  width: 100%;
  max-width: 60rem;
  margin: 0 auto 1.5rem;
  display: flex;
  justify-content: center;
  position: relative;
}
  */
footer{
  display:none;
}
