body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  line-height: 1.5;
}

/* Smooth transitions */
* {
  transition: all 0.2s ease;
}

/* HEADER */
.main-header {
  background: #111;
  padding: 15px 50px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 50px;
}

.nav-menu a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

header img {
  height:50px;
}

/* HERO */

.hero-logo {
  width:180px;
  margin-bottom:20px;
}

.tagline-main {
  font-size:22px;
  font-weight:600;
  margin-top:12px;
}

.hero p {
  margin-top:8px;
}

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

.hero p {
  font-size:18px;
}

.home-hero {
  position: relative;
  min-height: 85vh;
  background: url("hero-bg.jpg") center 45% / cover no-repeat !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}


.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);

  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.75)
  );
  z-index: 1;
}

.brand-logo {
  width: 650px;
  max-width: 90%;
  height: auto;
  margin-bottom: 5px;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.5));
}

.brand-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  letter-spacing: 8px;
}

.hero-btn {
  padding: 16px 28px;
  font-size: 17px;
  border-radius: 12px;
}


.tagline-main {
  font-size: 28px;
  font-weight: 600;
  margin: 8px 0 6px;   /* tighter spacing */
}

.tagline-sub {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 25px;
}

.hero-buttons {
  margin-top: 30px;
}

.hero-btn.secondary {
  background: #111;
}

@media (max-width: 768px) {
  .main-header {
    flex-direction: column;
    text-align: center;
    padding: 15px 20px;
  }
}

  .tagline-main {
    font-size: 24px;
  }

  .tagline-sub {
    font-size: 16px;
  }

  .home-hero {
    min-height: 75vh;
  }


@media (max-width: 768px) {
  .brand-logo {
    width: 280px;
  }
}

/* SECTION */
.section {
  padding:80px 20px;
  max-width:700px;
  margin:auto;
}

.section:nth-child(even) {
  background:#fafafa;
}

.section h2 {
  margin-bottom:20px;
}

/* GRID */
.grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}

/* CARDS */
.product-card {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

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

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-content {
  padding: 18px;
}

.product-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 6px;
}

.product-tag {
  font-size: 14px;
}

/* PRODUCT IMAGES */
.card img {
  width:100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius:10px;
  margin-bottom:10px;
}

/* BUTTON */
.btn {
  background:#ff5a36;
  color:#fff;
  padding:14px 24px;
  border-radius:10px;
  font-weight:bold;
  text-decoration:none;
  display:inline-block;
}

.bulk-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 18px 36px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 14px;
  background: #ff5a36;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn:hover {
  background: #e24c2d;
}

.hero-bg .content {
  text-align: center;
}

.hero-logo {
  width:140px;
  margin-bottom:20px;
}

.tagline {
  font-size:18px;
  font-weight:bold;
  margin:10px 0;
}

.poster-scroll {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 20px 0 12px;
  scroll-snap-type: x mandatory;
}

.poster-card {
  min-width: 260px;
  max-width: 260px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  scroll-snap-align: start;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  transition: 0.3s;
}

.poster-card:hover {
  transform: translateY(-6px);
}

.poster-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  border-radius: 12px;
  background: #f5f5f5;
  padding: 8px;
}
.poster-card h3 {
  text-align: center;
  margin: 12px 0 4px;
}

input, select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: Arial, sans-serif;
}

textarea {
  height: 120px;
}

.chat-box {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 280px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  display: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.chat-header {
  background: #25D366;
  color: #fff;
  padding: 10px;
  font-weight: bold;
}

.chat-body {
  padding: 15px;
}

.chat-body button {
  width: 100%;
  margin-top: 10px;
}

.timeline {
  border-left: 3px solid #ff5a36;
  padding-left: 25px;
  margin-top: 20px;
}

.timeline-item {
  margin-bottom: 25px;
  position: relative;
}

.timeline-item::before {
  content: "";
  width: 14px;
  height: 14px;
  background: #ff5a36;
  border-radius: 50%;
  position: absolute;
  left: -33px;
  top: 6px;
}

.timeline-item h3 {
  margin-bottom: 6px;
}

h1, h2, h3 {
  letter-spacing: 0.5px;
}

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

  .nav-menu {
    margin-top: 10px;
  }

  .nav-menu a {
    display: inline-block;
    margin: 8px;
  }
}

@media (max-width: 768px) {
  .brand-name {
    font-size: 48px;
    letter-spacing: 3px;
  }
} 

.coming-hero {
  position: relative;
  background: url('momos.jpg') center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-hero .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
}

.coming-hero .content {
  position: relative;
  color: #fff;
  text-align: center;
}

.coming-hero h1 {
  font-size: 50px;
}

.coming-hero p {
  font-size: 20px;
}

.hero-bg {
  position: relative;
  background-image: url('hero-bg.jpg');
  background-size: cover;
  background-position: center 70%;
  background-repeat: no-repeat;

  min-height: 85vh;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.hero-bg .content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  background: #fff;
}

.card .btn {
  margin-top: 10px;
  margin-right: 10px;
}

.cta-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #fafafa, #f2f2f2);
}

.cta-section h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.cta-section p {
  margin-bottom: 25px;
  font-size: 16px;
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 24px;
  padding: 14px 16px;
  border-radius: 50%;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* FOOTER */
footer {
  background:#111;
  color:#fff;
  text-align:center;
  padding:20px;
}