/* Reset some basics */
body {
  background-color: rgb(255, 248, 248);
  background-size: 200px;
  margin: auto;
  padding: 0;
  font-family: 'neucha_regular';
  text-align: center;
  min-height: 100vh;
  position: relative;
  background-image: url("https://ophanimkei.com/images/skybg.jpg"); 
  background-repeat: no-repeat; /* Prevents the image from tiling */
  background-attachment: fixed; /* This makes the background fixed relative to the viewport */
  background-position: center center; /* Centers the image within the viewport */
  background-size: cover; /* Ensures the image covers the entire background area */
}

.form-container {
    border: 14px solid transparent;
    border-image: url('/images/greenborder.png') 19 round;
    width: 792px;
    padding: 20px;
    border-image-slice: fill;
    z-index: 9999;
    background-color: #ffffff8e;
    margin: auto;
}

.form-control {
    border: 1px solid transparent;
    width: 792px;
    padding: 20px;
    border-image-slice: fill;
    z-index: 9999;
    background-color: #ffffff8e;
}

@font-face {
    font-family: 'indie_flowerregular';
    src: url('/fonts/indieflower-regular-webfont.woff2') format('woff2'),
         url('/fonts/indieflower-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'neucha_regular';
    src: url('/fonts/neucha-regular-webfont.woff2') format('woff2'),
         url('/fonts/neucha-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

img {
    max-width: 90%;
}

/* Headings */
h1, h2, b {
    color: #151412;
    font-weight: bold;
}

/* Ask container */
.ask-container {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* Individual ask items */
.ask-item {
    background-color: #faf8ff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
    width: 51%;
    margin-bottom: 20px; 
    border: 14px solid transparent;
    border-image: url('/images/greenborder.png') 19 round;
    width: 792px;
    padding: 20px;
    border-image-slice: fill;
    z-index: 9999;
    background-color: #ffffff8e;
}

.ask-container img {
    max-width: 90%;
}

ul {
    text-align: left;
}

li {
    text-align: left;
}

ol {
    text-align: left;
}

/* Individual ask items */
.unanswered {
    padding: 15px;
    border-radius: 10px;
    width: 55%;
    margin-bottom: 20px; 
    
}

.tag-filter-msg {
    border: 14px solid transparent;
    border-image: url('/images/greenborder.png') 19 round;
    width: 792px;
    padding: 20px;
    border-image-slice: fill;
    z-index: 9999;
    background-color: #ffffff8e;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;       /* allows multiple lines */
    justify-content: center; /* centers all tags horizontally */
    align-items: center;     /* vertically centers if multiple lines */
    text-align: center;
    gap: 8px;                /* even spacing between tags */
    width:60%;
    margin: 20px auto;
    border: 14px solid transparent;
    border-image: url('/images/greenborder.png') 19 round;
    width: 792px;
    padding: 20px;
    border-image-slice: fill;
    z-index: 9999;
    background-color: #ffffff8e;

}

.unansweredask-item {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
    width: 51%;
    margin-bottom: 20px; 
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.cutiepie, .cutiepie2 {
    color: #63583a;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    z-index: 999;
    width: 120px;
    margin: 4px auto 5px;
    display: block;
    padding: 10px;
    background-color: #faf8ff;
}

.cutiepie:hover, .cutiepie2:hover {
    background-color: #e0dede;
}

/* Question & Answer styling */
.question {
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    
}

.answer {
    color: #666;
}

/* Timestamp styling */
.timestamp {
    font-size: 12px;
    color: #999;
    margin-top: 10px;
}



.bubble {
    position: absolute;
    bottom: -100px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: rise 10s infinite ease-in;
    z-index: 5;

          /* bubble look 🫧 */
      background: radial-gradient(circle at 30% 30%, 
        rgba(255, 255, 255, 0.9) 0%,   /* bright highlight */
        rgba(255, 255, 255, 0.4) 30%,  /* soft glow */
        rgba(173, 216, 230, 0.2) 60%,  /* pastel tint */
        rgba(255, 255, 255, 0.05) 100% /* transparent edge */
      );

      box-shadow: inset -4px -6px 12px rgba(255, 255, 255, 0.6),
                  inset 2px 4px 8px rgba(0, 0, 0, 0.1);
    }
  

  
  @keyframes rise {
    0% {
      transform: translateY(0) scale(1);
      opacity: 0;
    }
    30% {
      opacity: 1;
    }
    100% {
      transform: translateY(-110vh) scale(1.3);
      opacity: 0;
    }
  }

  

