/* GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800;900&family=Inter:wght@400;500;600;700&display=swap');

/* DESIGN TOKENS (EXACTLY FROM ORIGINAL INDEX.CSS) */
:root {
    --background: 220 20% 6%;
    --foreground: 40 20% 95%;
    --card: 220 18% 10%;
    --card-foreground: 40 20% 95%;
    --popover: 220 18% 10%;
    --popover-foreground: 40 20% 95%;
    --primary: 40 90% 50%;
    --primary-foreground: 220 20% 6%;
    --secondary: 220 15% 15%;
    --secondary-foreground: 40 20% 95%;
    --muted: 220 15% 18%;
    --muted-foreground: 220 10% 60%;
    --accent: 40 70% 45%;
    --accent-foreground: 220 20% 6%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 210 40% 98%;
    --border: 220 15% 20%;
    --input: 220 15% 20%;
    --ring: 40 90% 50%;
    --radius: 0.5rem;

    --gradient-gold: linear-gradient(135deg, hsl(40, 90%, 50%) 0%, hsl(35, 85%, 40%) 100%);
    --gradient-dark: linear-gradient(180deg, hsl(220, 20%, 8%) 0%, hsl(220, 20%, 4%) 100%);
    --gradient-hero: linear-gradient(180deg, transparent 0%, hsl(220, 20%, 6%) 100%);
    --shadow-gold: 0 4px 30px -5px hsl(40 90% 50% / 0.3);
    --shadow-card: 0 10px 40px -10px hsl(0 0% 0% / 0.5);
    
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-color: hsl(var(--border));
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
}

/* TAILWIND UTILITIES (PRECISELY IMPLEMENTED) */
.min-h-screen { min-height: 100vh; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.text-center { text-align: center; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.flex-shrink-0 { flex-shrink: 0; }

/* SPACING */
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pb-12 { padding-bottom: 3rem; }
.pt-1 { padding-top: 0.25rem; }
.pt-4 { padding-top: 1rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-2 { margin-top: 0.5rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.-mt-32 { margin-top: -8rem; }

/* COLORS & BACKGROUNDS */
.bg-background { background-color: hsl(var(--background)); }
.bg-card { background-color: hsl(var(--card)); }
.bg-card\/30 { background-color: hsla(var(--card), 0.3); }
.bg-card\/50 { background-color: hsla(var(--card), 0.5); }
.bg-background\/50 { background-color: hsla(var(--background), 0.5); }
.bg-primary\/10 { background-color: hsla(var(--primary), 0.1); }
.bg-primary\/20 { background-color: hsla(var(--primary), 0.2); }
.bg-black { background-color: #000; }

.text-foreground { color: hsl(var(--foreground)); }
.text-foreground\/90 { color: hsla(var(--foreground), 0.9); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-muted-foreground\/60 { color: hsla(var(--muted-foreground), 0.6); }
.text-primary { color: hsl(var(--primary)); }

/* TYPOGRAPHY */
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.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; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

/* BORDERS & RADIUS */
.border { border: 1px solid hsl(var(--border)); }
.border-t { border-top: 1px solid hsl(var(--border)); }
.border-border\/30 { border-color: hsla(var(--border), 0.3); }
.border-border\/50 { border-color: hsla(var(--border), 0.5); }
.border-primary\/20 { border-color: hsla(var(--primary), 0.2); }
.border-primary\/30 { border-color: hsla(var(--primary), 0.3); }
.rounded-lg { border-radius: var(--radius); }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }

/* SIZES & RATIOS */
.w-10 { width: 2.5rem; }
.h-10 { height: 2.5rem; }
.w-14 { width: 3.5rem; }
.h-14 { height: 3.5rem; }
.w-full { width: 100%; }
.max-w-md { max-width: 28rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-video { aspect-ratio: 16 / 9; }
.aspect-\[4\/5\] { aspect-ratio: 4 / 5; }
.max-h-\[70vh\] { max-height: 70vh; }

/* IMAGES & EFFECTS */
.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-top { object-position: top; }
.transition-all { transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1); }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }

/* ORIGINAL LOVABLE COMPONENTS (EXACTLY AS DEFINED IN SRC/INDEX.CSS) */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    background: var(--gradient-gold);
    color: hsl(var(--primary-foreground));
    box-shadow: var(--shadow-gold);
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 40px -5px hsl(40 90% 50% / 0.5);
}

.section-container {
    width: 100%;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.highlight-box {
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid hsla(40, 70%, 45%, 0.3);
    background: linear-gradient(135deg, hsl(220, 18%, 12%) 0%, hsl(220, 18%, 8%) 100%);
}

.gradient-text {
    background: linear-gradient(135deg, hsl(40, 90%, 55%) 0%, hsl(35, 80%, 45%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* GRADIENT UTILITIES */
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.from-background { --tw-gradient-from: hsl(var(--background)); --tw-gradient-to: hsla(var(--background), 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.via-background\/95 { --tw-gradient-to: hsla(var(--background), 0.95); --tw-gradient-stops: var(--tw-gradient-from), hsla(var(--background), 0.95), var(--tw-gradient-to); }
.via-background\/90 { --tw-gradient-to: hsla(var(--background), 0.9); --tw-gradient-stops: var(--tw-gradient-from), hsla(var(--background), 0.9), var(--tw-gradient-to); }
.via-background\/60 { --tw-gradient-to: hsla(var(--background), 0.6); --tw-gradient-stops: var(--tw-gradient-from), hsla(var(--background), 0.6), var(--tw-gradient-to); }
.to-background { --tw-gradient-to: hsl(var(--background)); }
.to-transparent { --tw-gradient-to: transparent; }
.from-card\/50 { --tw-gradient-from: hsla(var(--card), 0.5); --tw-gradient-to: hsla(var(--card), 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }

/* ANIMATIONS */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 30px -5px hsl(40 90% 50% / 0.3); }
    50% { box-shadow: 0 4px 40px -5px hsl(40 90% 50% / 0.5); }
}
.animate-pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }

/* RESPONSIVE (SM, MD, LG) */
@media (min-width: 640px) {
    .sm\:aspect-video { aspect-ratio: 16 / 9; }
    .sm\:-mt-40 { margin-top: -10rem; }
    .sm\:text-lg { font-size: 1.125rem; }
    .sm\:text-xl { font-size: 1.25rem; }
    .sm\:text-3xl { font-size: 1.875rem; }
    .sm\:text-4xl { font-size: 2.25rem; }
    .sm\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
    .sm\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
    .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .sm\:w-auto { width: auto; }
    .sm\:mb-12 { margin-bottom: 3rem; }
    .sm\:p-8 { padding: 2rem; }
    .sm\:p-5 { padding: 1.25rem; }
}
@media (min-width: 768px) {
    .md\:text-2xl { font-size: 1.5rem; }
    .md\:text-4xl { font-size: 2.25rem; }
    .md\:text-5xl { font-size: 3rem; }
}
@media (min-width: 1024px) {
    .lg\:text-6xl { font-size: 3.75rem; }
}
