/* Base Styles */
body, html {
  height: 100%;
  font-family: "Inconsolata", sans-serif;
}

/* Hero Background Image */
.bgimg {
  background-position: center;
  background-size: cover;
  background-image: url("../images/The%20Barn%20at%20Beaver%20Creek%2010162025.jpg");
  min-height: 75%;
}

/* Menu Tab Panels */
.menu {
  display: none;
}

/* Grid Layout */
.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Column Layout - 3 equal columns */
.column {
  flex: 33%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
}

/* Accessibility - Skip to main content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* Hero Title */
.hero-title {
  font-size: 60px;
}

/* Content Container */
.content-container {
  max-width: 1000px;
}

/* Product Images */
.product-image {
  width: 100%;
  max-width: 1000px;
  margin-top: 32px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }
}

.store-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 32px;
  margin-bottom: 32px;
}

.store-product-grid img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

