/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #111;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===== Header ===== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo {
  height: 40px;
}

.wordmark {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
}

.teaser {
  font-size: 21px;
  text-align: center;
  margin: 33px;
}

.teaser h2 {
  margin-top: 11px;
}

/* Navigation */
.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  display: block;
  height: 2px;
  background: #111;
  width: 0;
  transition: width 0.3s;
  position: absolute;
  bottom: -4px;
  left: 0;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Menu Button (Mobile) */
.menu-button {
  background: none;
  border: none;
  display: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-icon {
  width: 28px;
  height: 28px;
  stroke: #111;
}

/* ===== Hero Section ===== */
.hero {
  margin-top: 80px;
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center; /* Ensure the focal point stays centered */
}


.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

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

.hero-overlay p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: background 0.3s, transform 0.3s;
}

.cta-button:hover {
  background: #333;
  transform: scale(1.05);
}

/* ===== Store Section ===== */
.store-section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  text-align: center;
}

.store-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #111;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  justify-content: center;
}

.product-card {
  background: #fff;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.product-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.product-card p {
  font-weight: 600;
  color: #333;
}

/* ===== Footer ===== */
.footer {
  padding: 2rem;
  background-color: #111;
  color: #fff;
  text-align: center;
}

.footer-content p {
  margin: 1rem 0;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-links a {
  color: #fff;
  font-weight: 500;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 20px;
    width: 200px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem;
  }

  .hero {
    height: 100dvh; /* Use dynamic viewport height */
  }

  .hero-video {
    object-position: center top; /* Or another value that fits your video best */
  }

  .nav-links.active {
    display: flex;
  }

  .menu-button {
    display: block;
  }

  .hero-overlay h1 {
    font-size: 2rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
  }
}
