/* HostingsLab - Custom Styles */

/* General */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Navbar */
.navbar-brand {
    font-size: 1.5rem;
}

.dropdown-menu-lg {
    min-width: 280px;
}

/* Cards */
.card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1) !important;
}

/* Buttons */
.btn-success {
    background-color: #198754;
    border-color: #198754;
}

.btn-success:hover {
    background-color: #157347;
    border-color: #146c43;
}

.btn-outline-success {
    color: #198754;
    border-color: #198754;
}

.btn-outline-success:hover {
    background-color: #198754;
    border-color: #198754;
    color: #fff;
}

/* Rating Stars */
.text-warning {
    color: #ffc107 !important;
}

/* Footer */
footer a.text-white-50:hover {
    color: #fff !important;
}

/* Tables */
.table th {
    font-weight: 600;
}

/* Badges */
.badge {
    font-weight: 500;
}

/* Forms */
.form-control:focus,
.form-select:focus {
    border-color: #198754;
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

/* Alerts */
.alert {
    border: none;
}

/* Breadcrumb */
.breadcrumb-item a {
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

/* Provider Cards */
.provider-card {
    border-left: 4px solid #198754;
}

/* Comparison Table */
.table-hover tbody tr:hover {
    background-color: rgba(25, 135, 84, 0.05);
}

/* Quiz */
.question button:hover {
    transform: translateX(5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.75rem;
    }

    .display-6 {
        font-size: 1.5rem;
    }

    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
}

/* Loading Spinner */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* Tool Cards */
.tool-card {
    cursor: pointer;
}

.tool-card:hover {
    border-color: #198754;
}

/* Scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background-color: rgba(25, 135, 84, 0.2);
}
