@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --primary-color: #0d9488; /* teal-500 */
  --secondary-color: #6366f1; /* indigo-500 */
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #111827; /* gray-900 */
  color: #f3f4f6; /* gray-100 */
}

.font-playfair {
  font-family: 'Playfair Display', serif;
}

/* Custom animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out;
}

/* Testimonial slider custom styles */
.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  transition: transform 0.5s ease-in-out;
}

/* Form styling */
#consultation-form input,
#consultation-form textarea {
  transition: all 0.3s ease;
}

#consultation-form input:focus,
#consultation-form textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-content {
    padding-top: 2rem;
  }
  
  .booking-section {
    padding: 1.5rem;
  }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1f2937;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0f766e;
}

/* Feather icons sizing */
.feather {
  width: 1em;
  height: 1em;
}