* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
  
html {
  scroll-behavior: smooth;
}

/* HEADER */
header {
  background: transparent;
  width: 100%;
  position: fixed;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  height: 10vh;
  transition: background 0.3s ease-in-out;
}

.navbar ul li {
  list-style: none;
  display: inline-block;
}

.navbar ul li a {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-decoration: none;
  color: rgb(251, 197, 13);
  font-size: 18px;
  padding:0 37px;
  text-transform: capitalize;
}

.navbar ul li a:hover {
  color: rgb(184, 63, 46);
}

.logoNav {
  position: relative;
  width: 90px;
  transition: all 0.3s ease-in-out; /*Efek transisi */
  top: 35px;
  left: -15px;
}

.logoNav.scrolled {
  width: 35px; 
  top: 0px; 
  left: 0px; 
}

header.scrolled {
  background: black;
  transition: background 0.3s ease-in-out;
}
/* HEADER */

  
/* JUDUL */
div {
  display: flex;
  justify-content: center;
  align-content: center;
}

.judul {
  position: absolute;
  align-self: center;
  width: 100%;
}

.judul h1 {
  color: rgb(251, 197, 13);   
  font-family:'Times New Roman', Times, serif;
  position: absolute;
  font-size: 1000%;
  top: -200px; 
}

.judul h2 {
  color: rgb(184, 63, 46);
  font-family: 'Arial Rounded MT';
  position: absolute;
  top: -40px;
  letter-spacing: 15px;
}

.judul button {
  width: 200px;
  height: 50px;
  border-radius: 3em;
  background: rgb(251, 197, 13); 
  font-family: 'Arial Rounded MT';
  font-size: 20px;
  font-weight: bolder;
  position: relative;
  top: 30px;
}

.judul a {
  font-family: 'Arial Rounded MT';
  font-size: 20px;
  font-weight: bolder;
  text-decoration: none;
  color: black;
}
/* JUDUL */


/* SPECIAL */
.promo {
  height: 400px;
  margin: 40px;
  display: flex;
  justify-content:start;  
  flex-direction: column;
  align-items: center; 
}

.promo h1 {
  font-family:'Times New Roman', Times, serif;
  color: rgb(56, 21, 17);
  font-size: 250%;
}

.container {
  width: 100%;
  margin: 10px;
  padding: 20px;
}

.menu {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
  
.item {
  width: 21%;
  background: white;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  justify-content:start;  
  flex-direction: column;
  align-items: center; 
}
        
.item img {
  width: 100%;
  border-radius: 10px;
}
        
.price {
  color: #c0392b;
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
}
  
.name {
  font-size: 16px;
  font-weight: bold;
}
  
.desc {
  font-size: 14px;
  color: gray;
  text-align: center;
}
/* SPECIAL */


/* PESANAN */
.pesanan {
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
}

.pesanan button {
  position: absolute;
  bottom: 160px;
  right: 400px;
  width: 200px;
  height: 50px;
  background: #c0392b;
  border: none;
}

.pesanan a {
  color: white;
  font-size: 17px;
  text-decoration: none;
  font-weight: bold;  
  font-family:'Times New Roman', Times, serif;
}
/* PESANAN */


/* MENU */
.menuuu {
  padding: 2.5em;
  padding-top: 0px;
}

.carousel-wrapper {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  padding: 0 40px; 
}

.carousel-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  flex: 0 0 auto;
  width: 280px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.carousel-item img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.item-text {
  flex: 1;
}

.item-title {
  font-weight: bold;
  margin-bottom: 4px;
}

.item-desc {
  font-size: 14px;
  color: #666;
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #f0f0f0;
  color: #333;
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s, box-shadow 0.3s;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-button:hover {
  background-color: #e0e0e0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.carousel-item.button-next:hover {background: #ddd;}
.nav-left  {left: 4px;}
.nav-right {right: 4px;}
 
.carousel-item.button-next {
  justify-content: center;
  cursor: pointer;
  background: #eee;
  text-align: center;
}

.button-next a {
  font-size: 18px;
  font-weight: bold;
  color: #444;
  text-decoration: none;
}
/* MENU */

/* QUOTES */
.hero-section {
  height: 70vh;
  background-image: url('/image/burger.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
  text-shadow: 1px 1px 5px #000;
}

.content-section {
  padding: 60px 20px;
  height: 55vh;
  background-color: #f9f9f9;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.content-section h2 {
  font-family: 'Bree Serif', serif;
  font-size: 32px;
  color: #3e2723; /* cokelat gelap */
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.content-section .underline {
  width: 80px;
  height: 3px;
  background-color: #b71c1c; /* merah gelap */
  margin: 0 auto 30px auto;
}

.content-section p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  text-align: center;
}
/* QUOTES */


/* ABOUT */
.visit-section {
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  font-family: 'Patua One', cursive;
  position: relative;
}

.visit-title {
  font-size: 24px;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding: 0 20px;
  margin-bottom: 10px;
  font-family: 'Patua One', cursive;
}

.visit-title::before,
.visit-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: #ddd;
}

.visit-title::before {left: -70px;}
.visit-title::after {right: -70px;}

.address {
  margin: 10px 0;
  font-family: 'Patua One', cursive;
  font-size: 16px;
}

.order-label {
  margin: 20px 0 10px;
  font-style: italic;
  font-family: 'Patua One', cursive;    
}

.order-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
  font-family: 'Open Sans', sans-serif;
}

.order-icons a {
  color: #c0392b;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.order-icons i {
  font-size: 16px;
}

.about{margin: 0px; position: relative;}
.about img {position: absolute;}
/* ABOUT */


/* INPO */
.inpo {display: none;}
.inpo:target {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 36px;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
} 
      
#kotak {
  width: 700px;
  height: 300px;
  background: white;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  border-radius: 2em;
  box-shadow: 0 0 20px black; 
  padding: 30px;

}

.close {
  color: #9b9898;
  font-weight: bold;
  text-decoration: none;
  position: absolute;
  top: 20px;
  right: 30px;
  font-weight:bolder;
}
.close:hover {color: #c0392b;}

#kotak h3     {
  position: absolute; 
  top: 10px;
  color: #c0392b;
  font-family: 'Patua One', cursive;
  font-weight: bolder;
}        
#kotak p      {
  /* position: absolute; */
  text-align: center; 
  font-size: 18px; 
  margin-bottom: 10px;
}

.salam_admin      {
  position: absolute;
  bottom: 15px;
  text-align: center; 
  font-size: 15px; 
  margin-bottom: 10px;
  text-decoration: none;
  color: #c0392b;
  font-weight: bold;
}
/* INPO */