
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background: #059200; /* Kawasaki Green */
    color: #111;
    text-align: center;
}

.phone-block {
    font-size: 1.25em;
    font-weight: bold;
    background-color: #aee4ff;
    padding: 10px 20px;
    border-radius: 12px;
    display: inline-block;
    margin: 20px auto 0 auto;
}

.logo {
    display: block;
    max-width: 250px;
    margin: 10px auto 30px auto;
}

.services {
    padding: 10px 20px;
}

.services h1 {
    font-size: 2em;
    margin-bottom: 0.3em;
}

.services ul {
    list-style: none;
    padding: 0;
}

.services li {
    margin-bottom: 6px;
}

.gallery {
    padding: 30px 20px 10px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    background: white;
}

footer {
    margin-top: 20px;
    padding: 40px 20px;
    font-size: 0.9em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.book-now-btn {
    display: inline-block;
    text-decoration: none;
    position: relative;
}

.texas-button {
  background-image: url('images/texas-logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 140px !important;
  height: 138px !important;  /* force this height */
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: black;
  font-size: 1.1em;
  transition: transform 0.2s ease;
}

.texas-button:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}
