@charset "utf-8";
/* CSS Document */
:root {
  --hot-pink: #FF2D95;
  --bright-blue: #00B4FF;
  --dark: #111;
  --light: #f8f9fa;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-accent: "Fredoka", sans-serif;
}

a {
  text-decoration: none;
}

.topbar {
  width: 100%;
  box-sizing: border-box;
  padding: 1rem 2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: #000;
  border-bottom: 3px solid var(--bright-blue);
}

body {
  font-family: var(--font-body);
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: white;
  color: #000;
  line-height: 1.5;
}

main {
  flex: 1;
  text-align: center;
}

main a{
	color: #000;
	text-shadow:
    -1px -1px 0 #fff,
     0   -1px 0 #fff,
     1px -1px 0 #fff,
     1px  0   0 #fff,
     1px  1px 0 #fff,
     0    1px 0 #fff,
    -1px  1px 0 #fff,
    -1px  0   0 #fff;
  filter:
    drop-shadow(0 0 2px var(--bright-blue))
    drop-shadow(0 0 10px var(--hot-pink));
}

h1, h3, h5 {
  font-family: var(--font-accent);
  font-weight: 400;
  line-height: 2;
  text-shadow:
    -1px -1px 0 #fff,
     0   -1px 0 #fff,
     1px -1px 0 #fff,
     1px  0   0 #fff,
     1px  1px 0 #fff,
     0    1px 0 #fff,
    -1px  1px 0 #fff,
    -1px  0   0 #fff;
  filter:
    drop-shadow(0 0 2px var(--bright-blue))
    drop-shadow(0 0 10px var(--hot-pink));
}

h2, h4, h6 {
  font-family: var(--font-heading);
}

nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.7rem;
  background: #000;
}
nav a {
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
  font-weight: 700;
  font-size: 1.05rem;
  color: white;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.3s ease;
}
nav a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.9),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}
nav a:hover::before {
  left: 140%;
}
nav a:hover {
  color: white;
  background: linear-gradient(
    90deg,
    var(--hot-pink),
    var(--bright-blue)
  );
  transform: scale(1.05);
  box-shadow:
    0 0 8px var(--hot-pink),
    0 0 18px var(--hot-pink),
    0 0 28px rgba(0, 180, 255, 0.6);
}

.logo {
  justify-self: center;
  display: flex;
  align-items: center;
}
.logo img {
  display: block;
  width: auto;
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 0 5px #fff);
  transition:
    filter 0.3s ease,
    transform 0.3s ease;
}
.logo img:hover {
  filter:
    drop-shadow(0 0 5px #fff)
    drop-shadow(0 0 12px var(--hot-pink))
    drop-shadow(0 0 18px var(--bright-blue));
  transform: scale(1.03);
}

.orderbtn {
  font-family: var(--font-body);
  justify-self: start;
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 0.9rem 1.8rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: #111;
  background: var(--light);
  border: 2px solid var(--hot-pink);
  border-radius: 999px;
  cursor: pointer;
  box-shadow:
    0 0 10px rgba(255, 45, 149, 0.5),
    0 6px 18px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.25s ease,
    background 0.4s ease,
    box-shadow 0.4s ease,
    color 0.3s ease;
}
.orderbtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.9),
    transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.orderbtn:hover {
  color: white;
  background: linear-gradient(
    90deg,
    var(--hot-pink),
    var(--bright-blue));
  border-color: var(--bright-blue);
  transform: scale(1.08);
  box-shadow:
    0 0 10px var(--hot-pink),
    0 0 25px var(--hot-pink),
    0 0 40px rgba(0, 180, 255, 0.7);
}
.orderbtn::after {
      content: "🍪";
      position: absolute;
      right: 12px;
	  transform: translateY(-50%) scale(0.7);
      opacity: 0;
      transition:
      opacity 0.25s ease,
      transform 0.25s ease;
    }
.orderbtn:hover::before {
  left: 140%;
}
.orderbtn:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: .5rem 0rem 1rem 0rem;
}
.container a:hover {
  color: var(--bright-blue);
}

.decorative {
  width: 70%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 1rem auto;
}

.specialgrid, .menugrid, .flavorlist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}
.price {
  color: var(--bright-blue);
}

.story {
  max-width: 1100px;
  margin: 0 auto;
}
.story p {
  text-align: left;
}
.story p,
.story h2,
.story h3 {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}


ul li {
  list-style: none;
}

footer {
  width: 100%;
  box-sizing: border-box;
  padding: 2.5rem 4rem;
  background: #000;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  border-top: 3px solid var(--hot-pink);
}

.contactinfo {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contactinfo p {
  margin: 0.4rem 0;
  color: #fff
}
.contactinfo a {
  color: var(--hot-pink);
}
.contactinfo a:hover {
  color: var(--bright-blue);
  text-decoration: none;
}

.map {
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--bright-blue);
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}