/*Reset*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*Tablet*/
@media (max-width: 64rem) { /* 1024px */
  .clearfix {
    grid-template-columns: 1fr;
  }
  .navbar {
    flex-direction: column;
    gap: 0.625rem; /* 10px */
  }
  .logo {
    text-align: center;
  }
}

/*Mobile*/
@media (max-width: 48rem) { /* 768px */
  .clearfix {
    grid-template-columns: 1fr;
  }
  .navbar {
    flex-direction: column;
    gap: 0.625rem;
  }
  .logo {
    text-align: center;
  }
}

@font-face {
  font-family: 'Bergstena';
  src: url('../assets/BergstenaDecorated.otf') format('truetype');
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Helvetica", Arial, sans-serif;
    background: linear-gradient(180deg, #2b2b2b 0%, #0e0e0f 100%);
    color: #fafafa;
    line-height: 1.5;
}

.logo {
    font-family: "Bergstena", sans-serif;
    color: #d4af37;
    font-size: 2rem;
    text-transform: capitalize;
    letter-spacing: 0.0625rem; /* 1px */
    margin: 0;
    padding: 0.625rem 1.25rem; /* 10px 20px */
}

.banner-text {
    color: #d4af37;
    font-family: "Bergstena";
    font-size: 3.125rem; /* 50px */
    letter-spacing: 0.03125rem; /* 0.5px */
    backdrop-filter: blur(0.0625rem); /* 1px */
    text-shadow:
    0 0 0.1875rem #0e0e0f, /* 3px */
    0 0 0.375rem #0e0e0f, /* 6px */
    0 0 0.5625rem #ffe375; /* 9px */
}

h3 {
    text-transform: capitalize;
    letter-spacing: 0.03125rem;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 1.25rem;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 0.125rem 0.3125rem rgba(0,0,0,0.2);
  flex-wrap: wrap;
}

.nav-links {
  list-style: none;
  justify-content: space-around;
  display: flex;
  gap: 5rem; /* 80px */
  margin: 0;
}

.nav-links li a {
  text-decoration: none;
  font-size: 0.9375rem; /* 15px */
  font-weight: bold;
  transition: color 0.3s, transform 0.3s, text-shadow 0.3s;
}

.nav-links li a:hover {
  color: #d4af37;
  transform: scale(1.1);
  text-shadow: 0 0 0.3125rem #ffe375; /* 5px */
}

@media (max-width: 48rem) {
  .navbar {
    flex-direction: column;
    align-items: center;
    padding: 0.9375rem; /* 15px */
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 0.9375rem; /* 15px */
    width: 100%;
    margin-top: 0.625rem; /* 10px */
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links li a {
    display: block;
    width: 100%;
    padding: 0.625rem 0; /* 10px */
  }

  .logo {
    text-align: center;
    width: 100%;
  }

  body {
    overflow-x: hidden;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

a:visited {
  color: inherit;
}

a:hover {
  color: #d4af37;
  transform: scale(1.1);
  text-shadow: 0 0 0.3125rem #ffe375; /* 5px */
}

/*Footer*/
.site-footer {
  background-color: #1a1a1a;
  color: #fafafa;
  text-align: center;
  padding: 0.9375rem 0; /* 15px */
  font-size: x-small;
}

.site-footer a {
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.site-footer a:hover {
  color: #d4af37;
}
