
/* 
 * Varellion BizMart - Corporate Efficiency Design System
 * Theme: Midnight Blue & Platinum
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Oswald:wght@400;500;700&display=swap');

:root {
    --midnight-blue: #0f172a;
    --corporate-blue: #1e293b;
    --platinum: #e2e8f0;
    --accent-gold: #d4af37;
    --success-green: #10b981;
    --text-dark: #1e293b;
    --text-light: #f8fafc;
    --border-color: #cbd5e1;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f1f5f9;
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    color: var(--midnight-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: var(--midnight-blue);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-gold);
}

/* Navbar */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--midnight-blue) !important;
}

.navbar-brand span {
    color: var(--accent-gold);
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 1rem;
    margin: 0 10px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Buttons */
.btn-biz {
    background: var(--midnight-blue);
    color: #fff;
    border: 2px solid var(--midnight-blue);
    padding: 10px 30px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-biz:hover {
    background: #fff;
    color: var(--midnight-blue);
}

.btn-outline-biz {
    background: transparent;
    color: var(--midnight-blue);
    border: 2px solid var(--midnight-blue);
    padding: 10px 30px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 0;
}

.btn-outline-biz:hover {
    background: var(--midnight-blue);
    color: #fff;
}

/* Hero Section */
.hero-section {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, var(--midnight-blue) 0%, var(--corporate-blue) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--platinum);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

/* Cards */
.biz-card {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    border-radius: 0;
    position: relative;
}

.biz-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--midnight-blue);
}

.card-icon {
    font-size: 2rem;
    color: var(--midnight-blue);
    margin-bottom: 1.5rem;
    background: var(--platinum);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Deal Cards (Dashboard Style) */
.deal-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.deal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
}

.deal-logo {
    max-height: 40px;
    max-width: 100px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.deal-card:hover .deal-logo {
    filter: grayscale(0%);
}

.discount-badge {
    background: var(--success-green);
    color: #fff;
    padding: 4px 8px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
}

.deal-body {
    padding: 1.5rem;
}

.deal-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 1rem;
}

/* Sections */
.section-padding {
    padding: 5rem 0;
}

.section-title {
    margin-bottom: 3rem;
    position: relative;
    padding-left: 20px;
    border-left: 5px solid var(--accent-gold);
}

.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

/* Stats Section */
.stats-section {
    background: #fff;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--midnight-blue);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--midnight-blue);
    color: #fff;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer h5 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer a {
    display: block;
    color: var(--platinum);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer a:hover {
    color: var(--accent-gold);
    opacity: 1;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Utilities */
.text-gold { color: var(--accent-gold) !important; }
.bg-light-blue { background-color: #f1f5f9 !important; }
