/* Import Font Awesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

body {
    font-family: 'Proxima Nova',Arial,Helvetica,sans-serif;
}

.search--row {
  background-color: #6E1E73 !important;
  padding: 50px 0;
}

.search--row .text-center {
  margin-bottom: 1em !important;
  color: #fff;
}

.search--row .row-title a {
    color: #fff !important;
  }

ul.history-path:last-child li:last-child a {
    color: #f9f9f9 !important;
}

.search--row ul.history-path li:not(:last-child) > a, .header--nav a {
    color: #fff !important;
    padding: 0 15px;
    border: 1px solid #fff;
    border-radius: 4px;
    transition: background, color 0.3s;
}

.search--row ul.history-path li:not(:last-child) > a, .header--nav a:hover {
    color: #510658 !important;
    background-color: #fff;
}

/* Categories Grid Styles */
.categories-grid {
    margin-bottom: 60px;
    padding: 40px 0;
}

.categories-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    font-weight: 600;
    color: #333;
}

.category-cards {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 20px;
}

.category-card {
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 350px;
    height: 350px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: box-shadow 0.3s ease;
    padding: 15px;
}

.category-card a:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.category-icon {
    font-size: 10.5rem;
    color: #6E1E73;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-name {
    font-size: 1.95rem;
    font-weight: bold;
    color: #333;
    margin: 0;
    text-align: center;
    line-height: 3.2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .category-cards {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .category-card {
        margin: 10px;
    }
}

@media (max-width: 480px) {
    .categories-title {
        font-size: 1.5rem;
    }
    
    .category-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .category-card {
        margin: 10px 0;
    }
}