/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* BASE */
body {
  font-family: Georgia, "Times New Roman", serif;
  color: #111;
  background: #ffffff;
  line-height: 1.6;
}

/* HERO */
.hero {
  background: #0b1f33;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.hero-content h1 {
  color: #ffffff;
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  letter-spacing: 2px;
}

.tagline {
  color: #dbe7f3;
  font-size: 1.2rem;
  margin-top: 10px;
}

.service-area {
  color: #a9bfd6;
  font-size: 0.95rem;
  margin-top: 6px;
}

/* CONTENT */
main {
  max-width: 1100px;
  margin: auto;
}

.content {
  padding: 70px 20px;
}

.content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.content.gray {
  background: #f2f2f2;
}

.content ul {
  list-style: disc;
  padding-left: 20px;
}

.content li {
  margin-bottom: 10px;
}

/* GALLERY */
.gallery {
  padding: 70px 20px;
}

.gallery h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.subtitle {
  color: #555;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
}

/* CONTACT */
.contact {
  background: #0b1f33;
  color: #ffffff;
  padding: 70px 20px;
  text-align: center;
}

.contact h2 {
  margin-bottom: 20px;
}

.contact a {
  color: #ffffff;
  text-decoration: none;
}

.text-button {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 30px;
  background: #ffffff;
  color: #0b1f33;
  border-radius: 30px;
  font-weight: bold;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
  color: #666;
}
