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

body {
  font-family: 'Montserrat', sans-serif; 
  background: white;
  color: black;
  padding-top: 110px;
}

/* ===== Moving Banner (Clean Infinite Scroll) ===== */

.top-banner {
  position: fixed;
  top: 0;
  width: 100%;
  height: 40px;
  background: black;
  color: #bdff00;
  overflow: hidden;
  z-index: 1000;
  display: flex;
  align-items: center;
  white-space: nowrap; /* prevent wrapping */
}

.banner-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: scroll-left 18s linear infinite;
}

.banner-track span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-right: 60px;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
}

.banner-logo {
  height: 25px;   /* same visual size as text */
  width: auto;
}

/* Infinite smooth scroll */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Slightly smaller text on mobile */
@media (max-width: 768px) {
  .banner-track span {
    font-size: 13px;
    padding-right: 40px;
  }
}

/* ===== Navbar ===== */

.navbar {
  position: fixed;
  top: 40px; /* below banner */
  width: 100%;
  height: 80px; /* fixed height = better alignment */
  background: white;
  padding: 0 8%; /* cleaner horizontal spacing */
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(189, 255, 0, 0.3);
}

/* Logo container */
.logo {
  display: flex;
  align-items: center;
}

/* Logo image */
.logo img {
  height: 50px;   /* balanced size */
  width: auto;
  display: block;
}

/* Menu */
.menu {
  display: flex;
  align-items: center;
  gap: 40px; /* more breathing space */
}

.menu a {
  text-decoration: none;
  color: black;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #bdff00;
}

/* ===== Mobile Navbar Fix ===== */
/* ===== Mobile Navbar Layout ===== */
@media (max-width: 768px) {

  .navbar {
    flex-direction: column;      /* stack items */
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 15px 0;
    gap: 10px;
  }

  .logo img {
    height: 45px;
  }

  .menu {
    flex-wrap: wrap;            /* allow wrap nicely */
    justify-content: center;
    gap: 20px;
  }

}



/* ===== Hero Section ===== */

.hero {
  padding: 80px 10%;
  background: white;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-image img {
  width: 100%;
  max-width: 450px;
}

.hero-text {
  max-width: 500px;
}

.hero-text h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #333;
}

.price {
  margin-bottom: 25px;
}

.old-price {
  text-decoration: line-through;
  color: #777;
  font-size: 18px;
  margin-right: 10px;
}

.new-price {
  font-size: 32px;
  font-weight: 800;
  color: black;
  margin-right: 10px;
}

.intro-label {
  background: #bdff00;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
}




.cta-btn:hover {
  background: black;
  color: #bdff00;
}

.cta-btn {
  display: inline-block;
  padding: 18px 38px;
  background: #bdff00;
  color: black;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s ease;
}



/* ===== Features Section ===== */

.features {
  background: #f5f5f5;
  padding: 80px 10%;
}

.features-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.feature-box {
  background: white;
  padding: 40px;
  flex: 1;
  text-align: center;
  border-top: 5px solid #bdff00;
  transition: 0.3s;
}

.feature-box h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

.feature-box p {
  color: #444;
  font-size: 16px;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ===== Product Description ===== */

.description {
  background: white;
  padding: 80px 10%;
}

.description-container {
  max-width: 800px;
  margin: 0 auto;
}

.description h2 {
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center; /* keep heading centered */
}

.description p {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: left; /* left align text */
}


/* ===== Blog Carousel ===== */

.blog-preview {
  padding: 80px 8%;
  background: #f5f5f5;
}

.blog-container {
  max-width: 1100px;
  margin: 0 auto;
}

.blog-preview h2 {
  margin-bottom: 40px;
  font-size: 28px;
}

.blog-carousel {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.blog-carousel::-webkit-scrollbar {
  display: none;
}

/* Renamed from blog-card */
.blog-preview-card {
  flex: 0 0 300px;   /* fixed consistent width */
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(189, 255, 0, 0.3);
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}

.blog-preview-card:hover {
  transform: translateY(-5px);
}

.blog-preview-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.blog-preview-card p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #555;
}

.blog-preview-card a {
  text-decoration: none;
  font-weight: 600;
  color: black;
}

.blog-preview-card a:hover {
  color: #bdff00;
}

/* ===== About Section ===== */

.about {
  background: white;
  padding: 80px 10%;
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
}

.about h2 {
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
}

.about p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333;
}

html {
  scroll-behavior: smooth;
}


/* ===== Contact Section ===== */

.contact {
  background: #f5f5f5;
  padding: 80px 10%;
  text-align: center;
}

.contact-container {
  max-width: 700px;
  margin: 0 auto;
}

.contact h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.contact p {
  font-size: 18px;
  margin-bottom: 15px;
  color: #333;
}

.contact-info p {
  font-weight: 600;
}

.contact a {
  color: #bdff00;
  text-decoration: none;
  font-weight: 600;
}

.contact a:hover {
  text-decoration: underline;
}




/* Responsive */
@media (max-width: 900px) {
  .features-container {
    flex-direction: column;
  }
}


/* ===== Footer ===== */

.footer {
  background: black;
  color: white;
  text-align: center;
  padding: 30px 0;
  margin-top: 80px;
}

/* ===== Responsive ===== */

@media (max-width: 900px) {

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .menu {
    gap: 15px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

}

/* ===== Blog Page ===== */

.blog-post-page {
  margin-top: 140px;   /* space below navbar + banner */
  padding: 60px 8%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.blog-post-page h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

.blog-post-page h2 {
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 22px;
}

.blog-post-page h3 {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 18px;
}

.blog-post-page p {
  line-height: 1.7;
  margin-bottom: 18px;
  font-size: 16px;
}

.blog-post-page ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.blog-post-page li {
  margin-bottom: 8px;
}

.blog-post-page a {
  color: black;
  font-weight: 600;
  text-decoration: none;
}

.blog-post-page a:hover {
  color: #bdff00;
}

/* ===== Share Section ===== */

.share-section {
  margin-top: 60px;
  margin-bottom: 20px;
}

.share-section a {
  margin-right: 15px;
  text-decoration: none;
  font-weight: 600;
  color: black;
}

.share-section a:hover {
  color: #bdff00;
}

.blog-post-page img {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 25px 0;
  border-radius: 8px;
}


/* ===== Blog Page Layout ===== */
/* 
.blog-page {
  margin-top: 120px;
  padding: 60px 8%;
  background-color: #ffffff;
}

.blog-container {
  max-width: 1100px;
  margin: 0 auto;
}

.blog-title {
  font-size: 36px;
  margin-bottom: 50px;
  text-align: center;
}

.blog-card {
  display: flex;
  gap: 40px;
  align-items: center;
  background: #ffffff;
  border: 1px solid #eee;
  padding: 30px;
  border-radius: 12px;
  transition: 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.blog-image {
  width: 300px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.blog-content {
  flex: 1;
}

.blog-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.blog-content p {
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 16px;
}

.read-more {
  text-decoration: none;
  font-weight: 600;
  color: black;
  transition: 0.3s;
}

.read-more:hover {
  color: #bdff00;
} */

/* ============================= */
/* BLOG PAGE */
/* ============================= */

.blog-blog-page {
  padding: 160px 8% 100px 8%;
}

.blog-blog-container {
  max-width: 1100px;
  margin: auto;
}

.blog-blog-title {
  font-size: 36px;
  margin-bottom: 50px;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.5px;
}


/* ============================= */
/* BLOG CARD */
/* ============================= */

.blog-blog-list-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  margin-bottom: 40px;
  transition: 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.blog-blog-list-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.blog-image {
  width: 350px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.blog-blog-content {
  flex: 1;
}

.blog-blog-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.blog-blog-content p {
  color: #555;
  margin-bottom: 20px;
  font-size: 15px;
}

.read-more {
  text-decoration: none;
  font-weight: 600;
  color: black;
  transition: 0.3s ease;
}

.read-more:hover {
  color: #bdff00;
}


/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 900px) {
  .blog-blog-list-card {
    flex-direction: column;
    text-align: center;
  }

  .blog-image {
    width: 100%;
    height: 220px;
  }

  .menu {
    display: none; /* simple mobile fallback */
  }
}

/* ===== Mobile Responsive ===== */

@media (max-width: 768px) {
  .blog-card {
    flex-direction: column;
    text-align: center;
  }

  .blog-image {
    width: 100%;
  }
}



