/* style.css */

body {
    margin: 0;
    padding: 0;
    font-family: 'Quicksand', sans-serif;
    background-image: url('images/Main-page.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  h1 {
    margin-top: 40px;
    font-size: 3rem;
    color: #e88a67;
    background: rgba(255, 255, 255, 0.6);
    display: inline-block;
    padding: 10px 30px;
    border-radius: 20px;
    text-align: center;
  }
  
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 160px; /* Slightly lowered to center */
    gap: 60px;
    flex-wrap: wrap;
  }
  
  .option {
    width: 320px;
    height: 320px;
    background-color: white;
    border-radius: 50% 50% 40% 60% / 60% 50% 50% 40%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.2s ease-in-out, box-shadow 0.3s;
    position: relative;
    animation: pop 0.4s ease-in-out;
  }
  
  .option:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }
  
  .option img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: auto; /* Fix: allow image to receive click */
  }

.option-label {
  position: absolute;
  bottom: -40px;
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

  
  @keyframes pop {
    0% { transform: scale(0.85); }
    60% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }
  
  .bubble-cursor {
    position: absolute;
    width: 16px;
    height: 16px;
    background: radial-gradient(circle at center, rgba(255, 182, 193, 0.8), rgba(255, 182, 193, 0));
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    animation: bubble-pop 0.5s forwards;
  }
  
  @keyframes bubble-pop {
    to {
      transform: scale(2);
      opacity: 0;
    }
  }
  
