/* Reset & base */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body {
  background-image: url(./assets/images/vintage-typewriter-qhd.jpg);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  
}

.container {
  background: rgba(150, 150, 150, 0.268);
  backdrop-filter: blur(2px);
  border-radius: 15px;
  padding: 40px;
  max-width: 550px;
  max-height: 550px;
  height: 100%;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.715);
}
.container:hover {
  background: rgba(44, 44, 44, 0.268);
  backdrop-filter: blur(4px);
  border-radius: 15px;
  padding: 40px;
  max-width: 550px;
  max-height: 550px;
  height: 100%;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.715);
}

/* Sections */
.level-section {
  display: none;
}

section.active {
  display: block;
}

h1, h2 {
  margin-bottom: 20px;
}

p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

#text-display-easy, #text-display-moderate, #text-display-hard {
  font-size: 1.2rem;
  line-height: 1.6;
  background: rgba(255,255,255,0.2);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  min-height: 80px;
}

textarea {
  width: 100%;
  height: 100px;
  padding: 10px;
  border-radius: 10px;
  border: none;
  outline: none;
  font-size: 1rem;
  resize: none;
}

button {
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  margin: 10px 5px 0 5px;
  cursor: pointer;
  background:#b4b4b4;
  color: #393939;
  font-weight: bolder;
  transition: 0.3s;
  font-size: 16px;
}

button:hover {
  background: #393939;
  color: #b4b4b4;
  font-size: 20px;
  border-radius: 15px;
}

.stats {
  margin-top: 20px;
  font-size: 1.1rem;
}

.highlight {
  color: #ffd700;
}
header {
  width: 100%;
  background: rgba(0,0,0,0.3);
  background-blend-mode: darken;
  backdrop-filter: blur(2px);
  padding: 15px 20px;
  position: fixed; 
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  padding-bottom: 0;
}

header h1 {
  font-size: 1.5rem;
  color: #b4b4b4;
}
.footer1{
    position: fixed;
    bottom: 0.8rem;
    left: 0.8rem;
    opacity: 0.7;
    font-weight: lighter;
}
.footer2{
    position: fixed;
    bottom: 0.8rem;
    right: 0.8rem;
}
.bi-activity{
  height: 40px;
  width: 40px;
  margin-top: 0;
  top: 0;
  opacity: 0.8;
  right: 20;
}

.h1{
  color: #cfcece;
  text-shadow: 0 5px 5px rgba(0, 0, 0, 0.682);
}
.m-0{
border: 1px solid white;
display: inline-flex;
color: white;
padding: 6px 6px;
border-radius: 50%;
opacity: 0.7;
margin-right: 1px;
}
.m-0:hover{
  color: black;
  background-color: white;
  opacity: 1;
}
.h1{
  font-family: 'Lato', sans-serif;
}
.wrapper{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(108, 108, 108, 0.139);
  backdrop-filter: blur(2px);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 55px;
}

/* Mobile devices */
@media (max-width: 576px) {
  html, body {
  overflow-x: hidden;
}


  body {
    padding: 10px;
  }

  .container {
    padding: 20px;
    max-width: 90%;
    max-height: none;
    border-radius: 12px;
  }

  h1, h2 {
    font-size: 1.2rem;
  }

  p {
    font-size: 1rem;
  }

  textarea {
    height: 80px;
    font-size: 0.9rem;
  }

  button {
    font-size: 14px;
    padding: 8px 16px;
  }

  header h1 {
    font-size: 1.2rem;
  }
  .wrapper {
  position: fixed;
  bottom: 0.6rem;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.footer1,.footer2{
  position: static;
}

.bi{
  height: 1rem;
  width: 1rem;
}
.type{
  margin-top: 1rem;
}
.head{
  justify-content: center;
}
footer{
  display: flex;
  justify-content: center;
}
.footer1 {
  order: 2;
  font-size: 0.8rem;   /* reservation text goes DOWN */
}

.footer2 {
  order: 1;
}



}





