/* Critical CSS for Smart Directory Pro */

/* Base styles */
:root {
    --primary: #0070f3;
    --primary-foreground: #ffffff;
    --secondary: #f7f7f7;
    --secondary-foreground: #000000;
    --background: #ffffff;
    --foreground: #000000;
    --muted: #f5f5f5;
    --muted-foreground: #737373;
    --border: #e5e5e5;
    --ring: #0070f3;
}

/* Essential layout styles */
.business-content {
    line-height: 1.8;
    font-size: 17px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.business-content p {
    margin-bottom: 1.4em;
    text-align: justify;
    line-height: 1.8;
    word-spacing: 0.05em;
}

.business-content p:last-child {
    margin-bottom: 0;
}

/* Card styles */
.card-hover {
    transition: all 0.3s ease-in-out;
}

.card-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Button styles */
.btn-gradient {
    background: linear-gradient(45deg, var(--primary), #0051cc);
    color: var(--primary-foreground);
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    background: linear-gradient(45deg, #0051cc, var(--primary));
    transform: translateY(-1px);
}

/* Essential animations */
@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Critical layout utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Essential responsive utilities */
@media (min-width: 768px) {
    .md\:flex {
        display: flex;
    }
    .md\:hidden {
        display: none;
    }
}

@media (max-width: 767px) {
    .hidden.md\:flex {
        display: none;
    }
} 