/* === RESET & GLOBAL === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #111;
  background: #fff;
}

.wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* === NAVBAR === */
nav {
  background: #fff;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

nav .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo img {
  height: 60px;
}

.menu ul {
  display: flex;
  list-style: none;
  gap: 25px;
  flex-wrap: wrap;
}

.menu ul li a {
  text-decoration: none;
  color: #111;
  font-size: 18px;
  font-weight: bold;
  transition: color 0.3s;
}

.menu ul li a:hover {
  color: #b71c1c;
}

@media (max-width: 768px) {
  .menu ul {
    justify-content: center;
    gap: 15px;
  }

  .menu ul li a {
    font-size: 16px;
  }
}

/* === HERO SECTION === */
#home {
  height: 100vh;
  background: url("beckgron.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

#home .overlay {
  background: rgba(0,0,0,0.5);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.kolom {
  max-width: 700px;
  color: #fff;
}

.kolom .deskripsi {
  font-size: 20px;
  font-weight: bold;
  color: #fd0101;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.kolom h2 {
  font-size: 42px;
  margin-bottom: 15px;
  font-weight: bold;
}

.kolom p {
  font-size: 18px;
}

@media (max-width: 768px) {
  .kolom h2 {
    font-size: 28px;
  }
  .kolom p {
    font-size: 16px;
  }
}

/* === ABOUT SECTION === */
#about {
  padding: 80px 20px;
  background: #f9f9f9;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.about-text, .about-img {
  flex: 1;
  min-width: 280px;
}

.about-text h2 {
  font-size: 32px;
  color: #b71c1c;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #333;
}

.about-img {
  overflow: hidden;
  border-radius: 12px;
  max-width: 400px;
  margin: auto;
}

.about-img img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-img img:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* === SERVICES SECTION === */
#services {
  padding: 80px 20px;
  text-align: center;
  background: #fff;
}

.section-title {
  font-size: 32px;
  color: #b71c1c;
  margin-bottom: 40px;
}

.services-content {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.service-card {
  flex: 1;
  min-width: 250px;
  background: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 22px;
  color: #111;
}

.service-card p {
  font-size: 16px;
  color: #555;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* === GALLERY SECTION === */
#gallery {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

.gallery-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.1);
}

/* === CONTACT SECTION === */
#contact {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  max-width: 900px;
  margin: auto;
}

.contact-form {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
}

.contact-form textarea {
  resize: none;
  height: 120px;
}

.contact-form button {
  padding: 12px;
  background: #b71c1c;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #931a1a;
}
