/*
 Theme Name:   ActivPC - Divi Child Theme
 Theme URI:    https://activpc.com
 Description:  ActivPC - Divi Child Theme
 Author:       Brandon Beech
 Author URI:   https://brandonbeech.dev
 Template:     Divi
 Version:      1.0.0
*/

/* Import the parent theme styles */
@import url("../Divi/style.css");

/* Add your custom CSS below */

/* Display full menu items on tablet and mobile */
@media (max-width: 980px) {
    .custom-responsive-menu .et_pb_menu__menu {
        display: flex; /* Ensure the menu items are displayed inline */
        flex-direction: column; /* Stack menu items vertically */
        align-items: center; /* Center align menu items (optional) */
        justify-content: space-evenly; /* Center the menu vertically (optional) */
    }
    /* Hide the hamburger menu icon */
    .custom-responsive-menu .et_mobile_nav_menu {
        display: none !important;
    }
}

/* Remove reCAPTCHA badge on mobile */
@media (max-width: 830px) {
    .grecaptcha-badge {
        visibility: hidden !important;
        display: none !important;
    }
}

/* Accessible arrows */
.et-pb-arrow-prev span,
.et-pb-arrow-next span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}