/* BORDER BOX FIX */
* {
  box-sizing: border-box;
}

:root {
  --color-1: #df8453;
  --color-2: #3d8dae;
  --color-3: #e4a9a8;
  --color-4: #dbad4a;
  --color-5: #8baeaa; /* #accfcb */
  --color-6: #17494d;
  --background: #fff;
  --text: #000;
  --grey: #333;
}

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0px;
}

h1,
h2 {
  -webkit-font-smoothing: antialiased;
  font-family: "Amatic SC", cursive, sans-serif;
}

h1 {
  font-size: 40px;
  font-weight: 900;
}

h2 {
  font-size: 30px;
  font-weight: 900;
}

h4 {
  font-size: 0.8rem;
  color: var(--grey);
  font-weight: 600;
}

p {
  color: var(--grey);
}

a {
  text-decoration: none;
  color: var(--grey);
}

/* NAV */
.navbar {
  position: fixed;
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background-color: var(--background);
}

.navbar__logo img {
  width: 30px; /* Adjust the width as needed */
}

.logo-image-hover {
  display: none; /* Hide the hover image initially */
}

.navbar__logo:hover .logo-image {
  display: none; /* Hide the default image on hover */
  box-shadow: none;
  transition: none;
}

.navbar__logo:hover .logo-image-hover {
  display: inline-block; /* Show the hover image on hover */
}

.navbar__nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar__nav-item {
  display: inline;
}

.navbar__nav-link {
  display: inline-block;
  text-decoration: none;
  color: #333;
}

a.navbar__nav-link {
  box-shadow: inset 0 0 0 0 var(--color-4);
  padding: 5px 10px 5px 10px;
  transition: color 0.2s ease-in-out, box-shadow 0.3s ease-in-out;
  border-radius: 4px;
  text-decoration: none;
  color: (var(--text));
}

a.navbar__nav-link:hover {
  color: var(--background);
  box-shadow: inset 0 -400px 0 0 var(--color-4);
}

.navbar ul li a.active {
  /* Styles for the active link */
  font-weight: 600;
  color: var(--text);
  box-shadow: none;
  transition: none;
  border-radius: 3px;
  text-decoration: none;
}

/* INDEX - COLUMNS */
.page--index {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.page--index .page__container {
  flex: 1;
  display: flex;
}

.page--index .page__column {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: auto;
}

.page--index .page__column--left {
  background-color: var(--background);
  padding: 0 20px;
  align-items: center;
  justify-content: flex-start;
}

.page--index .page__column--right {
  background-color: var(--background);
  position: relative; /* Add position relative */
}

.page--index .page__column--right img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: auto;
  position: absolute; /* Add position absolute */
  bottom: 0; /* Position the image at the bottom */
}

/* INDEX - TITLE FONT */
.page__column--left h1 {
  -webkit-font-smoothing: antialiased;
  font-family: "Amatic SC", cursive, sans-serif;
  font-size: 120px;
  font-weight: 900;
  text-align: center;
  /*margin-top: 10;*/
  max-width: 100%;
  line-height: 1;
}

.large-text {
  font-size: 200px; /* Adjust the font size as desired */
  display: inline-block;
}

.grow {
  transition: all 0.2s ease-in-out;
}

.grow:hover {
  transform: scale(1.1);
}

@keyframes shake {
  0% {
    transform: rotate(1deg);
  }
  50% {
    transform: rotate(-2deg);
  }
  70% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.shake:hover {
  animation: shake 500ms ease-in-out forwards;
}

/* BUTTON */
.text-button-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.text-button-container p {
  text-align: center;
}

a.btn {
  box-shadow: inset 0 0 0 0 var(--color-4);
  /*padding: 0 0.25rem;*/
  margin: 0 -0.25rem;
  transition: color 0.2s ease-in-out, box-shadow 0.3s ease-in-out;
  /*border-radius: 3px;*/
  text-decoration: none;
  color: (var(--text));
}

a.btn:hover {
  color: var(--background);
  box-shadow: inset 0 -400px 0 0 var(--color-4);
}

.btn {
  padding: 20px 40px;
  background-color: var(--background);
  color: (var(--text));
  text-decoration: none;
  border: 2px solid #000;
  margin-top: 10px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 400;
}

/* CATEGORIES PAGE */

.wrapper {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
}

.container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  padding: 40px 0;
}

.categories--page h1 {
  padding-top: 20px;
}

.animate {
  animation-duration: 0.5s;
  animation-delay: 0.5s;
  animation-name: animate-fade;
  animation-timing-function: cubic-bezier(0.26, 0.53, 0.74, 1.48);
  animation-fill-mode: backwards;
}

@keyframes animate-fade {
  0% {
    opacity: 0;
    transform: scale(0.8, 0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}

.delay-1 {
  animation-delay: 0.3s;
}
.delay-2 {
  animation-delay: 0.4s;
}
.delay-3 {
  animation-delay: 0.5s;
}
.delay-4 {
  animation-delay: 0.6s;
}
.delay-5 {
  animation-delay: 0.7s;
}
.delay-6 {
  animation-delay: 0.8s;
}
.delay-7 {
  animation-delay: 0.9s;
}

.card {
  display: flex;
  flex-direction: column;
  /*border: 2px solid var(--text);*/
  border-radius: 8px;
  padding: 20px;
  background-color: var(--background);
  /*transition: transform ease 300ms;*/
}

/*.card:hover {
  transform: translate(0, -10px);
}*/

.card-one {
  border: 2px solid var(--color-1);
}

.card-two {
  border: 2px solid var(--color-2);
}

.card-three {
  border: 2px solid var(--color-4);
}

.card-four {
  border: 2px solid var(--color-3);
}

.card-five {
  border: 2px solid var(--color-5);
}

.card-six {
  border: 2px solid var(--color-1);
}

.card-seven {
  border: 2px solid var(--color-2);
}

.card-one h2 {
  color: var(--color-1);
}

.card-two h2 {
  color: var(--color-2);
}

.card-three h2 {
  color: var(--color-4);
}

.card-four h2 {
  color: var(--color-3);
}

.card-five h2 {
  color: var(--color-5);
}

.card-six h2 {
  color: var(--color-1);
}

.card-seven h2 {
  color: var(--color-2);
}

.card-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 10px;
}

.text {
  grid-column: 1 / span 1;
  padding-right: 10px;
}

.list {
  grid-column: 2 / span 1;
  list-style-type: none;
  padding: 20px;
  line-height: 2rem;
  border-left: 2px solid var(--color-2);
}

.list-one {
  border-left: 2px solid var(--color-1);
}

.list-two {
  border-left: 2px solid var(--color-2);
}

.list-three {
  border-left: 2px solid var(--color-4);
}

.list-four {
  border-left: 2px solid var(--color-3);
}

.list-five {
  border-left: 2px solid var(--color-5);
}

.list-six {
  border-left: 2px solid var(--color-1);
}

.list-seven {
  border-left: 2px solid var(--color-2);
}

a.list-link-one,
a.list-link-six {
  box-shadow: inset 0 0 0 0 var(--color-1);
  padding: 5px 10px 5px 10px;
  transition: color 0.2s ease-in-out, box-shadow 0.3s ease-in-out;
  border-radius: 4px;
  text-decoration: none;
  color: (var(--text));
}

a.list-link-one:hover,
a.list-link-six:hover {
  color: var(--background);
  box-shadow: inset 0 -400px 0 0 var(--color-1);
}

a.list-link-two,
a.list-link-seven {
  box-shadow: inset 0 0 0 0 var(--color-2);
  padding: 5px 10px 5px 10px;
  transition: color 0.2s ease-in-out, box-shadow 0.3s ease-in-out;
  border-radius: 4px;
  text-decoration: none;
  color: (var(--text));
}

a.list-link-two:hover,
a.list-link-seven:hover {
  color: var(--background);
  box-shadow: inset 0 -400px 0 0 var(--color-2);
}

a.list-link-three {
  box-shadow: inset 0 0 0 0 var(--color-4);
  padding: 5px 10px 5px 10px;
  transition: color 0.2s ease-in-out, box-shadow 0.3s ease-in-out;
  border-radius: 4px;
  text-decoration: none;
  color: (var(--text));
}

a.list-link-three:hover {
  color: var(--background);
  box-shadow: inset 0 -400px 0 0 var(--color-4);
}

a.list-link-four {
  box-shadow: inset 0 0 0 0 var(--color-3);
  padding: 5px 10px 5px 10px;
  transition: color 0.2s ease-in-out, box-shadow 0.3s ease-in-out;
  border-radius: 4px;
  text-decoration: none;
  color: (var(--text));
}

a.list-link-four:hover {
  color: var(--background);
  box-shadow: inset 0 -400px 0 0 var(--color-3);
}

a.list-link-five {
  box-shadow: inset 0 0 0 0 var(--color-5);
  padding: 5px 10px 5px 10px;
  transition: color 0.2s ease-in-out, box-shadow 0.3s ease-in-out;
  border-radius: 4px;
  text-decoration: none;
  color: (var(--text));
}

a.list-link-five:hover {
  color: var(--background);
  box-shadow: inset 0 -400px 0 0 var(--color-5);
}

/* BEHAVIOR */
.chevron {
  padding: 0 10px;
  color: var(--grey);
}

.container img {
  width: 100%; /* Set the width of the image to 50% of the container */
  height: auto; /* Maintain the aspect ratio of the image */
  display: block; /* Ensure the image is displayed as a block element */
  margin: 0 auto; /* Center the image horizontally within the container */
  border-radius: 8px;
}

.category-title {
  font-weight: 600;
  color: var(--text);
}
.category-name {
  font-weight: 600;
  color: var(--color-2);
}

.behavior-left {
padding-right: 20px;
}

.behavior-right {

}