/* Custom Venom Codes CSS */

/* Animated V Logo */
.v-logo-animated {
    animation: vLogoFloat 3s ease-in-out infinite;
}

@keyframes vLogoFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-5px) rotate(2deg);
    }
}

/* Venom Accent Colors */
:root {
    --venom-accent-ocean: #0ea5e9;
    /* Sky Blue */
    --venom-accent-emerald: #10b981;
    /* Emerald Green */
    --venom-accent-crimson: #ef4444;
    /* Crimson Red */
    --venom-accent-amber: #f59e0b;
    /* Amber Yellow */
    --venom-accent-violet: #8b5cf6;
    /* Violet Purple */
    --venom-accent: var(--venom-accent-violet);
    /* Default accent */
    --venom-accent-secondary: var(--venom-accent-crimson);
    /* Secondary accent */
}

/* Venom-themed buttons */
.btn-venom {
    background: linear-gradient(135deg, var(--venom-accent) 0%, var(--venom-accent-secondary) 100%);
    border: none;
    color: white;
    font-weight: bold;
    padding: 12px 24px;
    transition: all 0.3s ease;
}

.btn-venom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline-venom {
    border: 2px solid var(--venom-accent);
    color: var(--venom-accent);
    font-weight: bold;
    padding: 10px 22px;
    transition: all 0.3s ease;
}

.btn-outline-venom:hover {
    background: var(--venom-accent);
    color: white;
    transform: translateY(-2px);
}

/* Pricing Card Styles */
.venom-pricing-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.venom-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.venom-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--venom-accent) 0%, var(--venom-accent-secondary) 100%);
}

.venom-pricing-card.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--venom-accent);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
}

.venom-pricing-card .plan-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.venom-pricing-card .plan-price {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--venom-accent);
}

.venom-pricing-card .plan-price span {
    font-size: 1rem;
    color: #666;
    font-weight: normal;
}

.venom-pricing-card .plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
}

.venom-pricing-card .plan-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.venom-pricing-card .plan-features li:last-child {
    border-bottom: none;
}

.venom-pricing-card .plan-features li i {
    margin-right: 10px;
    color: var(--venom-accent);
}

/* Feature Item Styles */
.venom-feature-item {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    height: 100%;
}

.venom-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.venom-feature-item .feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--venom-accent, #7c3aed) 0%, var(--venom-accent-secondary, #f43f5e) 100%);
    color: white;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.venom-feature-item h4 {
    margin-bottom: 15px;
    color: #333;
}

.venom-feature-item p {
    color: #666;
    margin-bottom: 0;
}

/* Hero Section */
.venom-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f0f9ff 0%, #fdf2f8 100%);
    position: relative;
    overflow: hidden;
}

.venom-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(124, 58, 237, 0.1) 0%, transparent 40%),
        radial-gradient(circle at bottom left, rgba(244, 63, 94, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.venom-hero .hero-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
}

.venom-hero .hero-logo svg {
    width: 100%;
    height: 100%;
}

.venom-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a202c;
}

.venom-hero .lead {
    font-size: 1.25rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Features Section */
.venom-features {
    padding: 100px 0;
}

/* Authentication Page Styles */
.venom-auth-page {
    min-height: 100vh;
}

.venom-auth-branding {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.venom-auth-form {
    padding: 2rem;
}

.auth-logo {
    width: 100px;
    height: 100px;
}

.auth-logo svg {
    width: 100%;
    height: 100%;
}

.auth-slogan {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0.5rem 0;
}

.auth-benefits {
    list-style: none;
    padding: 0;
    text-align: left;
}

.auth-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.auth-benefits li i {
    margin-right: 0.75rem;
}

/* Theme Toggle Button */
.venom-theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--venom-accent);
}

.venom-theme-toggle:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

/* Jump to Top Button */
#jumpToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--venom-accent);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#jumpToTop.show {
    opacity: 1;
    visibility: visible;
}

#jumpToTop:hover {
    background: var(--venom-accent-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Dark Theme Support */
[data-theme="dark"] {
    --bg-header: #1a1a2e;
    --bg-footer: #16213e;
    --border-color: #4cc9f0;
    --text-color: #e6e6e6;
    --text-color-secondary: #cccccc;
    --bg-card: #1e1e2e;
    --bg-body: #0f0f23;
}

[data-theme="dark"] body {
    background-color: var(--bg-body);
    color: var(--text-color);
}

[data-theme="dark"] .card,
[data-theme="dark"] .venom-pricing-card,
[data-theme="dark"] .venom-feature-item {
    background: var(--bg-card);
    color: var(--text-color);
}

[data-theme="dark"] .venom-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e1f29 100%);
}

[data-theme="dark"] .venom-hero h1,
[data-theme="dark"] .venom-hero .lead {
    color: var(--text-color);
}

[data-theme="dark"] .text-muted {
    color: var(--text-color-secondary) !important;
}

[data-theme="dark"] .form-control {
    background-color: #2d3748;
    border-color: #4a5568;
    color: var(--text-color);
}

[data-theme="dark"] .form-control:focus {
    background-color: #2d3748;
    border-color: var(--venom-accent);
    color: var(--text-color);
}

[data-theme="dark"] .btn {
    color: white;
}

[data-theme="dark"] .table {
    color: var(--text-color);
}

[data-theme="dark"] .table th,
[data-theme="dark"] .table td {
    border-color: #4a5568;
}

[data-theme="dark"] .border-top,
[data-theme="dark"] .border-bottom {
    border-color: #4a5568 !important;
}

[data-theme="dark"] .bg-light {
    background-color: #1a1a2e !important;
}

[data-theme="dark"] .text-white {
    color: var(--text-color) !important;
}

[data-theme="dark"] .text-white-50 {
    color: var(--text-color-secondary) !important;
}