/*
Theme Name: Mobile PT
Theme URI: https://www.fiverr.com/users/thextremewp/
Author: thextremewp
Version: 1.0
Description: Custom Mobile PT WordPress Theme
*/


/* Remove default list styling */
.menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Make horizontal */
.menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

/* Link styling */
.menu a {
    color: #334155; /* slate-700 */
    font-weight: 500;
    transition: color 0.3s ease;
    text-decoration: none;
}

.menu a:hover {
    color: #2563eb; /* blue-600 */
}

/* Current menu item */
.menu .current-menu-item > a {
    color: #2563eb;
    font-weight: 600;
}

/* CF7 input & textarea styling */
.cf7-label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #334155; /* slate-700 */
}

.cf7-input, .cf7-textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #CBD5E1; /* slate-300 */
    border-radius: 1rem; /* rounded-xl */
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    font-size: 1rem;
    color: #0F172A; /* slate-900 */
}

.cf7-input:focus, .cf7-textarea:focus {
    border-color: #2563EB; /* blue-600 */
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3); /* focus ring */
    outline: none;
}

.cf7-submit {
    display: inline-block;
    background-color: #2563EB; /* blue-600 */
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.cf7-submit:hover {
    background-color: #1D4ED8; /* blue-700 */
    transform: scale(1.05);
}


.admin-bar header {
    top: 32px;
}