/* Custom styles that complement Tailwind */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Raleway:wght@300;400;500;600&display=swap');

body {
    font-family: 'Raleway', sans-serif;
    background-color: #f8f5f2;
    color: #2a2825;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #3a3630;
}

.btn-primary {
    background-color: white;
    color: #3a3630;
    border: 1px solid #d1c7b7;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #f0ebe5;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(58, 54, 48, 0.1);
}
/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom button animations */
.btn-hover {
    transition: all 0.3s ease;
    transform: translateY(0);
}

.btn-hover:hover {
    transform: translateY(-2px);
}

/* Custom shadow for cards */
.custom-shadow {
    box-shadow: 0 10px 15px -3px rgba(42, 46, 50, 0.1), 0 4px 6px -2px rgba(42, 46, 50, 0.05);
}
/* AR preview container styling */
.ar-preview {
    aspect-ratio: 16/9;
    background-color: #f3f4f6;
    border-radius: 0.75rem;
    overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}