body {
  display: grid;
  grid-template:
    "header   header" 1fr
    "main     main  " 80%
    "footer   footer" 1fr/
    1fr       1fr;
  height: 100%;
  margin: auto;
  padding: 0 1rem;
}


/* ################################ */
/* ############ HEADER ############ */
/* ################################ */

header {
  grid-area: header;
  padding-top: 1.2rem;
}

header nav {
  display: flex;
  justify-content: space-between;
}

header h1 {
  font-weight: normal;
  font-size: 1em;
  text-decoration: line-through;
  text-decoration-thickness: .14em;
}

header a {
  position: relative;
}

header a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: .14em;
  bottom: 0;
  left: 0;
  background-color: #000;
  transform: scaleX(0);
  transform-origin: bottom left;
  transition: transform 0.2s ease;
}

a:hover::before {
  transform: scaleX(1);
}

#event-long {
  display: none;
}

.nav-phone {
  display: none;
}

/* ################################ */
/* ############# MAIN ############# */
/* ################################ */

main {
  grid-area: main;
  align-content: center;
}

.delin h1, .delin p {
  font-weight: 400;
  font-size: 3rem;
  line-height: .9em;
}

.split-text {
  display: inline-block;
}

.delinfo {
  display: flex;
  justify-content:space-between;
  margin-top: 15px;
}

.info-a {
  font-size: 1.5em;
  margin-right: 20px;
}

.info-b {
  font-size: 1.1em;
  margin-top: .4em;
}

/* ############ EVENTS ############ */

.event-header {
  text-align: center;
  font-weight: 400;
}

/* ############# SHOP ############# */

.shop-container {
  height: 100%;
  overflow: auto;
}

.shop-item {
  display: flex;
  gap: 10px;
}

.shop-img {
  flex: 1 1 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.shop-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.shop-text {
  flex: 1 1 0px;
  font-size: 1.3em;
}

.shop-heading {
  font-weight: normal;
  font-size: 1em;
}

.shop-text p {
  margin-top: .3em;
}

.sticky-text {
  position: sticky;
  top: 0;
  margin-bottom: 40%;
}


/* ############# ABOUT ############# */

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  gap: 30px;
}

.about-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* overflow: hidden; */
}

.about-left p {
  width: 100%;
}

#signature, .about-right {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

#signature img, .about-right img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

#signature img {
  width: 50%;
  margin-left: auto;
  margin-top: 20px;
}

/* ################################ */
/* ############ FOOTER ############ */
/* ################################ */

footer {
  grid-area: footer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.foot-1 {
  font-size: 2em;
}

.foot-right {
  display: flex;
  justify-content: flex-end;
  width: 40%;
}

.foot-2 {
  display: none;
}

.foot-3 li {
  text-align: right;
}

.foot-3 img {
  display: none;
}

@media screen and (max-width: 615px){
  .foot-1 {
    font-size: 1.3em;
  }
}
