:root {
  --chalkboard-black: #2C3531;
  --chalk-white: #F5F5F5;
  --coffee-brown: #8B4513;
  --cream: #FFF8DC;
  --espresso-red: #A0522D;
  --border-style: 2px solid var(--chalk-white);
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0px);
  }
}

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

body {
  background-color: var(--chalkboard-black);
  color: var(--chalk-white);
  font-family: 'Patrick Hand', cursive;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background-image: url('https://www.transparenttextures.com/patterns/dark-matter.png');
}

.chalkboard-texture {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  z-index: 10;
}

.menu-board {
  max-width: 900px;
  width: 100%;
  border: 8px double var(--chalk-white);
  padding: 40px;
  position: relative;
  background: rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.menu-board::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid rgba(245, 245, 245, 0.2);
  pointer-events: none;
}

/* Header */
.menu-header {
  text-align: center;
  margin-bottom: 50px;
}

.flourish {
  font-size: 2rem;
  color: var(--cream);
  opacity: 0.6;
}

.handwritten-title {
  font-family: 'Caveat', cursive;
  font-size: 4rem;
  color: var(--cream);
  margin: 10px 0;
  text-shadow: 2px 2px 0px var(--coffee-brown);
}

.tagline {
  font-size: 1.4rem;
  font-style: italic;
  opacity: 0.8;
}

/* Grid */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.menu-section {
  border-top: 2px dashed rgba(245, 245, 245, 0.3);
  padding-top: 20px;
}

.section-title {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  color: var(--coffee-brown);
  margin-bottom: 20px;
  text-decoration: underline;
  text-underline-offset: 5px;
}

/* Menu Items */
.menu-items {
  list-style: none;
}

.menu-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 1.3rem;
  transition: color 0.2s;
}

.menu-item:hover {
  color: var(--coffee-brown);
}

.dots {
  flex: 1;
  border-bottom: 1px dotted rgba(245, 245, 245, 0.5);
  margin: 0 10px;
  position: relative;
  top: -5px;
}

.item-price {
  font-family: 'Caveat', cursive;
  color: var(--cream);
}

/* Daily Special / Notes */
.note-list {
  list-style: none;
}

.note-list li {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.chalk-link {
  color: var(--espresso-red);
  text-decoration: none;
  border-bottom: 1px solid var(--espresso-red);
}

.chalk-link:hover {
  background: var(--espresso-red);
  color: var(--chalk-white);
}

/* Roast Details / Bottom Section */
.roast-details {
  border-bottom: 2px dashed rgba(245, 245, 245, 0.3);
  padding-bottom: 20px;
}

.roast-preview {
  display: flex;
  align-items: center;
  gap: 30px;
  background: rgba(139, 69, 19, 0.1);
  padding: 20px;
  border: 1px solid var(--coffee-brown);
}

.cup-decoration {
  font-size: 4rem;
  animation: float 3s infinite ease-in-out;
}

.roast-info h3 {
  font-family: 'Caveat', cursive;
  font-size: 1.8rem;
  color: var(--cream);
}

.chalk-btn {
  display: inline-block;
  margin-top: 10px;
  color: var(--coffee-brown);
  border: 1px solid var(--coffee-brown);
  padding: 5px 15px;
  text-decoration: none;
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
}

.chalk-btn:hover {
  background: var(--coffee-brown);
  color: var(--chalkboard-black);
}

/* Footer */
.menu-footer {
  margin-top: 40px;
  text-align: center;
  border-top: 1px solid rgba(245, 245, 245, 0.1);
  padding-top: 20px;
}

.social-links a {
  color: var(--chalk-white);
  text-decoration: none;
  opacity: 0.6;
}

.social-links a:hover {
  opacity: 1;
}

.copyright {
  font-size: 0.9rem;
  margin: 10px 0;
  opacity: 0.5;
}

.time-stamp {
  font-family: 'Caveat', cursive;
  font-size: 1.4rem;
  color: var(--cream);
}

@media (max-width: 700px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .handwritten-title {
    font-size: 2.5rem;
  }

  .menu-board {
    padding: 20px;
  }
}