/* LululuOne Light Theme Overrides */

body {
    padding-top: 0; 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1.05rem; /* Increased base size */
}

/* Fix navbar overlap */
.main {
    margin-top: 20px;
}

/* Navbar Tweaks */
.fixed-top {
    z-index: 1030;
}

/* Hide scrollbar */
.top-scroll::-webkit-scrollbar { display: none; }
.top-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Card Tweaks */
.card {
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 1.5rem; /* More vertical space between cards */
}
.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.list-group-item {
    border-color: rgba(0,0,0,0.05);
    padding: 1.25rem 1.5rem; /* Increased padding significantly */
}

/* Typography Improvements */
.list-group-item h5 {
    margin-bottom: 0.5rem !important; /* Space between title and description */
}

.list-group-item h5 a {
    font-size: 1.2rem; /* Larger, readable titles */
    font-weight: 600;
    line-height: 1.4;
    color: #2c3e50;
    text-decoration: none;
}
.list-group-item h5 a:hover {
    color: #007bff;
}

.list-group-item .text-muted {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #6c757d !important; /* Standard grey */
}

/* Footer Links */
.website a {
    color: #666;
    transition: color 0.2s;
}
.website a:hover {
    color: #007bff; 
    text-decoration: none;
}

/* Like Button & Badges */
.like-btn {
    transition: transform 0.1s;
    font-size: 0.9rem;
}
.like-btn:active {
    transform: scale(1.2);
}

.badge {
    font-size: 0.85rem;
    padding: 0.5em 0.8em;
}

/* Tags */
.tag-item {
    transition: all 0.2s;
}
.tag-item:hover {
    transform: translateY(-1px);
    text-decoration: none;
}
