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

/* GLOBAL */
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  
  color: #333;
  background : url(../Assets/bg2.png) no-repeat center 0;
  background-size: cover;
  
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* CONTAINER BIAR RAPI */
.container {
  width: 100%;
  max-width: 1800px;
  margin: auto;
}

/* NAVBAR */
.header {
  background: transparent;
  color: #fff;
  width: 100%;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  height: 80px;
  width: auto;
  
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo h2 {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  gap: 20px;
}

.nav-menu a {
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #00bcd4;
}

/* HERO */
.hero {
  min-height: 100vh; 
  display: flex;
  justify-content: center;
  align-items: center;

  background: transparent;
  color: #fff;
  text-align: center;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 5rem;
  margin-bottom: 10px;
}

.hero p {
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 50px;
  background: #f8f8f8;
  color: #000000;
  border-radius: 5px;
  transition: 0.3s;
  
}

.btn:hover {
  background: #f19408;
  animation: shake 0.6s ease-in-out infinite;
}

@keyframes shake {
  0%   { transform: rotate(0deg); }
  20%  { transform: rotate(-3deg); }
  40%  { transform: rotate(3deg); }
  60%  { transform: rotate(-3deg); }
  80%  { transform: rotate(3deg); }
  100% { transform: rotate(0deg); }
}

/* SECTION */
.section {
  padding: 20px 0;
}

.section h2 {
  margin-bottom: 10px;
}

.after-hero {
    color: #ffffff; 
    text-align: center;
    margin-top: 10px;
    padding-top: 10px;
}

.footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: #aaa;
}

.footer p:hover {
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .navbar {
    flex-direction: column;
    gap: 10px;
  }

  .nav-menu {
    flex-direction: column;
    align-items: center;
  }

  .hero {
    text-align: center;
    height: auto;
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 2rem;
  }
}