/* Typography & Base */ body {
  font-family: 'Roboto', sans-serif;
  background-color: #f8f9fa;
  color: #333;
}
h1, h2, h3, h4, h5 {
  color: #093028;
  font-weight: 600;
}
p {
  line-height: 1.6;
}
/* Navbar */ .navbar {
  background-color: #093028;
}
.navbar-brand, .nav-link {
  color: #fff !important;
}
.nav-link:hover {
  text-decoration: underline;
}
/* Cards & Layout */ .card {
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border: none;
}
.card-title {
  font-weight: bold;
  color: #093028;
}
.card-text {
  color: #555;
}
.product-img, .logo-img, .venue-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
/* Buttons */ .btn-outline-primary {
  border-color: #093028;
  color: #093028;
}
.btn-outline-primary:hover {
  background-color: #093028;
  color: #fff;
}
/* Footer */ footer {
  background-color: #093028;
  color: #ccc;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}
/* Responsive tweaks */ @media (max-width: 768px) {
  .navbar-nav {
    text-align: center;
  }
  .card-body {
    flex-direction: column;
    align-items: flex-start;
  }
  .logo-img {
    margin-bottom: 10px;
  }
}
