* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: linear-gradient(135deg, #fff6d6, #ffffff);
  color: #5c4400;
}

/* GLASS */
.glass {
  background: rgba(255, 215, 100, 0.25);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 100, 0.4);
}

/* NAVBAR */
.navbar {
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.navbar a {
  margin-left: 20px;
  text-decoration: none;
  font-weight: 600;
  color: #5c4400;
}

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px;
  flex-wrap: wrap;
}

.hero-image img {
  max-width: 280px;
  width: 100%;
}

/* SECTION */
.section {
  padding: 70px 30px;
  text-align: center;
}

.section-title {
  margin-bottom: 40px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

/* CARD */
.card {
  padding: 25px;
  transition: 0.4s;
}

.card:hover {
  transform: translateY(-10px);
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: gold;
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

/* VIDEOS */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.video-box {
  position: relative;
  max-width: 360px;
  margin: auto;
}

.video-box video {
  width: 100%;
  border-radius: 15px;
}

.play-btn {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  border: none;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

/* PRODUCTS */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.product-card img {
  max-height: 180px;
  object-fit: contain;
  width: 100%;
}

/* FOOTER IMAGE */
.footer-image img {
  width: 100%;
  display: block;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 10px;
}

/* ANIMATION */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    gap: 10px;
  }
}
