* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    color: #000;
}

/* Navbar */
header {
    width: 100%;
    background: #fff;
    padding: 15px 50px;
    display: flex;
    justify-content: center;
    
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

/* Garis bawah animasi */
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #ff6521;
  transition: width 0.3s ease;
}

/* Efek hover */
.nav-links a:hover {
  color: #ff6521;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Tambahan untuk search bar */
.search-bar input {
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid #ddd;
  outline: none;
  transition: box-shadow 0.3s ease;
}

.search-bar input:focus {
  box-shadow: 0 0 8px rgba(255, 101, 33, 0.4);
  border-color: #ff6521;
}
.logo img {
    width: 90px;
}

.search-bar input {
    width: 250px;
    padding: 6px 10px;
    border: 1px solid #aaa;
    border-radius: 20px;
}

nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
}

.hamburger {
    display: flex;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
}

/* ===== SIGN UP SECTION ===== */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}

.signup-box {
  display: flex;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border-radius: 6px;
  overflow: hidden;
  width: 850px;
  max-width: 95%;
}

.signup-box img {
  width: 50%;
  object-fit: cover;
}

.form-section {
  padding: 40px;
  width: 50%;
}

.form-section h2 {
  color: #f97316;
  margin-bottom: 10px;
  font-weight: 600;
}

.form-section p {
  font-size: 14px;
  margin-bottom: 25px;
}

input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 14px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.btn-signup {
  background-color: #f97316;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 25px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
  width: 100%;
}

.btn-signup:hover {
  background-color: #e25e00;
}

.divider {
  text-align: center;
  margin: 20px 0;
  color: #999;
  position: relative;
}

.divider::before,
.divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 35%;
  height: 1px;
  background: #ccc;
}

.divider::before { left: 0; }
.divider::after { right: 0; }

.google-btn {
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.google-btn img {
  width: 18px;
}

.bottom-text {
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #555;
}

.bottom-text a {
  color: #f97316;
  text-decoration: none;
  font-weight: 500;
}

footer {/* All Footer */
  background: #ffffff;
  padding: 40px 60px;
  margin-top: 60px;
}
.footer-logo {
  height: 45px;    /* atur sesuai kebutuhan */
  width: auto;
  margin-bottom: 15px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
}
.footer-left h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.footer-right {
  display: flex;
  gap: 50px;
}
.footer-col h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #FF6521;
}
.footer-col p {
  font-size: 14px;
  margin: 20px 0;
}
.footer-col p:hover {
  color: #FF6521;
  cursor: pointer;
}
.footer-socials {
  width: 100%;
  margin-top: 40px;
  justify-content: flex-end;
  display: flex;
  gap: 25px; 
  padding-left: 80%;
}/*Exit Footer*/
#menuToggle
{
  display: block;
  position: absolute;
  top: 27px;
  right: 50px;
  
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a
{
  text-decoration: none;
  color: #232323;
  
  transition: color 0.3s ease;
}

#menuToggle a:hover
{
  color: #fff;
}


#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; 
  z-index: 2; 
  
  -webkit-touch-callout: none;
}

.burger-lines span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #000;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 1.5px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

.burger-lines span:first-child
{
  transform-origin: 0% 0%;
}

.burger-lines span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ .burger-lines span:nth-child(1) {
  opacity: 1;
  transform: rotate(45deg) translate(0px, -5px);
  background: #232323;
}

#menuToggle input:checked ~ .burger-lines span:nth-child(2) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ .burger-lines span:nth-child(3) {
  transform: rotate(-45deg) translate(2px, -1px);
}

.burger-lines input:checked:hover ~  span {
  background: white;
}

#menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 80vw;
  max-width: 300px;
  height: 150vh;
  margin-top: -50px;
  margin-right: -50px;
  padding: 80px 30px;
  background: #f15a24;
  box-sizing: border-box;
  overflow-y: auto;
  list-style: none;
  transform: translateX(100%); 
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
  visibility: hidden; 
  opacity: 0;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
    opacity 0.4s ease,
    visibility 0s linear 0.5s;
}


#menuToggle input:checked ~ ul {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
  transition:
    transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
    opacity 0.4s ease,
    visibility 0s;
}

#menu li
{
  padding: 10px 0;
  font-size: 22px;
}

#menu li label
{
  cursor: pointer;
}

#menuToggle input:checked ~ ul
{
  transform: none;
}



