Spaces:
Running
Running
File size: 1,372 Bytes
70a5b8d dcc4025 70a5b8d dcc4025 70a5b8d dcc4025 70a5b8d dcc4025 70a5b8d dcc4025 70a5b8d dcc4025 70a5b8d | 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 | @tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--primary-color: #6366f1; /* indigo-500 as default */
--secondary-color: #f59e0b; /* amber-500 as default */
}
body {
font-family: 'Montserrat', sans-serif;
background-color: #f9fafb;
}
/* Custom button styles */
.btn-primary {
@apply bg-indigo-600 hover:bg-indigo-700 text-white font-bold py-3 px-6 rounded-lg transition duration-300;
}
.btn-secondary {
@apply bg-amber-500 hover:bg-amber-600 text-gray-900 font-bold py-3 px-6 rounded-lg transition duration-300;
}
/* Gradient backgrounds */
.bg-gradient-primary {
background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}
/* Card hover effect */
.card-hover {
transition: all 0.3s ease-in-out;
}
.card-hover:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
/* Section spacing */
.section-gap {
padding: 5rem 0;
}
/* Responsive adjustments */
@media (max-width: 768px) {
.hero-content {
padding: 2rem 1rem;
}
.slot-grid {
grid-template-columns: 1fr;
}
}
/* Animation for hero section */
@keyframes float {
0% {
transform: translateY(0px);
}
50% {
transform: translateY(-10px);
}
100% {
transform: translateY(0px);
}
}
.floating {
animation: float 3s ease-in-out infinite;
} |