/* styles.css */
audio {
    display: none;
  } 

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
  }
  
  .container {
    text-align: center;
    width: 100%;
    max-width: 500px;
  }
  
  .status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  }
  
  .status-dot {
    width: 10px;
    height: 10px;
    background-color: orange;
    border-radius: 50%;
  }
  
  .info-icon {
    font-size: 20px;
  }
  

  
  .text {
    margin-top: 10px;
    font-size: 20px;
  }
  
  .controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    padding: 0 20px;
  }
  
  .control {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
  }

  .control-button {
    display: block;
    margin: 50px auto;
    width: 100px; /* Set a specific width */
    height: 100px; /* Set a specific height */
    padding: 10px; /* Add padding for internal spacing */
    color: #fff; /* Text color */
    background-color: #007bff; /* Default background color */
    transition: background-color 0.3s, transform 0.3s; /* Smooth transition */
  }

  .control-button:hover {
    background-color: #0056b3; /* Change background color on hover */
    transform: scale(1.05); /* Slightly scale the button */
  }
  
  .control.stop {
    background-color: red;
  }
  
  .control.start {
    background-color: rgb(14, 174, 75);
  }

 


  .responsive-background {
    background-image: url('sheila.jpeg');
    background-size: cover;
    background-position: top;
    padding: 0;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  @media (min-width: 800px) {
    .responsive-background {
      width: 800px; /* Set width to 1000px for screens wider than 1000px */
      left: calc(50% - 400px); /* Center the 1000px width */
    }
  }
  



  /* ... existing styles ... */

.lightbox {
  width: 100%; /* Same width as parent */
  height: 25%; /* Fixed height */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 1.0), rgba(255, 255, 255, 0)); /* Gradient effect */
  position: absolute; /* Position it above other content */
  top: 0; /* Align to the top */
  left: 0; /* Align to the left */
  z-index: 1; /* Ensure it appears above other elements */
  display: flex; /* Use flexbox to center content */
  flex-direction: column; /* Stack text vertically */
  justify-content: center; /* Center vertically */
  align-items: center; /* Center horizontally */
}

.bold-text {
    font-size: 40px; /* Adjust the size as needed */
    font-weight: 500; /* Make the text bold */
}

/* ... existing styles ... */



.bottom-container {
    position: absolute; /* Position it absolutely within the parent */
    bottom: 0; /* Align to the bottom */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Adjust for centering */
    height: 200px; /* Set the height to 200px */
    width: 100%; /* Ensure it takes the full width */
    display: flex; /* Use flexbox */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    padding-bottom: 20px; /* Optional: Add some padding from the bottom */
}



.phone-icon {
    position: absolute; /* Position it absolutely within the start-container */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust for centering */
    width: 50px; /* Set the width of the image */
    height: auto; /* Maintain aspect ratio */
    pointer-events: none; /* Prevent the image from blocking button clicks */
}

@keyframes flash {
    0%, 100% {
        color: rgb(128, 0, 0); /* Start and end with green */
    }
    50% {
        color: white; /* Flash to white */
    }
}

@keyframes bulge {
    0%, 100% {
        transform: scale(1); /* Normal size */
    }
    50% {
        transform: scale(1.2); /* Bulge effect */
    }
}

.flash-bulge {
    animation: flash 0.6s linear 5, bulge 0.6s ease-in-out 5; /* Flash and bulge 5 times */
}