/* Reset some default styles for better consistency across browsers */
/* body, h1, h2, p, ul, li, form, label, input, textarea, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box; */

body {
  /* font-family: Arial, sans-serif; */
  font-family: "PT Sans Narrow", serif;
  font-weight: 400;
  font-style: normal;
  font-size: large;
  margin: 0;
  padding: 0;
}

header, footer {
  background-color: #4B0082;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

/* Business card formatting */

.card p {
	margin: unset;
	border: unset;
	padding: unset;
}

.card a:link, a:visited{
	color: #fff;
}

.card a:hover{
	text-decoration: none;
}

.card-title {
	font-size: 200%;
}

/* float the business card to the left in the header
currently disabled */

/* header .card {
 	display: table;
	float: left;
} */

nav ul {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

nav ul li {
  display: inline;
  /* margin: 0 1rem; */
  margin-top: 1rem;
  width: 100%;
  /* border: 1px solid blue; */
  list-style-type: none;
}

nav ul li a {
	display: flex;
	justify-content: center;
  color: #fff;
  text-decoration: none;
  }

nav ul li a:hover {
  background-color: #F0FFFF50;
}

main {
  padding: 2rem;
  /* font-size: 110%; */
}

.button {
  background-color: #4B0082;
  color: white;
  padding: 1rem 2rem;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  text-decoration: none;
}

.inquiries button {
	display: table;
}

.inquiries label{
	display: table;
}

.inquiries input, select {
	margin-bottom: 10px;
}

.gallery, .reviews {
  display: flex;
  flex-wrap: wrap;
}

.gallery img, .reviews div {
  margin: 1rem;
}

/* Gallery navigation buttons */
.nav-btn {
  background-color: #b54dff;
  color: white;
  padding: 10px 20px;
  margin: 10px;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.nav-btn:hover {
  background-color: #4b0082;
}

/* Adjust gallery item styles as needed */
/* .gallery-item {
  display: none;
}

.gallery-item.active {
  display: block;
} */

