* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}

/* Header */
header {
  background-color: #ff6f61;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: 0 auto;
}

header nav ul {
  display: flex;
  list-style: none;
}

header nav ul li {
  margin-left: 20px;
}

header nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

header nav ul li a:hover {
  color: #ffd700;
}

/* Hero Section */
.hero {
  background: url("IMG/20200306_AppVinID_BannerWeb_Toocha.jpg") no-repeat center;
  height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #ffffff;
}
.slogan {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 30px;
}

p {
  font-size: 0.8rem;
  margin-bottom: 30px;
  color: #333;
}

.hero .btn {
  background-color: #ffd700;
  color: #333;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: 0.3s;
}

.hero .btn:hover {
  background-color: #ff6f61;
  color: white;
}

.menu {
  padding: 60px 0;
  text-align: center;
  background-color: #fff0f5;
}

.menu h2 {
  margin-bottom: 40px;
  font-size: 2.5rem;
}

.menu-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.menu-item {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  width: 250px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.menu-item:hover {
  transform: scale(1.05);
}

.menu-item img {
  width: 100%;
  height: 200px;
}

.menu-item h3 {
  margin: 15px 0 10px;
}

.menu-item p {
  color: #ff6f61;
  font-weight: 600;
  margin-bottom: 15px;
}

.about {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* Footer */
footer {
  background-color: #bebebecd;
  text-align: center;
  padding: 20px 0;
}
