@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root{
  --font-header: "Cormorant Garamond", serif;
  --font-body: "Inter", sans-serif;
  --hero-header-size: 5rem;
  --hero-body-size: 1rem;
  --header-section-size: 4rem;
  --body-section-size: 1rem;
  --first-color: #ffffff;
  --second-color: #FFE100;
  --third-color: #3C2A21;
  --fourth-color: #F5E9D7;
  --cream: #faf6ef;
  --sand: #e8dcc8;
  --brown: #3c2a21;
  --brown-mid: #6b4c38;
  --gold: #c9a96e;
  --gold-lt: #e2c99a;
  --white: #ffffff;
  --dark: #1a1210;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-main);
}


/*----------FOOTER CSS----------*/

.footer {
  font-family: var(--font-body);
  position: relative;
  background-color: var(--third-color);
  color: var(--first-color);
  text-align: center;
  overflow: hidden;
  padding: 40px 20px;
}


.footer-content,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo img {
  width: 120px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.footer-nav a {
  color: var(--first-color);
  text-decoration: none;
  font-weight: 500;
  transition: 0.5s ease;
}

.footer-nav a:hover {
  color: var(--second-color);
}

.footer-socials {
  display: flex;
  gap: 20px;
}

.footer-socials a {
  color: var(--first-color);
  font-size: 1.2rem;
  transition: 0.3s ease-in-out;
}

.footer-socials a:hover {
  color: var(--second-color);
}

.footer-bottom {
  margin-top: 30px;
}

.footer-bottom hr {
  border: 0;
  border-top: 1px solid var(--first-color);
  margin-bottom: 15px;
}

.footer-bottom p {
  font-size: var(--font-body);
  color: var(--first-color);
}