/* Custom styles for Domain Checker */

/* Hero section */
.hero {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
}

/* Tool cards */
.tool-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    border-radius: 12px;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

/* Breadcrumb customization */
.breadcrumb {
    background-color: transparent;
    padding: 0;
}

/* Form styling */
.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.btn {
    border-radius: 6px;
}

/* Progress bar */
.progress {
    height: 8px;
}

.progress-bar {
    background-color: #0d6efd;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }
    
    .hero {
        text-align: center;
        padding: 2rem 0;
    }
}