/*
Theme Name: Kairos Consulting
Theme URI: 
Author: Root Andry
Description: Custom theme pour site Kairos Consulting
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: Kairos
*/

/* Reset CSS */

.custom-logo {
    width: 150px;
    height: auto;
}

.bg-white {
    background-color: #000000 !important;
}

.navbar-dark .navbar-toggler {
    border-color: unset !important;
}

/* Custom Close Button Styling */
.custom-close-btn {
    position: relative;
    width: 52px;
    height: 52px;
    background: unset;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    /*box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);*/
}

.custom-close-btn:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.5);
    background: linear-gradient(135deg, #0a58ca 0%, #0d6efd 100%);
}

.custom-close-btn:active {
    transform: scale(0.95);
}

.custom-close-btn .close-icon {
    position: absolute;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #FF8C00, #FF4B00);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.custom-close-btn .close-icon:first-child {
    transform: rotate(45deg);
}

.custom-close-btn .close-icon:last-child {
    transform: rotate(-45deg);
}

.custom-close-btn:hover .close-icon {
    background-color: #ffffff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}