/*
Theme Name: Theratio Child
Description: Child theme for Theratio. You can now safely customize it and not risk losing your customizations.
Author: WPMarmite
Author URI: https://wpmarmite.com
Template: theratio
Version: 1.0
*/



 
/* =Theme customization starts here
------------------------------------------------------- */
.text-light, a {
    color: #fc7a2f;
}

.page-header {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 300px; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2; /* Ensures content is above the overlay */
}

/* Wrapper styling */
.wpcf7-form-control.wpcf7-checkbox {
    display: block;
    max-height: 300px; /* Adjust height as you like */
    overflow-y: auto; 
    overflow-x: hidden;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 8px;
    background: #fafafa;
}

/* Checkbox items clean layout */
.wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item {
    display: block;
    margin-bottom: 8px;
}

/* Scrollbar styling (optional) */
.wpcf7-form-control.wpcf7-checkbox::-webkit-scrollbar {
  width: 8px;
}
.wpcf7-form-control.wpcf7-checkbox::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 5px;
}

/* Default menu style */
#primary-menu li a {
    color: #000; /* normal text color */
    transition: 0.3s ease;
}

/* Active/Highlighted menu item */
#primary-menu li.active > a {
    color: #ff6600; /* highlight color */
    font-weight: 600;
}