@import url("https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Bebas+Neue&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
    --primary-color: #961D00;
    --secondary-color: #ffc135;
    --tertiary-color: #df1c1c;
    --text-dark: #212529;
    --white: #ffffff;
    --background-color: #fff;
    --button-color: #b45f06;
    --button-hover-color: #8f4d05;
    --max-width: 1200px;
    --header-font-1: "Alfa Slab One", serif;
    --header-font-2: "Bebas Neue", sans-serif;
  }



.hidden {
  display: none;
}

  /* Barre en haut */
.top-bar {
    position: sticky;
    top: 0;
    background-color: rgb(255, 255, 255);
    color: #020202;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  .top-bar .back-arrow {
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: black;
  }
  .logoNavbar{
    width: 220px;
    max-width: 50%;
}

.profile-link{
  color: var(--primary-color);
}

  .top-bar-actions {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .profile-link {
    font-size: 24px;
    color: var(--primary-color);
    transition: color 0.3s ease;
  }

  .profile-link:hover {
    color: var(--secondary-color);
  }
