/* Custom styles for HopsPedia Bootstrap version */

/* Hover effects for cards */
.hover-shadow {
    transition: all 0.3s ease;
}

.hover-shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

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

/* Custom navbar styling */
.navbar-brand {
    transition: opacity 0.3s ease;
}

.navbar-brand:hover {
    opacity: 0.8;
}

/* Hero gradient background */
.bg-gradient {
    background: linear-gradient(135deg, #198754 0%, #0d6efd 100%);
}

/* Custom card styling */
.card {
    border: none;
    transition: all 0.3s ease;
}

.card-header {
    border-bottom: none;
    font-weight: 600;
}

/* Badge styling */
.badge {
    font-weight: 500;
    padding: 0.375rem 0.75rem;
}

/* Breadcrumb styling */
.breadcrumb {
    background-color: transparent;
    padding: 0;
}

/* List group item hover */
.list-group-item-action:hover {
    background-color: #f8f9fa;
}

/* Responsive flavor chart */
#flavor-chart {
    max-width: 100%;
    height: auto !important;
}

/* Footer styling */
footer {
    margin-top: auto;
}

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

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

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

/* Alert custom styling */
.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

/* Section spacing */
section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}