@charset "utf-8";
/* CSS Document */
:root {
  --hot-pink: #FF2D95;
  --bright-blue: #00B4FF;
  --dark: #111;
  --light: #f8f9fa;
}

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 {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: system-ui, -apple-system, sans-serif;
  background: white;
  color: #000;
  line-height: 1.5;
}

main {
  flex: 1;
}

nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.7rem;
  background: #000;
}
nav a {
  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 {
  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: 4rem 2rem;
}

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 {
      background: #222;
      height: 220px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #888;
      border: 2px solid var(--bright-blue);
    }