/* FocusDrive Website Styles */

/* Base Typography */
body {
  font-family: "Roboto Mono", monospace;
}

/* Animations */

/* Phone Mockup Hover Effects */
.phone-mockup-hover {
  transition: transform 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.phone-mockup-hover:hover {
  transform: scale(1.02);
  border-color: #404040;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  max-width: 95vw;
  max-height: 95vh;
  position: relative;
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-image {
  width: auto;
  height: auto;
  max-width: 95vw;
  max-height: 95vh;
  border: 1px solid #404040;
  object-fit: contain;
}

.close-modal {
  position: fixed;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 50px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  border-radius: 50%;
  transition: background-color 0.2s;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.close-modal:hover {
  color: rgb(157, 156, 156);
}
