@charset "UTF-8";

:root {
  --color-black: #212121;
  --color-brand: #00a5dd;
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

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

/* ==========================================================================
   base
   ========================================================================== */
body {
  background-color: white;
  color: var(--color-black);
  font:
    18px/1.6 "Montserrat",
    sans-serif;
}

img {
  max-width: 100%;
}

/* ==========================================================================
   card / component
   ========================================================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.card {
  background-color: white;
  box-shadow:
    0 1px 1px 0 rgba(60, 64, 67, 0.08),
    0 1px 3px 1px rgba(60, 64, 67, 0.16);
  border-radius: 30px;
  color: initial;
  overflow: hidden;
  transition: box-shadow 2s var(--ease-out-expo);
}
.card a {
  color: inherit;
  text-decoration: none;
}
.card:hover {
  transition: background-color 2s var(--ease-out-expo);
  background-color: var(--color-brand);
  box-shadow:
    0 1px 5px 2px rgba(60, 64, 67, 0.2),
    0 1px 3px 1px rgba(60, 64, 67, 0.16);
}
.card .card__media img {
  transition: all 2s var(--ease-out-expo);
}
.card:hover .card__media img {
  transform: scale(1.15);
}

.card__media {
  height: 10rem;
  overflow: hidden;
  position: relative;
}

.card__media img {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.card__content {
  padding: 1rem 1rem;
  text-align: center;
}

/* ==========================================================================
   footer / component
   ========================================================================== */
.footer {
  background: var(--color-black);
  color: white;
  padding-top: 40px;
  padding-bottom: 40px;
}
.footer .wrap {
  align-items: center;
  display: flex;
}

/* ==========================================================================
   grid / component
   ========================================================================== */
.grid .col {
  grid-column: span 4;
}

/* ==========================================================================
   header / component
   ========================================================================== */
.header {
  display: flex;
  align-items: center;
  padding: 20px 25px 50px;
}
.header a {
  color: inherit;
}

.header__brand {
  color: inherit;
  font-size: 30px;
  font-weight: 900;
  text-decoration: none;
}
.header__brand:hover {
  color: var(--color-brand);
}

header > div {
  margin-left: auto;
}
.menu {
  list-style-type: none;
}

.menu-item {
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}
.menu-item + .menu-item {
  margin-left: 20px;
}
.menu-item a:hover,
.menu-item.current-menu-item {
  color: var(--color-brand);
  text-decoration: underline;
}

/* ==========================================================================
   hero / component
   ========================================================================== */
.hero {
  background-color: var(--color-fg, var(--color-black));
}

.hero__medias {
  display: flex;
  height: 80vh;
  justify-content: center;
}

.hero__poster {
  flex: 1 0 33.33333%;
  height: 100%;
  min-width: 350px;
  z-index: 2;
}
.hero__poster img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  max-width: none;
  width: 100%;
}

.hero__image {
  flex: 1 1 66.66666%;
  height: 100%;
}
.hero__image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  width: 100%;
  transition: transform 2s var(--ease-out-expo);
}

/* .menu, .menu ul {
      display: flex;
      justify-content: space-between; }
      .menu svg {
        fill: currentColor; } */

header > div,
.menu {
  display: flex;
  justify-content: space-between;
}
.menu svg {
  fill: currentColor;
}

.menu__item {
  background: white;
  border-radius: 3px;
  height: 40px;
  width: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.grid__title {
  grid-column: 1 / -1;
}

.grid__content {
  grid-column: 1 / -1;
}
.grid__content a:hover {
  color: var(--color-brand);
}
.grid__content h2 {
  color: var(--color-fg, --color-black);
}
/*@media (min-width: 1024px) {
    .grid__content {
      grid-column: 1 / 9; } }*/

.grid__sidebar {
  font-size: 16px;
  grid-column: 1 / -1;
}
/*@media (min-width: 1024px) {
    .grid__sidebar {
      grid-column: 10 / -1; } }*/

/* ==========================================================================
   typography / component
   ========================================================================== */
h1 {
  color: var(--color-fg, --color-black);
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
}
h1 {
  font-size: 40px;
}
@media (min-width: 768px) {
  h1 {
    font-size: calc(40px + 60 * ((100vw - 768px) / 512));
  }
}
@media (min-width: 1280px) {
  h1 {
    font-size: 100px;
  }
}
h1 small {
  font-size: 20px;
  font-weight: bold;
}

h2 {
  font-weight: 600;
  font-size: 30px;
  line-height: 1.2;
}

h3 {
  font-size: 14px;
  font-weight: 700;
}

a {
  color: var(--color-green);
}

a:hover {
  text-decoration: none;
}

.grid__sidebar ul {
  list-style: none;
}

.grid__content ul {
  margin-left: 20px;
  list-style: none;
}
.grid__content ul li {
  padding-left: 40px;
  position: relative;
}
.grid__content ul li::before {
  content: "➡";
  position: absolute;
  left: 0;
}
.list-cinema {
  list-style: none;
}
.list-cinema li::before {
  content: "🎬";
}

/* ==========================================================================
   objects
   ========================================================================== */
.section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 25px;
  padding-right: 25px;
}

/* ==========================================================================
   typography / object
   ========================================================================== */
.o-typography > *:not(h2):not(h3) + * {
  margin-top: 40px;
}

.o-typography > h3 + * {
  margin-top: 10px;
}

.o-typography > h2 + * {
  margin-top: 20px;
}

.u-hide {
  display: none !important;
}
