/* CSS Custom Properties for easy adjustments */

:root {
  --background-opacity: 0.25;
}

/* Print settings */

/* Reset */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styles */

body {
  font-family: 'Happy Monkey', cursive;
  background: #0f0f0f;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Menu container */

.menu {
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
  border: none;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Background pattern */

.background-pattern {
  position: absolute;
  inset: 0;
  background: url('../../assets/img/food-bg.jpg') no-repeat center center;
  background-size: cover;
  opacity: var(--background-opacity);
  pointer-events: none;
  z-index: 1;
}

/* Ice Cream Logo Layer */

.logo-layer {
  position: absolute;
  top: 120px;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../../assets/img/Ice%20Cream%20Logo2.png') no-repeat center center;
  background-size: contain;
  opacity: 0.15;
  pointer-events: none;
  z-index: 1.5;
}

/* Header */

.header {
  background: rgba(0,0,0,0.8);
  color: #ffffff;
  text-align: center;
  padding: 25px 0;
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 900;
  letter-spacing: 3px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
  z-index: 2;
  flex-shrink: 0;
}

/* Content grid */

.content {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 20px;
  gap: 18px;
  z-index: 2;
  overflow: hidden;
  color: #fff;
}

/* Column layout */

.content > div {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Section styling */

.section {
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px;
  border-left: 8px solid rgba(255,255,255,0.3);
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Section titles */

.section-title {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  display: inline-block;
  padding: 8px 22px;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  margin-bottom: 14px;
  border-radius: 6px;
  align-self: flex-start;
}

/* Menu items */

.item {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px dotted rgba(255,255,255,0.25);
  font-size: clamp(15px, 1.8vw, 18px);
}

.item:last-child {
  border-bottom: none;
}

.item-name {
  flex: 1;
}

.item-price {
  font-weight: 700;
  color: #ffd700;
  min-width: 75px;
  text-align: right;
}

/* Notes and special text */

.note {
  font-size: clamp(14px, 1.7vw, 16px);
  font-style: italic;
  text-align: center;
  color: #ffd700;
  margin: 12px 0;
}

/* Toppings grid */

.toppings {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px 14px;
  font-size: clamp(14.5px, 1.65vw, 16px);
}

/* Allergy notice box */

.allergy-notice {
  background: rgba(0,0,0,0.75);
  padding: 18px;
  border-radius: 12px;
  text-align: center;
  margin-top: auto;
}

.coca-cola-text {
  font-size: clamp(19px, 2.4vw, 24px);
  font-weight: 700;
  margin: 15px 0 5px 0;
  color: #fff;
}

/* Footer */

.footer {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: clamp(12px, 1.4vw, 15px);
  opacity: 0.85;
  z-index: 2;
  color: #fff;
}

/* Responsive adjustments */

@media (max-height: 600px) {
  .content {
    padding: 12px;
    gap: 12px;
  }
}

@media (max-height: 600px) {
  .section {
    padding: 12px;
  }
}

/* Easter Bunny Styles */

