header {
  grid-column: 1 / -1; 
  background-color: beige;
  padding: 20px;
  text-align: center;
  position: relative;
}
 
.header-title {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.header-title h1 {
  font-size: 4rem;
  line-height: 1.3;
  margin: 0;
  font-family: 'Shadows Into Light', cursive;
}

.tagline {
  font-size: 1rem;
  margin-bottom: 1px; 
  color: #333;
  font-weight: normal;
  font-family: "Lucida Grande", sans-serif;
}

.header-text {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 1rem;
  font-family: 'Shadows Into Light', cursive;
  border: 1px solid black;
  border-radius: 8px;
  padding: 6px 12px;
  max-width: 230px;
  line-height: 1.4;
  background-color: #fff;
}


section {
  flex: 1 1 45%;
  padding: 5px;
  border-radius: 8px;
}

body {
  margin: 0;
  font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
	
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(12, minmax(0,1fr)); 
  grid-template-rows: auto auto 1fr auto;
  gap: 10px;
  min-height: auto;
  max-width: 1000px;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}

.gallery-item {
  background-color: #fff;
  border-radius: 8px;
  text-align: center;
}



nav {
  grid-column: 1 / 3; 
  grid-row: 2 / 4;
  background-color: black;
  padding: 20px;
  color: white;
  display: flex;
  flex-direction: column; 
  gap: 15px;
}

nav ul {
  list-style: none; 
  padding: 0;
  margin: 0;
}

nav li {
  display: block; 
}

	
nav a {
  color: white;
  text-decoration: none;
  padding: 10px 0;
  text-align: center;
  display: block;
  padding-bottom: 10px; 
  line-height: 1.4;     
  word-break: break-word;
}

  nav a:hover {
  text-decoration: underline;
  color: lightblue;
}

main {
  grid-column: 3 / 11;
  grid-row: 2 / 4;
  background-color: ghostwhite;
  padding-right: 65px;
  padding-left: 65px;
  padding-top: 20px;
  padding-bottom: 25px;
  display: flex;
  flex-direction: column;         
  justify-content: center;        
  align-items: center;            

  min-height: 100%;               
  text-align: center;             
}
  
.contact {
  width: 100%;
  text-align: center;
  margin-top: auto;
  padding: 20px 0;
}

aside {
  grid-column: 11 / 13;
  grid-row: 2 / 4;
  background-color: black;
  padding: 24px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  font-size: 0.9rem;
  line-height: 1.8;
  border-radius: 8px;
}


aside span {
  display: block;
  margin-bottom: 6px;
}

aside h3 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 6px;
  color: beige;
  margin-top: 3px;
}


.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 20px; 
  margin-top: 10px;
  line-height: 1.6;
  word-break: break-word;
}

footer {
  grid-column: 1 / -1; 
  background-color: beige;
  color: black;
  text-align: center;
  padding: 15px;
}
