/* v2/home/main-menu.css
   Minimal scaffolding for V2 main menu layout.
   Full visual styling (colors, borders, gradients, icons) will be added later.
*/

/* Main container */
.v2-main-menu {
  padding: 24px 16px;
  box-sizing: border-box;
  max-width: 480px;
  margin: 0 auto;
}

/* Header */
.v2-main-menu__header {
  text-align: center;
  margin-bottom: 24px;
}

.v2-main-menu__title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 4px 0;
}

.v2-main-menu__subtitle {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Pill Grid */
.v2-main-menu__pill-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Pill base */
.v2-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  padding: 16px 12px;
  min-height: 140px;

  border-radius: 8px;
  border: 1px solid #ddd;

  background: #fafafa;

  cursor: pointer;
  text-align: center;

  transition: background 0.15s ease, border-color 0.15s ease;
}

/* Disabled pills */
.v2-pill--disabled {
  opacity: 0.45;
  cursor: default;
}

/* Icon container (layout only). Visual style comes from .v2-icon--* in base.css */
.v2-pill__icon {
  display: block;
  width: 72px;
  height: 72px;
  margin-bottom: 8px;

  border-radius: 8px;

  /* Future-proofing for when actual images are used */
  box-sizing: border-box;
}

/* Label */
.v2-pill__label {
  font-size: 15px;
  font-weight: 600;
  color: #222;
  margin-bottom: 4px;
}