* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  color: #1f1f1f;
  background-color: #f5f6f7;
  line-height: 1.6;
}

/* Hero */
.hero {
  height: 70vh;
  background: linear-gradient(
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.55)
    ),
    url("images/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.25rem;
}

/* Sections */
section {
  padding: 80px 8%;
  background-color: #ffffff;
}

section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about p {
  max-width: 900px;
  margin-bottom: 15px;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: #f2f3f4;
  padding: 30px;
  border-radius: 6px;
}

.service-card h3 {
  margin-bottom: 10px;
}

/* Focus */
.focus ul {
  list-style: none;
  max-width: 600px;
}

.focus li {
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
}

/* Gallery */
.gallery-section {
  background-color: #f9f9f9;
}

.gallery-intro {
  margin-bottom: 40px;
  color: #555;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* CTA */
.cta {
  text-align: center;
  background-color: #111;
  color: #ffffff;
}

.cta p {
  max-width: 700px;
  margin: 0 auto 30px;
}

.cta-button {
  display: inline-block;
  padding: 14px 28px;
  background-color: #ffffff;
  color: #111;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
}

.hero-watermark img {
  position: absolute;
  bottom: 40px;
  right: 40px;
  height: 80px;
  opacity: 0.12;
}

.footer-logo {
  height: 45px;
  margin-bottom: 15px;
  opacity: 0.9;
}

/* Footer */
.footer {
  background-color: #000;
  color: #bbb;
  text-align: center;
  padding: 30px;
  font-size: 0.9rem;
}
