/*
Theme Name: Ideaweb template
Theme URI: https://example.com
Author: Ideaweb
Author URI: https://ideaweb.fr
Description: Thème Ideaweb
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mon-theme
*/
body {
    font-family: "Albert Sans", serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    padding: 0 !important;
    margin: 0 !important;
}


.fl-heading-text {
    white-space: normal;
    word-wrap: break-word;  
}


  
  /* Navigation styles */


  .nav-menu {
    z-index: 100;
    position: absolute;
    top: 3rem;
    width: 100%;
  }


  .nav-menu ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    padding: 10px 20px;
    margin: 0;
  }
  
  .nav-menu li {
    margin: 0 15px;
  }
  
  .nav-menu a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    position: relative;
    display: inline-block;
    padding: 5px 0;
    transition: color 0.3s ease;
  }
  
  /* Hover effect */
  .nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #00d4ff; /* Bright color for animation */
    transition: width 0.4s ease;
  }
  
  .nav-menu a:hover {
    color: #00d4ff; /* Change text color on hover */
  }
  
  .nav-menu a:hover::after {
    width: 100%; /* Full underline effect */
  }

/* Footer menu */
  .fl-menu-vertical > li {
    line-height: 0!important;
}

.fl-menu-vertical > li a {
    color:black;
    transition: color 0.3s ease;
    padding-left: 0!important;
}

  /* Hover effect */
  .fl-menu-vertical > li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #00d4ff; /* Bright color for animation */
    transition: width 0.4s ease;
  }


  .fl-menu-vertical > li a:hover {
    color: #00d4ff; /* Change text color on hover */
  }
  
  .fl-menu-vertical > li a:hover::after {
    width: 20%; /* Full underline effect */
  }


  @media (max-width: 769px) {
    .fl-menu a {
        text-align: center!important;
    }
  }
  
  


