* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fffefb;
  color: #333;
}

.video-header {
  position: relative;
  height: 100vh;
  overflow: hidden;
  height: 400px;
}

#bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.logo {
  width: 200px;
  margin-bottom: 1rem;
}

.overlay h1 {
  font-family: 'Chewy', cursive;
  font-size: 40px;
  margin-bottom: 0.5rem;
}

.overlay p {
  font-size: 1.2rem;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 2rem;
}

.section-title {
  font-family: 'Chewy', cursive;
  color: #8b0000;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s;
}

.card:hover {
  transform: scale(1.03);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  color: #8b0000;
  font-size: 1.3rem;
  margin: 1rem 0 0.5rem;
}

.card p {
  padding: 0 1rem 1rem;
}

.meaning-row {
  display: flex;
  gap: 40px;
  justify-content: center;
  text-align: center;
}

.meaning-box img {
  width: 100px;
  margin-bottom: 10px;
}

.why-lamak {
  text-align: center;
  width: 83%;
}

.why-lamak h2 {
  font-size: 40px;
  font-family: 'Chewy', cursive;
  margin-bottom: 20px;
  color: #8b0000;
}

.why-lamak p {
  font-size: 18px;
  line-height: 1.6;
}

.footer {
  background-color: #25160c;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-family: 'popins', sans-serif;
}

.footer p {
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer a {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  font-size: 15px;
}

.footer img {
  width: 24px;
  height: 24px;
}
