/*
Theme Name:   Hello Elementor Child
Theme URI:    https://elementor.com/hello-theme/
Description:  Child theme for the Hello Elementor theme
Author:       Your Name
Author URI:   https://yoursite.com
Template:     hello-elementor
Version:      1.0.0
License:      GNU General Public License v3 or later
License URI:  https://www.gnu.org/licenses/gpl-3.0.html
Text Domain:  hello-elementor-child
*/

/* Add your custom styles below this line */

/* Navigation */
.menu-item-red a {
	color: #AD1F23 !important;
}
.menu-item-red a:hover {
	text-decoration: underline;
}


/* Password Protected Form Styles */
.custom-password-form-wrap {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-password-form {
    background: #f4f4f4;
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0px auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.custom-password-form h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 24px;
    color: #333;
}

.custom-password-form p {
    margin-bottom: 25px;
    color: #666;
    font-size: 14px;
}

.custom-password-form .post-password-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0px auto;
}

.custom-password-form label {
    display: block;
    text-align: left;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.custom-password-form input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.custom-password-form input[type="password"]:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.custom-password-form input[type="submit"] {
    background: #AD1F23;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
}

.custom-password-form input[type="submit"]:hover {
    background: black;
    color: white;
    box-shadow: none;
}

.custom-password-form input[type="submit"]:active {
    transform: translateY(1px);
}

/* page title */
#page-title .elementor-widget-heading:before {
    content: '';
    display: block;
    width: 80px;
    height: 26px;
    margin-left: auto;
    margin-right: auto;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="62.763" height="10.317"%3E%3Cg data-name="Group 471" fill="%23ad1f23"%3E%3Cpath data-name="Path 30" d="M0 10.317h12.093L21.112 0H9.019Z"/%3E%3Cpath data-name="Path 31" d="M20.825 10.317h12.093L41.937 0H29.844Z"/%3E%3Cpath data-name="Path 32" d="M41.651 10.317h12.093L62.763 0H50.67Z"/%3E%3C/g%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-size: contain;
}

/* underline */
.elementor-pagination .page-numbers.current {
	position: relative;
}
.elementor-pagination .page-numbers.current:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -5px;
    height: 2px;
		width: 15px;
    background-color: #AD1F23;
		transform: translateX(-50%);
}
/* blog page */
#blog-archive .facet-wrap select {
	border: 1px solid #AD1F23;
    border-radius: 0;
    padding: 5px 15px 5px 10px;
	background-position: calc(100% - 4px) center;
}
