body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  color: #333;
}

/**
header { 
	background: linear-gradient(to right, #a8dadc, #457b9d); 
	color: white; 
	padding: 20px; 
	text-align: center; 
}
*/

header {
  background-image: url('images/hero_background.jpg'); /* ganti dengan file gambar kamu */
  background-size: cover;       /* isi penuh area header */
  background-position: center;  /* fokus di tengah */
  background-repeat: no-repeat; /* jangan diulang */
  color: white;
  padding: 40px 20px;           /* beri ruang agar konten tidak menempel */
  text-align: center;
  position: relative;
}

/* Overlay opsional agar teks lebih terbaca */
header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);  
  z-index: 0;
}

header .logo, header nav {
  position: relative; /* supaya di atas overlay */
  z-index: 1;
}


.logo img {
  max-width: 100px;
}

.logo h1 {
  margin-bottom: 5px; /* rapatkan jarak bawah judul */
}

.logo p.slogan {
  margin-top: 0;      /* hilangkan jarak atas paragraf */
  font-style: italic; /* opsional: beri gaya miring agar lebih elegan */
  font-size: 1rem;    /* bisa disesuaikan agar proporsional */
  margin-bottom: 35px; /* beri jarak antara logo dan nav */	
}

nav {
  margin-top: 10px;
}

nav a { 
	color: #f1faee; /* teks link lebih terang agar kontras */ 
	margin: 0 15px; 
	text-decoration: none; 
	font-weight: bold; 
}

.hero {
  text-align: center;
  padding: 40px 20px;
  background: #f9f9f9;
}

.cta-buttons .btn {
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  background: #b30000;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px 20px;
}

.service-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: justify;
}

.service-card img {
  max-width: 100%;
  border-radius: 5px;
}

/**
.about, .contact {
  padding: 40px 20px;
  background: #f0f0f0;
}
*/

.about {
  padding: 40px 20px 20px; /* atas 40px, kanan-kiri 20px, bawah 20px */
  background: #f0f0f0;
}

.contact {
  padding: 20px 20px 40px; /* atas 20px, kanan-kiri 20px, bawah 40px */
  background: #f0f0f0;
}


form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: 0;
}

form input, form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  background: #b30000;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
}

.notification {
  margin-bottom: 20px;   /* beri jarak ke bawah sebelum form */
  padding: 10px;
  border-radius: 5px;
  font-weight: bold;
}

.notification.success {
  color: green;
}

.notification.error {
  color: red;
}

footer {
  text-align: center;
  padding: 20px;
  background: #222;
  color: white;
}

.bottom-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 20px;
  background: #f0f0f0;
  align-items: stretch; /* penting: samakan tinggi semua child */
}

.bottom-row > div {
  flex: 1;
  min-width: 300px;
}


.links ul {
  list-style: none;
  padding: 0;
}

.links li {
  margin: 10px 0;
}

.links a {
  text-decoration: none;
  color: #457b9d;
  font-weight: bold;
}

.links {
  background: #fff;   /* putih */
  padding: 20px;
  border-radius: 8px; /* opsional: biar lebih rapi */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* opsional: efek bayangan */
}
