

@font-face {
  font-family: 'StevieSansBold';
  src: url('../fonts/Stevie Sans Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'StevieSansLight';
  src: url('../fonts/Stevie Sans Light.ttf') format('truetype');
  font-weight: light;
  font-style: normal;
}

@font-face {
  font-family: 'NeueHaasUnicaPro-Italic';
  src: url('../fonts/NeueHaasUnicaPro-Italic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}

:root {
  --font-heading: 'StevieSansBold', sans-serif;
  --font-text: 'StevieSansLight', sans-serif;
  --font-neue-italic: 'NeueHaasUnicaPro-Italic', sans-serif;

  --primary-color: rgb(218, 159, 147);
  --secondary-color: rgb(42, 83, 101);
  --button-color: rbg(137, 6, 32);
  --text-color: rbg(31, 31, 31);
}

body {
  font-family: var(--font-text);
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-color);
}

.heading-underline::after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background: var(--primary-color);
}


/* Buttons  */

.--primary {
  background: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  transition: ease-in-out 0.3s;
}

.--primary:hover {
  background: rgb(179, 127, 116);
}

.--outline {
  background: transparent;
  color: var(--primary-color);
  padding: 10px 20px;
  border: 2px solid var(--primary-color);
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  transition: ease-in-out 0.3s;

}





/* Navbar */

.nav {
  width: 100%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
}
.nav > .nav-header {
  flex: 0.95;
  padding-left: 1rem;
}
.nav-logo {
  width: 140px;
}
.nav > .nav-list {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.nav > .nav-list > li {
  list-style-type: none;
}
.nav > .nav-list > li a {
  text-decoration: none;
  color: var(--text-color);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.nav > #nav-check {
    display: none;
}

.responsive-logo {
  display: none;
}

@media (max-width: 767px) {

  .nav > .nav-btn {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    padding-top: 0.2rem;
  }
  .nav > .nav-btn > label {
    display: inline-block;
    width: 50px;
    height: 50px;
    padding: 18px 10px;
  }
  .nav > .nav-btn > label > span {
    display: block;
    width: 25px;
    height: 10px;
    border-top: 2px solid #eee;
  }
  .nav > .nav-list {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 0rem;
    width: 100%;
    background-color: #060606de;
    height: 0;
    transition: all 0.3s ease-in;
    top: 40px;
    left: 0;
    z-index: 10;
    overflow: hidden;
    justify-content: start;
  }

  .nav > .nav-list > li {
    width: 100%;
    margin-top: 1.5rem;
  }
  .nav > #nav-check:checked ~ .nav-list {
    height: calc(100vh - 50px);
  }
  .nav > .nav-list li:nth-child(3) {
    display: none;
  }

  .responsive-logo {
    display: block;
    position: absolute;
    top: 10px;
  }

  .nav > .nav-list li {
    color: white;
  }
}


footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 20px 0 0 0;
}

.footer-container {
  grid-template-columns: 1fr 1fr 1fr;
  display: grid;
  padding: 0 110px;
  gap: 25px;
}

@media (max-width: 900px) {
  .footer-container {
    padding: 30px 50px;
  }
}

@media (max-width: 767px) {
  .footer-container {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}

footer a {
  color: white;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

footer li {
  list-style-type: none;
}

.socket {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: rgb(29, 60, 74);
  margin-top: 20px;
}

.social-list a {
  font-size: 22px;
}

.social-list {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 0;
}