/* ImajSuite Custom Component Styles */
/* These replace Tailwind @apply directives that don't work with CDN */

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #1f2937;
    -webkit-font-smoothing: antialiased;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background: linear-gradient(to right, #1a73e8, #0d47a1);
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    transition: all 0.3s;
}

.btn-primary:hover {
    background: linear-gradient(to right, #1565c0, #1a237e);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    border: 2px solid #1a73e8;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a73e8;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #1a73e8;
    color: white;
}

.section-padding {
    padding: 4rem 1rem;
}

@media (min-width: 640px) {
    .section-padding {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .section-padding {
        padding: 6rem 2rem;
    }
}

.container-main {
    margin-left: auto;
    margin-right: auto;
    max-width: 80rem;
}

.card {
    border-radius: 0.75rem;
    background-color: white;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    transition: all 0.3s;
}

.card:hover {
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    transform: translateY(-0.25rem);
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1a237e;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-subtitle {
    margin-top: 1rem;
    font-size: 1.125rem;
    color: #78909c;
}

.gradient-bg {
    background: linear-gradient(to bottom right, #1a237e, #0d47a1, #1565c0);
}
