/**
* Template Name: Active
* Template URL: https://bootstrapmade.com/active-bootstrap-website-template/
* Updated: Jun 27 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Roboto",  sans-serif;
    --nav-font: "Lato",  sans-serif;
  }
  
  /* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
  :root { 
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #5a6376; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #e95b19; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --accent2-color: #125e1d; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  
  
  }
  
  /* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
  :root {
    --nav-color: #212529;  /* The default color of the main navmenu links */
    --nav-hover-color: #1ba3e4; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #1ba3e4; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
  }
  
  /* custom.css */
:root {
  --bs-primary: var(--accent-color) !important;; /* Replace with your custom color */
  --bs-bg-primary: var(--accent-color) !important;; /* Replace with your custom color */
} 

.text-bg-primary {
  background-color: var(--accent-color) !important; /* Replace with your custom color */
}

input:focus,
textarea:focus,
select:focus {
    outline: none !important; /* Remove the default outline */
    box-shadow: 0 0 0 0.25rem rgba(233, 91, 25, 0.5) !important; /* Add a red box-shadow */
    border-color: rgba(233, 91, 25, 0.5) !important; /* Optional: Change the border color as well */
}

  .btn-get-started {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 30px;
    padding: 8px 30px;
    border: 2px solid transparent;
    transition: 0.3s all ease-in-out;
    font-size: 14px;
  }

  .btn-get-started:hover {
    border-color: var(--accent-color);
    background-color: transparent;
    color: var(--accent-color);
  }


  .btn-get-retour {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 20px;
    padding: 4px 20px;
    border: 2px solid transparent;
    transition: 0.3s all ease-in-out;
    font-size: 10px;
  }

  .btn-get-retour:hover {
    border-color: var(--accent-color);
    background-color: transparent;
    color: var(--accent-color);
  }



.content{
  border-color: var(--accent2-color);
  border-style: solid;
  border-width: 13px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.75)), url('/static/gazon.jpg');

	background-repeat:repeat;

}

.card, .card-body {
  background: transparent;
  border: none;
}

.form-control {
  background: rgba(255, 255, 255, 1); /* Fully opaque background for inputs */
}

i {

  color: var(--accent-color);
}


.table-hover tbody tr.inactive td{
  color: rgba(0, 0, 0, 0.25);
}

.table-hover tbody tr:hover td, .table-hover tbody tr:hover th {
  background-color:  rgba(233, 91, 25, 0.25);
}


