/* Custom Enhancements CSS */

/* Enhance page title section */
.page-header_title {
    position: relative;
    display: inline-block;
}

.page-header_title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #3452ff, #ff1053);
    transition: width 0.3s ease;
}

.page-header:hover .page-header_title:after {
    width: 100px;
}

/* Enhance blog posts */
.blog-posts-list .blog-post {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.blog-posts-list .blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Button enhancements */
.wgl-button {
    position: relative;
    overflow: hidden;
}

.wgl-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transition: left 0.5s ease;
}

.wgl-button:hover:before {
    left: 100%;
}

/* Footer enhancements */
.footer {
    position: relative;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3452ff, #ff1053);
}

/* Smooth scrolling for the entire site */
html {
    scroll-behavior: smooth;
}

/* Enhance form elements */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
textarea,
select {
    border-radius: 4px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
    border-color: #3452ff;
    box-shadow: 0 0 0 2px rgba(52, 82, 255, 0.2);
    outline: none;
}

/* Add subtle hover effect to navigation items */
.primary-nav > ul > li > a {
    position: relative;
}

.primary-nav > ul > li > a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3452ff, #ff1053);
    transition: width 0.3s ease, left 0.3s ease;
}

.primary-nav > ul > li > a:hover:after {
    width: 100%;
    left: 0;
}