/*
Theme Name: My Custom Theme
Theme URI: http://localhost/mywebsite
Author: Nama Kamu
Author URI: http://localhost/mywebsite
Description: Tema kustom dari desain HTML, CSS, JS.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: mycustomtheme
*/

/* Reset dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

/* Hero Section (gambar full se-layar) */
.hero {
    background-image: url('sdg.jpg'); /* Ganti dengan nama file gambar kamu */
    background-size: cover;
    background-position: center;
    width: 100vw;
    height: 100vh;
    position: relative;
}

/* Navbar */
.nav-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 102, 51, 0.9); /* Hijau semi transparan */
    color: white;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-bar .menu a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
}

.nav-bar .menu a:hover {
    text-decoration: underline;
}

/* Konten bawah */
.content {
    padding: 60px 30px;
    text-align: center;
}

.content h1 {
    margin-bottom: 15px;
}

.content p {
    max-width: 800px;
    margin: auto;
    font-size: 18px;
    line-height: 1.6;
}
/* Atur dropdown menu */
.dropdown-menu {
  background-color: #fff;
  border-radius: 6px;
  padding: 10px 0;
  min-width: 250px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: hidden;
}

/* Atur setiap item */
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  white-space: normal; /* agar tidak terpotong */
  word-wrap: break-word;
}
.dropdown-menu {
  max-height: 300px; /* Ubah sesuai kebutuhan tinggi maksimal dropdown */
  overflow-y: auto;  /* Scroll hanya vertikal */
  overflow-x: hidden; /* Hilangkan scroll horizontal */
}


/* Efek hover */
.dropdown-menu li a:hover {
  background-color: #f2f2f2;
  color: #007bff;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}











