/*
Theme Name: YooTheme Child
Template: yootheme
Description: Custom child theme for Fox Chain O'Lakes
Author: Your Name
Version: 1.0
*/

/* ==========================================================================
   Fox Chain O'Lakes Custom Styles
   ========================================================================== */

/* Add your custom CSS below this line */


/* Business Directory Customizations */
.business-listing {
    border: 1px solid #e0e0e0;
    padding: 20px;
    margin-bottom: 20px;
}

/* Lakes Guide Styling */
.lake-profile-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .business-listing {
        padding: 15px;
    }
}

/* ==========================================================================
   Dashboard Custom Styles
   ========================================================================== */

.fcol-welcome-banner {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.fcol-stats .uk-grid > div {
    transition: transform 0.3s ease;
}

.fcol-stats .uk-grid > div:hover {
    transform: translateY(-5px);
}

.fcol-post {
    transition: box-shadow 0.3s ease;
}

.fcol-post:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12) !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .fcol-welcome-banner h1 {
        font-size: 24px !important;
    }
    
    .fcol-welcome-banner p {
        font-size: 16px !important;
    }
    
    .fcol-stats .uk-grid {
        gap: 15px;
    }
}