/* Scene Info and Description Button Styles */

/* Base styles */
#scene-info { 
  position: absolute; 
  bottom: 30px; 
  left: 30px; 
  max-width: 100%;
  transition: all 0.3s ease;
}

#scene-title { 
  display: inline-block; 
  max-width: 100%; 
  font-size: 5vw; 
  line-height: 1.2; 
  font-weight: 500; 
  margin: 0; 
  padding: 0 0 0 0; 
  color: #FFF; 
  transition: all 0.3s ease;
  text-transform: uppercase;
}
#scene-title:after {
  width: 45px;
  height: 45px;
  background: url('../assets/icons/info-circle.png') no-repeat center;
  background-size: 70%;
  display: inline-block;
  margin: 0 0 -12px 10px;
  content: '';
  cursor: pointer;
}

#scene-info #scene-description { 
  font-size: 18px; 
  line-height: 22px; 
  color: #FFF; 
  padding: 10px 0 0 0; 
  margin: 0;
  display: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  max-width: 80%;
}

/* Responsive breakpoints */

/* Tablet and up (768px+) */
@media screen and (min-width: 768px) {

  #scene-info {
    max-width: 80%;
  }

  #scene-info #scene-description {
    display: block;
    opacity: 1;
    transform: translateY(0);
    max-width: 70%;
  }

  #scene-title {
    font-size: 4vw;
    line-height: 1.1;
    padding: 0;
  }

}

/* Desktop and up (960px+) */
@media screen and (min-width: 960px) {
  /* Additional desktop styles if needed */
}

/* Large desktop and up (1200px+) */
@media screen and (min-width: 1200px) {
  #scene-info { 
    bottom: 60px; 
    left: 70px; 
    max-width: 50%;
  }

  #scene-title {
    font-size: 3vw;
    line-height: 1.1;
    padding: 0;
  }
  #scene-title:after {
    width: 50px;
    height: 50px;
    margin: 0 0 -8px 10px;
    background-size: 80%;
  }

  #scene-info #scene-description {
    display: block;
    padding-top: 10px;
    max-width: 80%;
  }
}

/* Extra large desktop and up (1600px+) */
@media screen and (min-width: 1600px) {
  /* Additional extra large desktop styles if needed */
  #scene-info #scene-description {
      font-size: 20px;
      line-height: 28px;
      max-width: 100%;
  }
}

/* Ultra wide screens (1800px+) */
@media screen and (min-width: 1800px) {
  /* Additional ultra wide styles if needed */
} 