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

body {
  font-family: Arial, sans-serif;
  background-color: #121212;
  color: #e0e0e0;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 40px 0;
}

.hero {
  background: url('kepek/hero.jpg') no-repeat center center/cover;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.hero .overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 10px;
}

.hero h1 {
  font-size: 2.8rem;
  color: #fff;
}

.hero p {
  font-size: 1.2rem;
  margin: 15px 0;
}

.cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #e63946;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.cta:hover {
  background: #c62828;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #fff;
}

.grid {
  display: grid;
  gap: 20px;
}

.services .grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

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

.card {
  background: #1e1e1e;
  border-radius: 10px;
  padding: 20px;
}

.card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 8px;
}

.testimonial blockquote {
  font-style: italic;
  background: #1e1e1e;
  padding: 20px;
  border-left: 5px solid #e63946;
  margin-bottom: 10px;
  border-radius: 5px;
}

.testimonial cite {
  display: block;
  text-align: right;
  color: #ccc;
}

footer {
  text-align: center;
  padding: 20px;
  background: #0a0a0a;
  color: #888;
}

.callback-button {

  display: inline-block;

  padding: 12px 24px;

  background-color: #ff4500;

  color: white;

  text-decoration: none;

  font-weight: bold;

  border-radius: 6px;

  transition: background-color 0.3s ease;

}



.callback-button:hover {

  background-color: #e63e00;

}