body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f4f4;
}

.topbar {
  background: black;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  flex-wrap: wrap;
}

.logo {
  margin: 0;
}

.logo span {
  font-size: 12px;
  color: gold;
  display: block;
}

nav a {
  color: white;
  margin: 10px;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  position: relative;
  height: 70vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
  text-align: center;
  background: #111;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  background: #111;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.hero-content h2 {
  font-size: 50px;
  margin: 0;
}

.hero-content p {
  font-size: 20px;
  margin: 10px 0;
}

.hero-buttons {
  margin-top: 20px;
}

.hero-btn {
  display: inline-block;
  padding: 12px 20px;
  margin: 5px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
}

.hero-btn.primary {
  background: red;
  color: white;
}

.hero-btn.secondary {
  background: white;
  color: black;
}

.filters {
  text-align: center;
  padding: 10px;
}

.filter-btn {
  padding: 10px 15px;
  margin: 5px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  background: white;
}

.filter-btn.active {
  background: black;
  color: white;
}

.cuisine-grid {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 20px;
}

.cuisine-card {
  min-width: 250px;
  max-width: 250px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cuisine-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.cuisine-content {
  padding: 10px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cuisine-title {
  font-size: 18px;
  font-weight: bold;
}

.cuisine-description {
  font-size: 14px;
  margin: 5px 0;
}

.card-btn {
  margin-top: auto;
  background: black;
  color: white;
  padding: 10px;
  text-align: center;
  border-radius: 10px;
  text-decoration: none;
}

.card-btn:hover {
  background: red;
}
.hero-video{

position:absolute;
top:0;
left:0;

width:100%;
height:100%;

object-fit:cover;

animation: zoomHero 20s linear infinite;

}

@keyframes zoomHero{

0%{
transform:scale(1);
}

100%{
transform:scale(1.1);
}

}