* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
--bg-main: rgb(230, 222, 207);
--bg-card: #FBF7F0;
--text-primary: #2B241C;
--text-muted: #8C7F6C;
--accent: #3A5A40;
--accent-dark: #2C4530;
--accent-soft: #E4EBE1;
--gold: #B8912F;
--bronze: #8a806f;
--line: #DCD0BB;
--creme-chaud: #F9F6EE;
--active-element : #a98a3a;
--brun-noir: #3b352b;
--vert-footer: #5f8f72;
--header: linear-gradient(
        90deg,
        #FFF9EF,
        #F6E7C5,
        #FFF9EF
        );
}
body{
  background-color: var(--bg-main);
  position: relative;
}
header{
  display: flex;
  position:fixed;
  top: 0;
  right: 0;
  left: 0;
  justify-content: space-between;
  background: var(--header);
  padding: 0rem 1rem;
  min-height: 3.5rem;
  align-items: center;
}
/*left side*/
.left-side {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-text {
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
          font-size: 1.12rem;
          font-weight: 800;
}
.logo-svg{
  height: 1.25rem;
  width: auto;
}
/*right side*/
.right-side {
  display: flex;
  justify-content: center;
  align-items: center;
}
.profile-image-div {
  position: relative;
}
.profile-image {
  height: 2rem;
  border-radius: 1rem;
  border: 1.5px white solid;
  box-shadow: 0px 0px 0px 2px #B8912F;
}
.green-dot{
  background-color: green;
  height: 0.6rem;
  width: 0.6rem;
  border-radius: 10px;
  border: 2px solid white;
  position: absolute;
  right: 0px;
  bottom: 2px;
}
.green-dot::after{
  content: '';
  background-color: green;
  height: 0.4rem;
  width: 0.4rem;
  border-radius: 10px;
  position: absolute;
  right: 0;
  bottom: 0;
  animation: pulse infinite 3s;
}
@keyframes pulse {
0% {
transform: scale(1);
opacity: 1;
}
70% {
transform: scale(1.8);
opacity: 0;
}
100% {
transform: scale(1.8);
opacity: 0;
}

}
.profile-button {
   display: flex;
        justify-content: center;
        align-items: center;
           height: fit-content;
  background-color: #ffffff;
  margin-right: 0.5rem;
  color: #2B241C;
  border-radius: 1rem;
  text-decoration: none;
  padding-left: 0.3rem;
  padding-right: 0.3rem;
  padding-bottom: 0.2rem;
  border: solid 2px var(--gold);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;

}

/*medias*/

@media (min-width: 768px) {
header{
  min-height: 6rem;
}
.logo-text{
  font-size: 1.75rem;
}
.logo-svg{
  height:1.75rem;
}
.profile-image {
  height: 2rem;
  border-radius: 2rem;
  border: 1.5px white solid;
  box-shadow: 0px 0px 0px 2px #B8912F;
}
.profile-button {
  background-color: #ffffff;
  margin-right: 1rem;
  border-radius: 1rem;
  padding-left: 0.3rem;
  padding-right: 0.3rem;
  padding-bottom: 0.2rem;
  border: solid 2px var(--gold);
  font-family: 'Plus Jakarta Sans', sans-serif;
  height: 1.7rem;
  font-size: 0.75rem;
  font-weight: 700;

}
}
@media (min-width: 1024px) {
header{
  min-height: 4rem;
}
.logo-text{
  font-size: 1.5rem;
}
.logo-svg{
  height:1.5rem;
}
.profile-image {
  height: 2rem;
  border-radius: 2rem;
  border: 2px white solid;
  box-shadow: 0px 0px 0px 3px #B8912F;
}
.profile-button {
  background-color: #ffffff;
  margin-right: 0.8rem;
  border-radius: 1rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 0.5rem;
  height: 2rem;
  font-size: 0.75rem;
  font-weight: 700;

}
}
@media (min-width: 1440px) {
header{
  min-height: 4rem;
}
.logo-text{
  font-size: 1.5rem;
}
.logo-svg{
  height:1.5rem;
}
.profile-image {
  height: 2rem;
  border-radius: 2rem;
  border: 2px white solid;
  box-shadow: 0px 0px 0px 3px #B8912F;
}
.profile-button {
  background-color: #ffffff;
  margin-right: 0.8rem;
  border-radius: 1rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 0.5rem;
  height: 2rem;
  font-size: 0.75rem;
  font-weight: 700;

}
}
/*fooooter*/
footer {
  height: auto;
  min-height: fit-content ;
  background-color: var(--creme-chaud) ;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
}
.footer-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.25rem;
  text-decoration: none;
}
.footer-button:hover{
  cursor: pointer;
  background-color: #e6ded1;
  border-radius: 5px;
}
.footer-svg {
 height: 1.4rem;
  color: var(--bronze);
}
.footer-svg:hover{
  fill: var(--vert-footer);
}
.footer-text {
  color: var(--brun-noir);
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  font-weight: 500;
}