/*
Theme Name: VV
Theme URI: https://example.com
Description: VV Theme
Version: 1.0.0
Author: Author
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vv-theme
*/

:root {
    --primary: #007bff;
    --primary-foreground: #ffffff;
    --background: #ffffff;
    --foreground: #000000;
    --card: #ffffff;
    --card-foreground: #000000;
    --muted: #f5f5f5;
    --muted-foreground: #666666;
    --border: #e5e5e5;
    --ring: #007bff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

/* Tailwind CSS Utilities */
.container { max-width: 1280px; margin: 0 auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.pt-8 { padding-top: 2rem; }
.pb-8 { padding-bottom: 2rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }

.flex { display: flex; }
.flex-1 { flex: 1; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-12 { gap: 3rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.lg\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.lg\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.lg\:text-left { text-align: left; }
.lg\:text-6xl { font-size: 3.75rem; }
.lg\:text-5xl { font-size: 3rem; }
.lg\:justify-center { justify-content: center; }

.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-primary { color: var(--primary); }
.text-foreground { color: var(--foreground); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-green-600 { color: #16a34a; }
.text-white { color: #ffffff; }

.bg-card { background-color: var(--card); }
.bg-background { background-color: var(--background); }
.bg-muted { background-color: var(--muted); }
.bg-muted\/30 { background-color: rgba(245, 245, 245, 0.3); }
.bg-primary { background-color: var(--primary); }
.bg-primary\/10 { background-color: rgba(0, 123, 255, 0.1); }
.bg-primary\/5 { background-color: rgba(0, 123, 255, 0.05); }
.bg-primary\/20 { background-color: rgba(0, 123, 255, 0.2); }
.bg-green-50 { background-color: #f0fdf4; }
.bg-blue-50 { background-color: #eff6ff; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.from-background { --tw-gradient-from: var(--background); }
.from-primary\/10 { --tw-gradient-from: rgba(0, 123, 255, 0.1); }
.from-primary\/20 { --tw-gradient-from: rgba(0, 123, 255, 0.2); }
.from-primary\/5 { --tw-gradient-from: rgba(0, 123, 255, 0.05); }
.to-primary\/3 { --tw-gradient-to: rgba(0, 123, 255, 0.03); }
.to-primary\/60 { --tw-gradient-to: rgba(0, 123, 255, 0.6); }
.to-transparent { --tw-gradient-to: transparent; }
.bg-clip-text { background-clip: text; }
.text-transparent { color: transparent; }

.border { border: 1px solid var(--border); }
.border-2 { border: 2px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }
.border-b { border-bottom: 1px solid var(--border); }
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }
.rounded-2xl { border-radius: 1rem; }

.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); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }
.drop-shadow-2xl { filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)); }

.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.-top-10 { top: -2.5rem; }
.-right-10 { right: -2.5rem; }
.-bottom-10 { bottom: -2.5rem; }
.-left-10 { left: -2.5rem; }
.-top-24 { top: -6rem; }
.-right-24 { right: -6rem; }
.-bottom-24 { bottom: -6rem; }
.-left-24 { left: -6rem; }
.-z-10 { z-index: -10; }
.z-10 { z-index: 10; }

.h-4 { height: 1rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-32 { height: 8rem; }
.h-72 { height: 18rem; }
.h-96 { height: 24rem; }
.w-4 { width: 1rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-32 { width: 8rem; }
.w-72 { width: 18rem; }
.w-96 { width: 24rem; }
.w-full { width: 100%; }
.max-w-sm { max-width: 24rem; }
.max-w-lg { max-width: 32rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-7xl { max-width: 80rem; }

.transition { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

.blur-3xl { filter: blur(64px); }
.opacity-0 { opacity: 0; }
.opacity-1 { opacity: 1; }

.hover\:border-primary:hover { border-color: var(--primary); }
.hover\:text-foreground:hover { color: var(--foreground); }
.hover\:text-vircs-primary:hover { color: var(--primary); }
.hover\:bg-accent:hover { background-color: var(--muted); }
.hover\:bg-muted:hover { background-color: var(--muted); }
.hover\:text-accent-foreground:hover { color: var(--foreground); }
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:opacity-100:hover { opacity: 1; }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:scale-150 { transform: scale(1.5); }
.group:hover .group-hover\:shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }

.scale-1 { transform: scale(1); }

.sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
.lg\:text-2xl { font-size: 1.5rem; }

.inline-flex { display: inline-flex; }
.whitespace-nowrap { white-space: nowrap; }
.shrink-0 { flex-shrink: 0; }

.group { position: relative; }
.group\/card-header { position: relative; }

/* Custom styles */
.bg-card {
    background-color: var(--card);
    border: 1px solid var(--border);
}

.hover\:border-primary\/50:hover {
    border-color: rgba(0, 123, 255, 0.5);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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