/* Custom Fonts and Utilities */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap");

body {
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
}

.phone-frame {
  border: 8px solid #000;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  /* Ensure phone fits on small mobile screens */
  max-width: 100%;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 20px;
  background: #000;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 10;
}

/* Hover animations */
.feature-card {
  transition: all 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  background-color: #000;
  color: #fff;
}
.feature-card:hover i {
  color: #fff;
}
.feature-card:hover p {
  color: #ccc;
}

.btn-primary {
  transition: all 0.3s ease;
}
.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Hide scrollbar for clean look */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #fff;
}
::-webkit-scrollbar-thumb {
  background: #000;
}
