/* Custom styles for TerritorySpark landing page */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Additional typography enhancements */
h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: -0.025em;
}

/* Custom focus states */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

/* Enhanced card hover effects */
.shadow-md {
  transition: all 0.3s ease;
}

.shadow-md:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Button hover animations */
.bg-blue-600 {
  transition: all 0.3s ease;
}

.bg-blue-600:hover {
  transform: translateY(-2px);
}

/* Form input styling */
input,
select,
textarea {
  transition: border-color 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #3b82f6;
}

/* Testimonial quote styling */
.italic {
  position: relative;
  padding-left: 1.5rem;
}

.italic::before {
  content: "\201C";
  position: absolute;
  left: 0;
  top: -0.5rem;
  font-size: 2rem;
  color: #3b82f6;
  font-family: serif;
}

/* Feature icon animation */
.text-3xl {
  transition: transform 0.3s ease;
}

.flex:hover .text-3xl {
  transform: scale(1.2);
}

/* Mobile menu animations */
#mobile-menu {
  transition: all 0.3s ease;
  max-height: 0;
  overflow: hidden;
}

#mobile-menu.show {
  max-height: 300px;
}

/* Image hover effects */
.rounded-lg {
  transition: all 0.3s ease;
}

.shadow-xl:hover {
  transform: scale(1.02);
}
