body {
  font-family: "Poppins", sans-serif;
  background-color: #fafafa;
}

/* Navbar */
.navbar {
  background: linear-gradient(135deg, #1a1a1a, #2d3e2d);
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-link {
  color: #d1c4b3; /* Softer cream for better readability */
  transition: all 0.3s ease-in-out;
  padding: 10px 15px;
  text-transform: capitalize;
}

.nav-link:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1); /* Subtle highlight */
  border-radius: 5px;
}

.nav-link:active {
  color: #b6ff9a;
}

/*brand log*/
.navbar-text {
  margin: 0 200px 0 100px;
}
.brand_logo {
  border-radius: 30px;
}

/* Language */
/* Increase icon size */
.dropdown-toggle i {
  font-size: 1.5rem;
  vertical-align: middle;
}

/* Style the dropdown menu to match navbar theme */
.dropdown-menu {
  background-color: #2c2b2b;
  border: 1px solid #344434;
}

.dropdown-item {
  color: #ebe1d2;
}

.dropdown-item:hover {
  background-color: #344434;
  color: white;
}

/* Hero */
/* Updated Header Labels */
.header-label {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 800;
  color: #ffffff;
  font-size: 1.6rem; /* Increased size */
}

/* Day Labels (now always visible) */
.day-label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

/* Ensure CLOSED is white */
.text-white-emphasis {
  color: #ffffff !important;
  font-weight: 700;
  opacity: 0.9;
}

/* Rest of the styling remains for consistency */
.hero {
  min-height: 100vh;
  background: url("../img/background.png") center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  color: #fff;
  margin-top: 90px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.glass-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  padding: 60px 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1100px;
  width: 100%;
}

.time {
  color: #ffd166;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.2;
}

.schedule-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-btn {
  display: inline-block;
  padding: 18px 45px;
  background: #ffd166;
  color: #222;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 1.5px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid #ffd166;
}

.hero-btn:hover {
  background: transparent;
  color: #ffd166;
  transform: translateY(-3px);
}

/* Lunch */
.lunch {
  margin-top: 100px;
  display: flex;
}
.lunch > img {
  left: 50px;
  width: calc(50% - 100px);
  margin: auto;
}

/* ===== MENU GRID BACKGROUND ===== */

/*View menu button*/

.menu-categories {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cat-btn {
  border: none;
  padding: 8px 18px;
  border-radius: 30px;
  background: #fff5f2;
  color: #064232;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}

.cat-btn:hover {
  background: #c6dad9;
  color: #064232;
}

.cat-btn.active {
  background: #064232;
  color: #fff;
}

/*Menu Item*/
.menu-item {
  border: none; /*1.5px solid rgba(0, 0, 0, 0.08);*/
  border-radius: 22px;
  margin: 60px 0px 0 0px;
  padding: 60px 0 20px 0;
  /* space for floating image */
  display: flex;
  justify-content: center;
  align-items: center;
  /* vertical center */
}

/* ODD / EVEN backgrounds (default categories) */
.menu-item:nth-child(odd) {
  background: #fff0eb;
}

.menu-item:nth-child(even) {
  background: #ffffff;
}

/* ===============================
   EVENT CATEGORY OVERRIDE
================================ */
.menu-item[data-category="event"] {
  background: #ffffff !important;
}

/* ===== MAIN CARD ===== */
.sushi-card {
  background: #fff7f3;
  border: none;
  border-radius: 50px;
  width: 90%;
  max-width: 350px;
  padding-top: 90px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.sushi-card:hover {
  transform: translateY(-8px);
}

/* ===== CIRCULAR IMAGE ===== */
.sushi-card img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
  padding: 8px;
  position: absolute;
  top: -85px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* ===== CARD BODY ===== */
.sushi-card .card-body {
  padding: 20px 20px 30px;
}

/* ===== TITLE ===== */
.sushi-card .card-title {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: #1d1d1d;
}

/* ===== DESCRIPTION (OPTIONAL) ===== */
.sushi-card .card-text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

/* ===== PRICE BADGE ===== */
.sushi-card .price {
  display: inline-block;
  margin-top: 14px;
  background: #6d6a6923;
  color: #fff;
  padding: 6px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
}

.modal-body .price {
  display: inline-block;
  margin-top: 14px;
  background: #6d6a6923;
  color: #fff;
  padding: 6px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Section */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin: 50px 0 50px 0;
}

/* Menu Cards */
.menu-card img {
  height: 220px;
  object-fit: cover;
}

/*About*/
.about-container {
  max-width: 800px;
  margin: 80px auto;
  padding: 40px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

h1 {
  text-align: center;
  margin-bottom: 32px;
  font-size: 32px;
}

.about-block {
  margin-bottom: 28px;
  overflow: hidden;
  /* clear float */
}

.about-block img {
  width: 220px;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
}

.img-left {
  float: left;
  margin: 0 16px 8px 0;
}

.img-right {
  float: right;
  margin: 0 0 8px 16px;
}

p {
  line-height: 1.7;
  font-size: 16px;
  margin: 0;
}
/* Footer */
footer {
  background: #111;
  color: #aaa;
  padding: 30px 0;
  text-align: center;
}
footer i {
  margin-right: 30px;
}

/*Mobile*/
@media (max-width: 400px) {
  .border-decoration:before {
    display: block;
  }
  body {
    zoom: 90%;
  }
  .lunch > img {
    width: calc(100% - 10px);
    margin: auto;
  }
  .about-block img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
  }

  .img-left {
    float: none;
    margin: 0 16px 8px 0;
  }

  .img-right {
    float: none;
    margin: 0 0 8px 16px;
  }
}
/*Ipad*/
@media (max-width: 600px) {
  .border-decoration:before {
    display: block;
  }
  body {
    zoom: 90%;
  }
  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }
}

/*Laptop*/
@media (max-width: 1200px) {
  .border-decoration:before {
    right: 0;
  }

  body {
    zoom: 90%;
  }
}
