body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
}

.layout {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

#sidebar {
  width: 320px;
  max-height: 600px;
  overflow-y: auto;
}

#map {
  flex: 1;
  height: 600px;
  background: #e5e5e5;
}

.brewery-card {
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  cursor: pointer;
}

.brewery-card:hover {
  background: #f3f3f3;
}

.site-header {
    width: 100%;
    margin-bottom: 20px;
}

.header-banner {
    width: 100%;
    overflow: hidden;
}

.header-banner {
    width: 100%;
    height: 370px;
    overflow: hidden;
}

.header-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background: #073b67;
    padding: 0 20px;
}

.nav-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 6px;
  border-radius: 50%;
}
.nav-button {
    border: none;
    background: transparent;
    color: white;
    padding: 16px 18px;
    font-size: 15px;
    cursor: pointer;
}

.nav-button:hover {
    background: rgba(255,255,255,0.12);
}

.nav-button.active {
    border-bottom: 4px solid #42c96b;
}.about-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 24px 70px;
}

.about-hero {
    margin-bottom: 40px;
}

.about-hero h1 {
    font-size: 38px;
    margin-bottom: 8px;
}

.about-hero h2 {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 24px;
}

.about-hero p,
.about-section p {
    font-size: 18px;
    line-height: 1.7;
}

.about-section {
    margin-top: 35px;
}

.about-section h2 {
    font-size: 26px;
    margin-bottom: 12px;
}

.main-nav a.nav-button {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.discover-section {
    margin-top: 50px;
}

.discover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.discover-card {
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.discover-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.discover-icon {
    font-size: 34px;
    margin-bottom: 10px;
}

.discover-card h3 {
    margin: 0 0 10px;
    color: #073b67;
}

.discover-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

@media (max-width: 800px) {
    .discover-grid {
        grid-template-columns: 1fr;
    }
}
