* {
  box-sizing: border-box;
  font-family: "Hanken Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  color: #1d1d1d;
}
.padded {
  padding: 1rem;
}

html {
  background-color: #1d1d1d;
}
body,
html {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  flex-direction: column;
  border: 0;
}

body {
  padding-bottom: 4rem;
  overflow-x: hidden;
  margin-left: auto;
  margin-right: auto;
  background-color: white;
    position: relative;

}


h1 {
  text-align: center;
  width: 100%;
  color: #fffffe;
  margin: 0;
  padding: 0;
  line-height: 1.75rem;
}
#word-wrapper > :first-child {
  font-size: clamp(1rem, 8vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
}
#word-wrapper > :last-child {
  font-size: clamp(1rem, 6vw, 1.5rem);
  font-weight: 200;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #1d1d1d;
  color: #fffffe;
  font-size: 1rem;
}

header > div {
  font-weight: 400;
  color: #fffffe;
  text-transform: uppercase;
  font-size: 1rem;
}
header > span {
  font-size: 0.85rem;
  color: #fffffe;
}

@keyframes neon-flicker {
  0%,
  19%,
  21%,
  23%,
  25%,
  54%,
  56%,
  100% {
    opacity: 1;
    filter: drop-shadow(0 0 5px #ff4500) drop-shadow(0 0 10px #ff4500)
      drop-shadow(0 0 20px #ff6347) drop-shadow(0 0 40px #ff7f50);
  }
  20%,
  24%,
  55% {
    opacity: 0.8;
    filter: drop-shadow(0 0 2px #ff4500) drop-shadow(0 0 5px #ff6347);
  }
}




.faded-div {
  position: relative;
  overflow: hidden;
}

.faded-div::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(to top, #1d1d1d, transparent);
  pointer-events: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

main > article {
  display: flex;
  width: 100%;
  justify-content: center;
  background-color: #1d1d1d;
}
article > div {
  max-width: 1000px;
}

.speech-bubble {
  position: relative;
  background: #fffffe;
  border-radius: 0.4em;
}

.speech-bubble:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 0;
  border: 46px solid transparent;
  border-bottom-color: #fffffe;
  border-top: 0;
  border-right: 0;
  margin-left: -23px;
  margin-top: -46px;
}

.speech-bubble > div {
  padding: 2rem;
}
.greeting {
  color: #ff4500;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  justify-content: center;
  max-width: 1500px;
  align-self: center;
}
.gallery > div {
  display: flex;
  justify-content: center;
}
.gallery > div > img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1/1;
  border-radius: 12px;
}
#services-wrapper {
  width: 100%;
  background-color: #00aeff;
  display: flex;
  justify-content: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin-top: -1rem;
}
#services {
  max-width: 1500px;

  align-items: center;
  width: 100%;
  padding: 1rem;
}
#services div {
  align-items: center;
  text-transform: uppercase;
  gap: 0;
}
.service-card {
  flex: 1;
  background: #fffffe;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card img {
  width: 40%;
  height: auto;
  max-width: 80px;
  object-fit: contain;
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}

/* .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
} */

.service-card div {
  font-weight: bold;
  font-size: 0.85rem;
  color: #1d1d1d;
}

#info {
  display: flex;
  gap: 2rem;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
#hours {
  margin-right: 2rem;
}
.title {
  font-size: 2rem;
  font-weight: 800;
  color: #ff4500;
}

.flex-row {
  flex-wrap: wrap;
  display: flex;
  gap: 1rem;
}
a {
  text-decoration: none;
}
#contact > ul > a > li {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 12px;
  cursor: pointer;
}

#contact > ul > a > li > span {
  font-size: 1.25rem;
}
.flex-col {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.map iframe {
  max-width: 90vw;
  object-fit: contain;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  padding: 1rem 0;
}

ul {
  list-style: none;
  padding: 0;
}

.actions {
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #fffffe;
  width: 100%;
  padding: 1rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.actions > div > span {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  background-color: #ff4500;
  color: #fffffe;
  box-shadow: 5px 5px #1d1d1d;
}

.actions > div > span:active {
  box-shadow: 1px 1px #1d1d1d;
  transform: translate(3px, 4px);
}

#splash {
  display: flex;
  justify-content: center;
  background-color: #1d1d1d;
  /* background-image: url('images/vibe.webp');
  background-size: cover;     
  background-position: right;  */
}

#splash-wrapper {
  max-width: 1200px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  height: 100vh;
}
#word-wrapper {
  display: flex;
  flex-direction: column;
}

#logo-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1rem;
}
#logo-img {
  max-width: min(100%, 500px);
  width: auto;
  height: auto;
  display: block;

  filter: drop-shadow(0 0 5px #ff4500) drop-shadow(0 0 10px #ff4500)
    drop-shadow(0 0 20px #ff6347) drop-shadow(0 0 40px #ff7f50);
  animation: neon-flicker 2s infinite alternate;
  image-rendering: crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  filter: contrast(200%) brightness(120%);
}
#mascot-container {
  width: 100%;
  padding-left: 2rem;
}
#mascot-img {
  width: 100%;
  filter: drop-shadow(2px 0 #fffffe) drop-shadow(-2px 0 #fffffe)
    drop-shadow(0 2px #fffffe) drop-shadow(0 -2px #fffffe);
}
.actions {
  padding: 0;
}

.bottom-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background-color: #1d1d1d;

  cursor: pointer;
}
#vibe, #vibe > img {
  width: 100%;
}
.link, button {
    cursor: pointer;

}
#order {
  font-size: clamp(3rem, 8vw, 3rem);
  text-align: center;
  width: 100%;
  text-transform: uppercase;
  font-weight: 800;
  color: #00aeff;
  border: none;
  border-top: 1px solid #fffffe;
  padding: 1rem;
  background-color: #1d1d1d;
}

@media (max-width: 899px) {
  #info {
    justify-content: flex-start;
  }
  #word-wrapper > :first-child {
    font-size: clamp(1rem, 8vw, 1.5rem);
  }
  #word-wrapper > :last-child {
    font-size: clamp(1rem, 6vw, 1rem);
  }
}

@media (max-width: 700px) {
  .service-card {
    flex: 0 0 calc((100% - 2rem) / 3);
  }
  .actions {
    justify-content: center;
    padding-left: 0;
  }

  #splash-wrapper {
    padding-top: 2rem;
    justify-content: space-evenly;
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100svh;
  }

  .speech-bubble:after {
    left: 15%;
  }
  h1 {
    text-align: center;
    width: 100%;
    color: #fffffe;
    margin: 0;
    padding: 0;
    line-height: 1.5rem;
  }
  #word-wrapper > :first-child {
    font-weight: 800;
    text-transform: uppercase;
  }
  #word-wrapper > :last-child {
    font-size: clamp(1rem, 1vw, 1rem);
    font-weight: 200;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .service-card {
    flex: 0 0 calc((100% - 1rem) / 2);
  }
}
