Spaces:
Running
Running
File size: 1,495 Bytes
831fdd1 6906373 831fdd1 6906373 831fdd1 6906373 831fdd1 6906373 831fdd1 6906373 831fdd1 6906373 831fdd1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 | @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;
} |