* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: url('img/menu-bg.jpg') center/cover no-repeat;
  color: white;
}

.brand-title, .menu-title, .headline, .scroll-down {
  font-family: 'Bungee', sans-serif;
}

/* Navbar */
.navbar {
  width: 100%;
  height: 105px;
  background-color: #683d90;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
}

.navbar-container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.logo {
  position: absolute;
  left: 24px;
  width: 160px;
  height: 68px;
  margin-top: -35px;
  object-fit: contain;
}


.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  opacity: 0.5;
  transition: 0.2s;
}

.nav-links a.active,
.nav-links a:hover {
  opacity: 1;
}

/* Content */
.menu-content {
  padding-top: 140px;
  padding-bottom: 60px;
  max-width: 1440px;
  margin: auto;
  text-align: center;
}


/* Matahari animasi */



.menu-content {
  position: relative;
}


.sun-animation {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 60px;
  height: 60px;
  animation: spin 6s linear infinite;
  z-index: 5;
}

.sun-animation img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

/* Keyframes animasi rotasi */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


/* Title */
.menu-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 40px;
  font-family: 'Bungee';
}


.highlight-animate {
  display: inline-block;
  position: relative;
  color: white;
  font-weight: 800;
  font-size: 48px;
  padding: 12px 32px;
  overflow: hidden;
  z-index: 1;
}

.highlight-animate::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #006c00;
  z-index: -1;
  animation: slide-highlight 1.2s ease-out forwards;
  border-radius: 4px;
}

@keyframes slide-highlight {
  to {
    left: 0;
  }
}

/* Tabs */
.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.tab {
  background-color: #d62828;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  border-radius: 30px;
  transition: 0.3s;
  opacity: 0.7;
}

.tab.active,
.tab:hover {
  opacity: 1;
}

/* Menu Grid */

/* Tab Hover Characters */
.tab-wrapper {
  position: relative;
  display: inline-block;
}

.tab-left-char,
.tab-right-char {
  position: absolute;
  top: -40px;
  width: 40px;
  opacity: 0;
  transition: 0.3s ease;
  pointer-events: none;
}

.tab-left-char {
  left: -30px;
}

.tab-right-char {
  right: -15px;
}

.tab-wrapper:hover .tab-left-char,
.tab-wrapper:hover .tab-right-char {
  opacity: 1;
  top: -20px;
}


.menu-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.menu-item {
  width: 260px;
  background-color: #fff;
  color: #000;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: transform 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-5px);
}

.menu-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.menu-item h3 {
  padding: 12px 16px 0 16px;
  font-size: 18px;
  font-weight: 700;
}

.menu-item p {
  padding: 0 16px 16px 16px;
  font-size: 14px;
}

/* Footer */
.footer {
  background-color: #683d90;
  padding: 24px;
  color: white;
  z-index: 2;
  position: relative;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1440px;
  margin: 0 auto;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  min-width: 200px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-left a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.footer-center {
  text-align: center;
  font-size: 14px;
  margin-top: 25px ;
}

.footer-right {
  text-align: right;
}

.footer-right h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.footer-right p {
  font-size: 14px;
}

.sosmed-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
}
