/* Custom CSS Styles */

/* Base styles */
body {
  font-family: 'Source Sans Pro', sans-serif;
  color: #333333;
  line-height: 1.6;
}

/* Animation for the bounce effect */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}


.animate-bounce {
  animation: bounce 2s infinite;
}

/* Section title styling */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: #580100;
  margin-bottom: 1.5rem;
}

/* Form input styling */
.form-input {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #D7B15C;
  box-shadow: 0 0 0 3px rgba(215, 177, 92, 0.2);
}

/* Team cards hover effect */
.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.team-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(88, 1, 0, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

/* Testimonial card styling */
.testimonial-card {
  background-color: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  height: 100%;
}

/* Practice cards hover effect */
.practice-card {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.practice-card: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);
}

/* Custom colors */
.text-burgundy {
  color: #580100;
}

.bg-burgundy {
  background-color: #580100;
}

.text-gold {
  color: #D7B15C;
}

.bg-gold {
  background-color: #D7B15C;
}

.text-dark-gray {
  color: #333333;
}

.bg-dark-gray {
  background-color: #333333;
}

/* Hero section overlay */
.bg-overlay {
  background-color: rgba(0, 0, 0, 0.7);
}

/* Section divider */
.section-divider {
  width: 5rem;
  height: 0.25rem;
  background-color: #D7B15C;
  margin: 1.5rem auto;
}
