
@charset "utf-8";
/* CSS Document */

/* Reset & Font */
* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
  font-family: 'Montserrat', sans-serif;
}


/* Navbar */
.navbar {
  position: sticky; 
  top: 0; 
  z-index: 1000;
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  padding: 15px 10%;
  background: #5682B1;
  backdrop-filter: blur(10px);
}

.navbar .logo { 
  font-weight: 900; 
  font-size: 30px; 
  color: #FFD700;
  text-align:left;
  
}

.navbar ul { 
  display: flex; 
  gap: 25px; 
  list-style: none; 
}

.navbar a {
  text-decoration: none; 
  color: #fff; 
  font-weight: 500; 
  position: relative;
}

.navbar a::after {
  content: ""; 
  position: absolute; 
  left: 0; 
  bottom: -5px;
  width: 0%; 
  height: 2px; 
  background: #FFD700;
  transition: 0.3s;
}

.navbar a:hover::after { width: 100%; }


/* Link admin style */
.admin-link {
  background: linear-gradient(45deg, #FFD700, #FF4500);
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 600;
  color: #fff !important;
  transition: 0.3s ease;
}

.admin-link:hover {
  background: linear-gradient(45deg, #FF4500, #FFD700);
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.admin-link i {
  margin-right: 6px; /* jarak icon dengan teks */
}



/* Banner */

.banner {
  position: relative;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.banner-image {
  width: 100%;
  height: 50vh;       /* separuh skrin */
  object-fit: cover;
  display: block;
}

/* TULISAN ATAS GAMBAR */
.banner-content {
  position: absolute;
  top: 50%;           /* tengah secara menegak */
  left: 50%;          /* tengah secara mendatar */
  transform: translate(-50%, -50%); /* betul-betul tengah */
  text-align: center;
  z-index: 2;
}

.banner h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.banner p {
  font-size: 1.4rem;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

/* Optional: tambah overlay gelap supaya tulisan lebih jelas */
.banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* lapisan gelap */
  z-index: 1;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

#navbar-ice {
 position: sticky; 
  top: 0; 
  z-index: 1000;
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  padding: 15px 8%;
  background: #5682B1;
  backdrop-filter: blur(10px);
  padding: 10px;
  
}

#navbar-ice .menu {
  position: sticky; 
  top: 0; 
  z-index: 1000;
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  padding: 10px 3%;
  background: #5682B1;
  backdrop-filter: blur(10px);
}

#navbar-ice .menu-title {
   color: #FFD700;
  font-weight: bold;
  font-size:24px;
}

#navbar-ice a {
  color: white;
  text-decoration: none;
  padding: 10px 10px;
}

#navbar-ice a:hover {
  background-color:#FFD700;
  border-radius: 1px;
}



body {
  background:#fff;
  color: #fff;
}

/* Section Intro */
.intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 10%;
  min-height: 100vh;
}

.intro-text {
  flex: 1;
}

.intro-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #FFD700, #FF4500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.intro-text p {
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1.2;
  color: #ddd;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  background: linear-gradient(45deg, #FF4500, #FFD700);
  color: #fff;
  transition: 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.btn:hover {
  background: linear-gradient(45deg, #FFD700, #FF4500);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

/* Section Menu */
.menu-section {
  margin: 54px 10%;
  color:#FFD700;
  font-size:24px;
}

.menu-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color:linear-gradient(45deg, #FF4500, #FFD700);
  text-align: left; /* headline tepi */
}
/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 50px; /* jarak lebih luas supaya kemas */
  justify-items: center;
}

/* Menu Box */
.menu-box {
  position: relative;
  background: #5682B1; /* glass effect */
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  padding: 25px 20px;
  backdrop-filter: blur(12px); /* glass blur */
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  transition: all 0.4s ease;
  width: 280px;
  height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Hover effect - gradient border */
.menu-box::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 20px;
  background: linear-gradient(45deg, #FF4500, #FFD700);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.menu-box:hover::before {
  opacity: 1;
}

.menu-box:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

/* Gambar */
.menu-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 15px;
  transition: transform 0.4s ease, border-radius 0.4s ease;
}

.menu-box:hover img {
  transform: scale(1.05);
  border-radius: 20px;
}

/* Text */
.menu-box h3 {
  margin: 12px 0 8px;
  font-size: 20px;
  font-weight: 800;
  color: #FFD700;
  letter-spacing: 1px;
}

.menu-box p {
  font-size: 15px;
  color: #ddd;
  margin-bottom: 12px;
  line-height: 1.5;
}

/* Price */
.menu-box .price {
  font-weight: bold;
  font-size: 16px;
  color: #FF4500;
  padding: 8px 18px;
  border-radius: 25px;
  background: #CCC;
  display: inline-block;
  transition: background 0.3s ease;
}

.menu-box .price:hover {
  background: rgba(255, 215, 0, 0.35);
}

/* Button Go to Top */
#goTopBtn {
  display: none; /* mula-mula hide */
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  font-size: 20px;
  border: none;
  outline: none;
  background: linear-gradient(45deg, #FF4500, #FFD700);
  color: white;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: 0.3s;
}




#goTopBtn:hover {
  background: linear-gradient(45deg, #FFD700, #FF4500);
  transform: translateY(-3px);
}



/* Footer */
.footer {
  background:#5682B1;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
  margin-top: 40px;
}

.footer p {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
}/* CSS Document */

/* Untuk layout bawah gambar */
.menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

/* Untuk layout bawah gambar */
.menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}



/* Gaya butang Like */
.like-btn {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #fff;
  transition: color 0.3s, transform 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.like-btn .heart {
  transition: transform 0.2s;
}



.like-btn.liked .heart {
  color: #ff4d6d; /* warna bila liked */
  transform: scale(1.2);
}

.like-btn:hover .heart {
  color: #ff7b9c;
}
