.wpforms-form input[type],
.wpforms-form label,
.wpforms-form button[type=submit] {
  font-family: 'Reggae One', 'Helvetica', sans-serif;
	color: #ffffff;
}
.wpforms-submit {
  display: inline-block;
  padding: 0;
  width: 200px; /* Adjust the width as needed */
  height: 60px; /* Adjust the height as needed */
  border: none;
  background-color: transparent;
  background-image: url('../images/thin_next.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-indent: -9999px; /* Hide the button text */
  cursor: pointer;
  transition: transform 0.3s ease;
}

.wpforms-submit:hover {
  transform: scale(1.05);
}

.wpforms-submit:active {
  transform: scale(0.95);
}

.cool-button {
  display: inline-block;
  padding: 0;
  width: 200px; /* Adjust the width as needed */
  height: 60px; /* Adjust the height as needed */
  border: none;
  background-color: transparent;
  background-image: url('../images/thin_next.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-indent: -9999px; /* Hide the button text */
  cursor: pointer;
  transition: transform 0.3s ease;
}

.cool-button:hover {
  transform: scale(1.05);
}

.cool-button:active {
  transform: scale(0.95);
}


@import url('https://fonts.googleapis.com/css2?family=Rancho&display=swap');

.menu-container {
    font-family: 'Rancho', cursive;
    color: black;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.menu-section { margin-bottom: 40px; }
.menu-item { margin-bottom: 25px; }
.item-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dotted rgba(0, 0, 0, 1.0);
    margin-bottom: 8px;
}
.item-name {
    font-size: 24px;
    margin: 0;
}
.item-price {
    font-size: 18px;
    color: black;
}
.item-desc {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 5px;
}
.addon {
    font-size: 16px;
    margin-left: 20px;
    opacity: 0.8;
}
.drink-prices {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: end;
}
.dietary-tag {
    background: #333;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 14px;
    display: inline-block;
    margin-top: 8px;
    color: white;
}

@media (min-width: 768px) {
    .menu-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .item-name {
        font-size: 22px;
    }
    .item-desc {
        font-size: 16px;
    }
    .drink-prices {
        gap: 10px;
    }
}