@charset "UTF-8";

:root {
  /* colors */
  --red: rgb(187, 9, 8);
  --gray: rgb(57, 57, 57);
  --black: rgb(7, 7, 7);
  --white: rgb(255, 255, 255);
  --border: rgb(145, 145, 145);
  /* fonts */
  --teko: "Teko", sans-serif;
  --roboto: "Roboto", sans-serif;
  --poppins: "Poppins", sans-serif;
  --rock-salt: "Rock Salt", cursive;
  /* transitions */
  --ease: cubic-bezier(0.075, 0.82, 0.165, 1);
}

/* RESETS */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  font-family: var(--teko);
  min-height: 100dvh;
  background: var(--black);
  color: var(--white);
}

svg {
  display: block;
}

a {
  display: inline-block;
}

li {
  list-style: none;
}

/* CONTENT STYLING */

header,
footer {
  padding-left: 3rem;
  padding-right: 3rem;
}

header {
  display: flex;
  height: 100px;
  align-items: center;
  justify-content: space-between;
}

main {
  display: grid;
  gap: 1rem;
  background-color: rgb(40, 40, 40);
  grid-template-columns: repeat(5, 1fr);
  grid-template-areas:
    "banner banner banner banner sidebar"
    "left left right right sidebar";
}

footer {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: flex-start;
  padding: 1rem;
}

h1 {
  color: var(--red);
  font-size: 3rem;
  font-weight: 400;
  align-self: last baseline;
}

.anchor-effects {
  transition: var(--ease) transform 250ms;
  transform: translateY(var(--anchor-translate)) scale(var(--anchor-scale));
}

.anchor-effects-parent:hover > .anchor-effects.scale {
  --anchor-translate: -3px;
  --anchor-scale: 1.02;
}

.anchor-effects-parent:active > .anchor-effects.scale {
  --anchor-translate: -1px;
  --anchor-scale: 0.93;
}

.red {
  color: var(--red);
}

.poppins-paragraph {
  font-size: 0.875rem;
  font-weight: 400;
  font-size: 1.125rem;
  font-family: var(--poppins);
  line-height: 1.3;
}

.roboto-paragraph {
  font-family: var(--roboto);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.3125;
}

.teko-paragraph {
  font-family: var(--teko);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.3125;
}

.banner {
  grid-area: banner;
  display: flex;
  flex-grow: 1;
  height: 388px;
  background-position: center;
  background-size: cover;
  background-image: url("../images/banner.png");
}

.banner img {
  width: 100%;
  height: 100%;
}

.sidebar {
  grid-area: sidebar;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  background: var(--gray);
  padding: 1.5rem 1rem;
}

.sidebar-sign {
  width: 100%;
  height: min-content;
}

.sidebar-jason-underwater {
  width: 100%;
}

.card {
  position: relative;
  border-top: 5px solid var(--red);
  background-color: var(--gray);
}

.left {
  grid-area: left;
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  margin-left: 1rem;
}

.left-poster {
  height: 100%;
  width: auto;
}

.left-content-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.left-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.25rem;
  padding-right: 1.25rem;
  padding-bottom: 1.25rem;
}

.text-anniversary {
  font-size: 30px;
  text-align: center;
  padding: 0.5rem 0;
  font-weight: 400;
  font-family: var(--rock-salt);
  color: var(--red);
  border-bottom: 4px solid var(--red);
}

.left-purchase {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.left-purchase-dvd {
  height: 148px;
  width: auto;
}

.left-purchase-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.left-purchase-link {
  color: rgb(34, 193, 203);
}

.left-purchase-link:visited {
  color: var(--red);
}

.left-purchase-price {
  font-family: var(--teko);
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: underline;
  text-underline-offset: 10px;
}

.right {
  padding: 1.5rem;
  grid-area: right;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.right-flag {
  width: 100%;
  height: auto;
  padding-right: 0.75rem;
}

.right-paragraph {
  font-size: 1.5rem;
}

.footer-paragraph {
  color: rgb(188, 188, 188);
}

.socials-group {
  display: flex;
  gap: 0.75rem;
}

.years-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.link-overlay {
  position: static;
}
.link-overlay:focus-visible {
  outline: none;
}
.link-overlay::before {
  content: "";
  cursor: inherit;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
}

.social-link {
  display: inline-block;
  color: inherit;
}
.social-list-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--red);
  border-radius: 0.25rem;
}
.social-icon {
  width: 2rem;
  height: 2rem;
  color: var(--white);
}
