/* styles.css */

body, html {
  margin: 0;
  padding: 0;
  height: 20%;
  font-family: 'Roboto Mono', monospace;
}

body {
  height: 100vh;
  overflow: hidden;
}

.landing {
  background-color: #3E16D5;
  background-image: url('bg-1.png');
  background-size: cover;     
  background-position: center; 
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.logo {
  max-width: 500px;
  margin-bottom: 2rem;
}

.nav-buttons a {
  margin-top: 30px;
  margin: 0.25rem 0.25rem;
  color: #3D1EB1;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-buttons a:hover {
  color: #E63C23;
  text-underline-position: 1px;
}

.veg-button img {
  width: 160px;
  height: auto;
}

.veg-button {
  position: absolute;
  cursor: pointer;
  transition: transform 0.3s;
}

.veg-button img {
  width: 200px;
  height: auto;
  transition: transform 0.3s;
}

.veg-button:hover img {
  transform: scale(1.1);
}

.veg-button .label {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-30%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.4rem 0.8rem;
  font-size: 0.9rem;
  border-radius: 6px;
  margin-top: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.veg-button:hover .label {
  opacity: 1;
}