/* Custom styles */
:root {
    --gradient-start: #eb3a34;  /* Indigo 600 */
    --gradient-end: #ba150f;    /* Purple 600 */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.5;
    color: #1F2937;
}

a:link {
  text-decoration: none;
}


.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-gradient {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
}

.nav-blur {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Typography enhancements */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.025em;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .md\:text-6xl {
        font-size: 3.75rem;
        line-height: 1.1;
        letter-spacing: -0.03em;
    }
}

/* Tailwind utility classes */
.fixed { position: fixed; }
.relative { position: relative; }
.w-full { width: 100%; }
.z-50 { z-index: 50; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.bg-white { background-color: #ffffff; }
.bg-gray-50 { background-color: #F9FAFB; }
.bg-blue-600 { background-color: var(--gradient-start); }
.text-white { color: #ffffff; }
.text-blue-600 { color: var(--gradient-start); }
.text-gray-600 { color: #4B5563; }
.text-gray-800 { color: #1F2937; }
.text-green-500 { color: #10B981; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-16 { margin-bottom: 4rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-6 { margin-left: 1.5rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-4 { margin-right: 1rem; }
.mt-8 { margin-top: 2rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pt-16 { padding-top: 4rem; }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-lg { 
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 
                0 4px 6px -2px rgba(0, 0, 0, 0.05); 
}
.shadow-xl { 
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 
                0 10px 10px -5px rgba(0, 0, 0, 0.04); 
}
.shadow-2xl { 
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); 
}

/* Enhanced transitions */
.transition-colors { 
    transition-property: color, background-color, border-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.transition { 
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.duration-300 { transition-duration: 300ms; }

/* Enhanced hover states */
.hover\:bg-blue-50:hover { background-color: #EFF6FF; }
.hover\:bg-blue-700:hover { background-color: #4338CA; }
.hover\:text-blue-600:hover { color: var(--gradient-start); }
.hover\:shadow-xl:hover { 
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 
                0 10px 10px -5px rgba(0, 0, 0, 0.04); 
}

/* Images */
.object-cover { object-fit: cover; }
.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }
.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }
.w-8 { width: 2rem; }
.h-8 { height: 2rem; }
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }
.w-48 { width: 12rem; }
.h-48 { height: 12rem; }

/* Aspect ratio */
.aspect-video { aspect-ratio: 16 / 9; }

/* Media queries */
@media (min-width: 768px) {
    .md\:flex { display: flex; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:w-1/2 { width: 50%; }
    .md\:mt-0 { margin-top: 0; }
}