/* Home Page Specific Styles */


/* Card Price and Tags */

.card-price {
    display: inline-block;
    background-color: #0066cc;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 10px;
}

.card-tag {
    display: inline-block;
    background-color: #ffd700;
    color: #333;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 10px;
}


/* Home Sections */

.home-sections {
    padding: 40px 0;
    text-align: center;
}

.home-sections h2 {
    margin-bottom: 40px;
}

.home-sections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.home-section {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.home-section-icon {
    width: 60px;
    height: 60px;
    background-color: #e1f5fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.home-section-icon svg {
    color: #0066cc;
}

.home-section h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.home-section p {
    color: #555;
    margin-bottom: 20px;
}

.home-section-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.home-section-link::after {
    content: "→";
    margin-left: 5px;
    transition: transform 0.2s ease;
}

.home-section-link:hover::after {
    transform: translateX(3px);
}


/* Enhanced Card Container */

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}


/* Enhanced Buttons Container */

.buttons-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px auto;
    max-width: 1200px;
}


/* Responsive Styles */

@media (max-width: 768px) {
    .home-sections-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .home-sections-grid {
        grid-template-columns: 1fr;
    }
}