/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Times New Roman', Times, serif;
}
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.6;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

@media (max-width: 600px) {
  html {
    font-size: 0.8rem; /* reduces base font size */
  }
}
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.content {
  flex: 1;
}

.site-footer {
  background-color: #7a98bb;
  color:#012a58;
  text-align: center;
  padding: 1rem 0;
}

header {
  margin: 0;
  padding: 0;
  text-align: left;
  margin-bottom: 4rem;
}

header h1 {
  font-size: 3rem;
  letter-spacing: 1px;
}

.tagline {
  font-size: 1.2rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(4rem, 20rem));
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 4rem;
}

.gallery img {
  width: 100%; /* Fill the grid cell */
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 6px;
  transition: transform 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  filter: grayscale(30%);
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  filter: grayscale(0%);
}

.contact {
  margin-top: 3rem;
  text-align: left;
  padding-left: 1rem;
}

.contact a {
  text-decoration: none;
  font-weight: bold;
  color: #560358;
}

.contact a:hover {
  color: #fc0463;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;
}

.navbar a {
  text-decoration: none;
  margin: 0 10px;
  color: #012a58;
  font-size: 1.4rem;
}

.navbar a:hover {
  color: #fc0463;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}


.logo{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px 0;
}


.logo a{
  background-color: #7a98bb;
  color:#012a58;
  border-radius: 10px;
  margin-top: 1rem;
  padding:0.7rem;
  padding-left:5rem;
  padding-right:5rem;
  font-weight: bold;
  text-decoration: none;
}

.logo a:hover{
  color:#fc0463;
}

.faq {
  margin-left:1.5rem;
}

.faq p{
  font-size: 1.2rem;
  padding-left: 1rem;
  padding-bottom: 1rem;
}

.post-tattoo {
  margin-left:1.5rem;
}

.post-tattoo ul{
  font-size: 1.2rem;
  padding-left: 2rem;
}

.post-tattoo li{
  padding-bottom:1rem;
}
.important{
  font-weight:bold; 
  color:#fc0463
}
