/* Home Page (Index.cshtml) Styles */

/* Hero Section */
.home-hero {
    background: var(--primary);
    border-radius: 0 0 2.5rem 2.5rem;
}

.home-hero-logo {
    height: 48px;
    margin-right: 16px;
}

.home-hero-title {
    font-size: 2rem;
    color: var(--accent);
}

/* Quick Summary Alert */
.home-summary-alert {
    background: var(--accent);
    color: #fff;
    font-size: 1.15rem;
}

/* Unique Features Section */
.unique-features {
    padding: 3rem 0;
}

.unique-features h2 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 2rem;
}

/* Feature Cards with Gradients */
.feature-card-auction {
    background: linear-gradient(135deg, var(--primary) 0%, #6366f1 100%);
    border-radius: 1rem;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card-auction:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(90, 74, 227, 0.25);
}

.feature-card-menu {
    background: linear-gradient(135deg, var(--accent) 0%, #059669 100%);
    border-radius: 1rem;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card-menu:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 210, 197, 0.25);
}

.feature-card-auction h3,
.feature-card-menu h3 {
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card-auction p,
.feature-card-menu p {
    opacity: 0.95;
    margin-bottom: 1.25rem;
}

/* Comparison Table */
.home-comparison-table {
    border-radius: 0.75rem;
    overflow: hidden;
}

.home-comparison-table thead {
    background: rgba(90, 74, 227, 0.05);
}

.home-comparison-table th,
.home-comparison-table td {
    padding: 1rem;
    vertical-align: middle;
}

.home-comparison-table .text-success {
    color: #00b894 !important;
}

/* Benefits List */
.home-benefits-list .list-group-item {
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
}

.home-benefits-list .list-group-item:hover {
    border-left-color: var(--primary);
    background: rgba(90, 74, 227, 0.03);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .home-hero {
        border-radius: 0 0 1.5rem 1.5rem;
        padding: 2rem 1rem;
    }

    .home-hero-logo {
        height: 40px;
        margin-right: 12px;
    }

    .home-hero-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .home-hero-logo {
        height: 36px;
        margin-right: 8px;
    }

    .home-hero-title {
        font-size: 1.25rem;
    }

    .unique-features .row > div {
        margin-bottom: 1rem;
    }

    .feature-card-auction,
    .feature-card-menu {
        margin-bottom: 1rem;
    }

    .home-summary-alert {
        font-size: 1rem;
    }

    .home-comparison-table th,
    .home-comparison-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .home-hero {
        border-radius: 0 0 1rem 1rem;
    }

    .home-hero h1 {
        font-size: 1.5rem;
    }

    .home-hero .lead {
        font-size: 1rem;
    }
}