/* The Migrate Hub - Global Styles */
/* Professional Corporate Design System */

/* ===================================
   CSS VARIABLES - BRAND COLORS
   =================================== */
:root {
    --brand-gold: #b8a05a;
    --brand-gold-dark: #a88c4a;
    --brand-gold-light: #cbac6a;
    --brand-dark: #111111;
    --corporate-gray: #64748b;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-700: #374151;
    --gray-900: #111827;
}

/* ===================================
   BASE STYLES
   =================================== */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: var(--corporate-gray);
    background-color: #ffffff;
    scroll-behavior: smooth;
}

/* ===================================
   PROFESSIONAL BUTTONS
   =================================== */
.btn-primary {
    background-color: var(--brand-dark) !important;
    border: 1px solid var(--brand-dark);
    color: white;
    font-weight: 500;
    border-radius: 0.125rem; /* rounded-sm like your app */
    padding: 0.75rem 1.5rem;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background-color: var(--brand-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--brand-gold);
    color: var(--brand-gold);
    font-weight: 500;
    border-radius: 0.125rem;
    padding: 0.75rem 1.5rem;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background-color: var(--brand-gold);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(203, 178, 106, 0.2);
}

/* ===================================
   PROFESSIONAL CARDS
   =================================== */
.corporate-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    padding: 2rem;
}

.corporate-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

/* ===================================
   SECTION STYLING
   =================================== */
.section-padding {
    padding: 5rem 0;
}

/* ===================================
   NAVIGATION
   =================================== */
.nav-brand-gold {
    color: var(--brand-gold);
}

.nav-brand-gold:hover {
    color: var(--brand-gold-light);
}

/* ===================================
   TEXT COLORS
   =================================== */
.text-brand-gold {
    color: var(--brand-gold);
}

.text-brand-dark {
    color: var(--brand-dark);
}

.text-corporate-gray {
    color: var(--corporate-gray);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-gradient {
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.85) 0%, rgba(17, 17, 17, 0.75) 100%);
}

.hero-bg {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('images/hero-bg-768.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
}

@media (min-width: 768px) {
    .hero-bg {
        background-image: 
            linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url('images/hero-bg-1024.webp');
        min-height: 700px;
    }
}

@media (min-width: 1024px) {
    .hero-bg {
        background-image: 
            linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url('images/hero-bg-1920.webp');
        min-height: 800px;
    }
}

@media (min-width: 1920px) {
    .hero-bg {
        background-image: 
            linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url('images/hero-bg-2560.webp');
        min-height: 900px;
    }
}

.hero-text {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 10;
}

/* ===================================
   PROFESSIONAL INPUTS
   =================================== */
.professional-input {
    border: 1px solid var(--gray-300);
    border-radius: 0.125rem;
    padding: 0.75rem 1rem;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    transition: all 0.2s ease-in-out;
}

.professional-input:focus {
    outline: none;
    border-color: var(--brand-gold);
    box-shadow: 0 0 0 2px rgba(203, 178, 106, 0.2);
}

/* ===================================
   PRICING CARDS
   =================================== */
.pricing-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--brand-gold);
    box-shadow: 0 4px 6px -1px rgba(203, 178, 106, 0.1);
    transform: translateY(-4px);
}

.pricing-featured {
    border-color: var(--brand-gold);
    box-shadow: 0 4px 6px -1px rgba(203, 178, 106, 0.2);
}

/* ===================================
   FEATURE ICONS
   =================================== */
.feature-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, rgba(203, 178, 106, 0.1) 0%, rgba(203, 178, 106, 0.2) 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

/* ===================================
   ANIMATIONS
   =================================== */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   MOBILE RESPONSIVE
   =================================== */
@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }
    
    .corporate-card {
        padding: 1.5rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
}
