/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
      scroll-behavior: smooth;
    }

body {
  line-height: 1.6;
  background-color: transparent;
  color: #333;
  padding-top: 80px;
}

.navbar {
  background-color: skyblue;
  padding: 5px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.logo {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #d1eaff;
}

.hero {
  background: url('images/momo-hero.jpg') center/cover no-repeat;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  width: 100%;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.highlight a {
  color: #FFD700;
  font-weight: bold;
}

.hero .btn {
  padding: 0.75rem 1.5rem;
  background-color: #0056b3;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
}

.about {
  padding: 0rem;
  background-color: white;
  text-align: center;
  width: 100%;
}

.about p {
  margin-bottom: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  font-size: 1.05rem;
}

.about .tagline {
  font-size: 1.2rem;
  color: #0056b3;
  font-weight: bold;
  margin-top: 2rem;
}

.menu {
  padding: 4rem 1rem;
  background-color:white;
  text-align: center;
  width: 100%;
}

.menu,.about h2 {
  margin-bottom: 2rem;
  color: #0056b3;
}

.menu-category {
  margin-bottom: 3rem;
}

.menu-category h3 {
  margin-bottom: 1rem;
  color: #007BFF;
}

.menu-category ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.menu-category ul li {
  margin-bottom: 1.2rem;
  line-height: 1.6;
  text-align: left;
}

.footer {
  background-color: skyblue;
  color: white;
  padding: 2rem 1rem 1rem;
  text-align: center;
  width: 100%;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-info h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.footer-info p {
  margin: 0.25rem 0;
  font-size: 0.95rem;
}

.footer-social {
  margin-top: 0.5rem;
}

.footer-social a {
  margin: 0 0.5rem;
  display: inline-block;
}

.footer-social img {
  width: 28px;
  height: 28px;
  filter: none;
  transition: transform 0.3s ease;
  border-radius: 5px;
}

.footer-social img:hover {
  transform: scale(1.2);
}

.footer-bottom {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #cce6ff;
}

.announcement-bar {
      background-color: orange;
      color: blue;
      padding: 0.5rem 0;
      overflow: hidden;
      position: fixed;
      text-align: center;
      z-index: 999;
      width: 100%;
    }

    .announcement-text {
      display: inline-block;
      white-space: nowrap;
      animation: scroll-left 15s linear infinite;
      font-weight: bold;
    }

    @keyframes scroll-left {
      0% { transform: translateX(100%); }
      100% { transform: translateX(-100%); }
    }

    #backToTop {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: skyblue;
      color: white;
      border: none;
      padding: 10px 15px;
      border-radius: 5px;
      font-size: 14px;
      cursor: pointer;
      display: none;
      z-index: 9999;
    }
    #backToTop:hover {
      background-color: #0056b3;
    }


    .modal {
      display: none;
      position: fixed;
      z-index: 10000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.6);
    }
    .modal-content {
      background-color: #fff;
      margin: 15% auto;
      padding: 2rem;
      border-radius: 10px;
      width: 90%;
      max-width: 400px;
      text-align: center;
      position: relative;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      color: #333;
    }
    .modal-content h2 {
      color: #007BFF;
      margin-bottom: 0.5rem;
    }
    .modal-content p {
      color: #333;
      font-weight: 500;
    }
    .close-button {
      position: absolute;
      top: 10px;
      right: 20px;
      font-size: 1.5rem;
      cursor: pointer;
      color: #333;
    }
    .highlight {
      color: #d63384;
      font-weight: bold;
    }