@import url('https://fonts.googleapis.com/css2?family=Ancizar+Serif:ital,wght@0,300..900;1,300..900&display=swap');

:root{
 --color-white:	hsl(0, 100%, 100%);
 --color-golden:#926F34;
 --color-black:	hsl(0, 0%, 0%);
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
   font-family: Garamond, serif;
}

/* footer */

.footer {
  background-color:  var(--color-black);
  color: white;
  padding: 60px 60px 10px;
  /* font-size: 14px; */
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-section h3 {
  margin-bottom: 15px;
  font-family: 'space mono', sans-serif;
  font-weight: 900;
  font-size: 1.4rem; 
  position: relative;
}

.footer-section h3::after {
  content: '';
  background-color: #F07B3F;
  width: 6rem;
  height: 0.15rem;
  position: absolute;
  bottom: -5px; 
  left: 0;
}


.footer-section p {
  transition: all .2s linear;
   font-family: "space mono", sans-serif;
  font-size: .9rem;
  word-spacing: 2px;
  /* line-height: 1.8; */
}
.footer-section ul li {
  line-height: 2;
}p
.footer-section p:hover{
  color: #777;
    transition: all .2s linear;
    transform: translateX(4px);
}
.footer-section a {
  color: white;
  margin-top: 10px;
  font-weight: 500;
  text-decoration: none;
   line-height: 1.9;
}

.footer-section a:hover {
  color:  var(--color-golden);
}

.footer-section ul li a i {
  margin-top: 10px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  padding: 10px 0 20px;
  margin-top: 20px;
}