@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* ini kunci utama */
	font-family: "Roboto", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-variation-settings:
		"wdth" 75;
	font-size: 0.95em;
}

/* ================= TOPBAR ================= */
.topbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
	font-weight: 500;
    background: rgba(255,255,255,0.8);
	color: #666;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    padding: 0 111px;
    z-index: 999;
    transition: transform 0.3s ease;
	border-bottom: 1px solid #ddd;
}

.topbar.hide {
    transform: translateY(-100%);
}

.logo {
    font-weight: bold;
    margin-right: auto;
}

/* MENU */
.menu {
    display: flex;
    gap: 30px;
}

.menu-item {
    position: relative;
    cursor: pointer;
}

.menu-item:hover{
	color: #2196f3;
}

/* underline */
.menu-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #26D19B;
    transition: 0.3s;
}
.menu-item:hover::after {
    width: 100%;
}

/* DROPDOWN */
.dropdown {
    position: absolute;
    top: 20px;
    left: 0;
    background: #2196f3;
    padding: 10px 0;
    border-radius: 0 15px 15px 15px;
    display: none;
    min-width: 220px;
}

.menu-item:hover .dropdown {
    display: block;
}

.dropdown div {
    padding: 10px 20px;
    color: white;
    display: flex;
    justify-content: space-between;
}

.dropdown div:hover {
    background: rgba(255,255,255,0.1);
}

.dropdown div::after {
    content: "";
    font-size: 10px;
}

/* LOGIN */
.login {
    margin-left: auto;
    margin-right: 40px;
	text-decoration: none; 
	color: #666;
}
.login:hover{
	color: #26D19B;
}

/* ================= SLIDER ================= */
.slider {
	margin-top: 40px;
    width: 100%;
    height: 680px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.slides {
    display: flex;
    position: relative;
    z-index: 1;
	will-change: transform;
}

.slides img {
    min-width: 100%;
    height: 680px;
    object-fit: cover;
	display: block;
}

/* BUTTON */
.btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: 0.2s;
}

.btn:hover {
    transform: translateY(-50%) scale(1.2);
}

.btn::before {
    content: '';
    border: solid #2196f3;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 6px;
}

.prev { left: 15px; }
.next { right: 15px; }

.prev::before { transform: rotate(135deg); }
.next::before { transform: rotate(-45deg); }

/* DOT */
.dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.dot {
    width: 10px;
    height: 10px;
    margin: 5px;
    background: rgba(255,255,255,0.5);
    display: inline-block;
    border-radius: 50%;
}

.dot.active {
    background: white;
}

/* ================= CONTENT ================= */
.content {
    padding: 70px 170px;
}

/* ================= FOOTER ================= */
.footer {
	text-align: center;
    background: #E9EEF6;
	border-top: 1px solid #ddd;
    color: #666;
    padding: 30px;
}

.logotopbar{
	width: auto;
	height: 40px; 
}

hr {
	margin-top: 30px;
	margin-bottom: 30px;
  border: none;
  border-radius: 12px;
  width: 100px;
  height: 5px;
  background-color: #26D19B;
}

h3{
	color: #777;
	font-weight: thin;
}