/**
 * Custom styles for the Harquin theme
 */

/* Additional header styles */
.site-header {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.site-logo {
    transition: opacity 0.3s ease;
}

.site-logo:hover {
    opacity: 0.9;
}

.header-contact a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.header-contact a:hover {
    color: #f0f0f0;
}

/* Navigation enhancements */
.main-menu a {
    transition: background-color 0.3s ease;
}

/* Content area enhancements */
.feature-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-image img {
    transition: opacity 0.3s ease;
}

.feature-image img:hover {
    opacity: 0.9;
}

/* Sidebar enhancements */
.sidebar-feature {
    margin-bottom: 30px;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 4px;
}

.sidebar-feature h3 {
    color: #f47321;
    margin-bottom: 10px;
    font-size: 18px;
}

.sidebar-image {
    margin-bottom: 10px;
}

/* Footer enhancements */
.site-footer {
    border-top: 5px solid #f47321;
}

.footer-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.footer-menu li {
    margin: 0 10px;
}

.footer-menu a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #fff;
}

/* Button styles */
.read-more {
    display: inline-block;
    padding: 5px 15px;
    background-color: #f47321;
    color: white;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.read-more:hover {
    background-color: #e06010;
    text-decoration: none;
}

/* Responsive enhancements */
@media (max-width: 768px) {
    .feature-box:hover {
        transform: none;
    }
    
    .sidebar-feature {
        margin-bottom: 20px;
    }
    
    .footer-menu {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-menu li {
        margin: 5px 0;
    }
} 