/* Font face declaration for Mistral */
@font-face {
  font-family: 'MistralD';
  src: url('assets/fonts/MISTRAL.TTF') format('truetype');
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: left;
}

.main-content {
  background-color: white;
  color: black;
  
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.badger-title {
  font-family: MistralD, cursive;
  color: rgb(255,153,0);
  text-align: center;
  padding-top: 60px;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: clamp(30px, 6vw, 40px);
}

.badger-subtitle {
  color: black;
  text-align: center;
  padding-bottom: 60px;
  margin:0;
  font-size: clamp(18px, 4vw, 26px);
}

.badger-image-container {
margin: 0 0 20px 0;
display: flex;
justify-content: center; /* horizontal centering */
align-items: center;     /* vertical centering, if container has height */
}

.badger-image {
max-width: 400px;
width: 100%;
height: auto;
border-radius: 50%;
aspect-ratio: 1/1;
object-fit: cover;
}

.content-wrapper {
  padding: clamp(0px,5%,20px);
  background-color: white;
  text-align: left;
}
@media(max-width:425px){
  .content-wrapper {
    padding:0px;
  }
}
.description-text {
  color: black;
  text-align: left;
  font-size: 16px;
  margin-bottom: 20px;
}

.highlight-text {
  font-family: MistralD, cursive;
  color: rgb(255,153,0);
  font-weight: bold;
}

.features-title {
  color: black;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: left;
}

.features-list {
  color: black;
  font-size: 16px;
  list-style-type: disc;
  padding-left: 40px;
  text-align: left;
  margin-bottom:20px;
}
@media(max-width:425px){
  .features-list{
    padding-left:20px;
    margin-bottom:20px;
  }
}
.feature-item {
  margin-bottom: 15px;
  text-align: left;
  padding-left: 10px;
}

.feature-description {
  margin-left: 20px;
  display: block;
}

.back-button {
  display: inline-block;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  border: 2px solid rgba(0, 0, 0, 0.9);
  border-radius: 20px;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  min-width: 120px;
  
}

.back-button:hover {
  background: rgba(255, 153, 0, 0.9);
  color: white;
  border-color: rgba(255, 153, 0, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 153, 0, 0.3);
  text-decoration: none;
}