/* Matt's Guitar Store — ported from the original Site.less, updated for Bootstrap 5.
   Same look as the 2017 version: fixed background photo, translucent panels. */

html {
  position: relative;
  min-height: 100%;
}

body {
  background: url(/images/background.jpeg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 70px;
  padding-bottom: 20px;
  font-family: Arial, Helvetica, sans-serif;
}

.body-content {
  padding-left: 15px;
  padding-right: 15px;
}

/* Bootstrap 5 renamed .panel to .card; these keep the original translucent treatment. */
.card,
.well {
  background-color: rgba(255, 255, 250, 0.85);
  margin-top: 2rem;
  margin-bottom: 3rem;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.card-header {
  background-color: rgba(255, 255, 250, 0.6);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.card-header h2,
.card-header h3 {
  margin: 0;
  font-size: 1.4rem;
}

.card-header a,
.card-body a,
.card-footer a {
  color: #212529;
}

.card-footer {
  background-color: rgba(255, 255, 250, 0.6);
}

.well {
  padding: 1.5rem;
  border-radius: 0.375rem;
}

.jumbotron {
  background-color: rgba(255, 255, 250, 0.85);
  padding: 2rem;
  border-radius: 0.375rem;
  margin-top: 2rem;
}

table {
  background-color: white;
  color: black;
}

#guitar-icon {
  border-radius: 50px;
  height: 40px;
}

#alert,
#empty {
  margin-top: 4em;
}

footer {
  color: white;
  text-align: center;
  padding: 1rem 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
  body {
    padding-top: 0;
  }

  .navbar-fixed-top {
    position: static;
  }
}
