/* =====================
   GLOBAL STYLES
===================== */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
}

:root {
  --header-height: 80px; /* define once */
}

header {
  height: var(--header-height);
}

/* Push all page content below the fixed header */
main {
  padding-top: var(--header-height);
}

/* Remove margin-top from hero banners */
.hero-banner,
.store-hero {
  margin-top: 0; /* reset so they don’t double-offset */
}

/* =====================
   HEADER & NAVIGATION
===================== */
header {
  width: 100%;
  height: 80px;
  background: rgba(0,0,0,0.85);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between; /* keeps nav and logo apart */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

/* Force nav first, logo last */
nav {
  order: 1; /* nav comes first (left side) */
}

.logo {
  order: 2; /* logo comes last (right side) */
  margin-left: 2rem; /* add breathing room so it doesn’t overlap nav */
}

.logo img {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}
.logo img:hover {
  transform: scale(1.1);
}


nav {
  display: flex;
  align-items: center;
}

/* Navigation links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(145deg, #333, #111);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 4px 4px 8px #000, -4px -4px 8px #444;
  transition: all 0.3s ease;
}

/* Brand group: logo + company name side by side */
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem; /* space between logo and text */
}

/* Logo */
.logo {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}
.logo:hover {
  transform: scale(1.1);
}

/* Company name styling */
.company-name {
  font-size: 1rem;        /* smaller than before */
  font-weight: 600;       /* slightly lighter than bold */
  color: #fff;            /* white text */
  text-shadow: 0 0 6px rgba(255,255,255,0.7),
               0 0 12px rgba(255,255,255,0.5),
               0 0 18px rgba(255,255,255,0.3); /* softer glow */
  white-space: nowrap;    /* keep on one line */
  transition: text-shadow 0.3s ease;
}

.company-name:hover {
  text-shadow: 0 0 10px #fff,
               0 0 20px #00aaff,
               0 0 30px #ffcc00; /* stronger glow on hover */
}


/* Glow on hover */
.nav-links li a:hover {
  background: linear-gradient(145deg, #ff6f61, #ffcc00);
  color: #222;
  box-shadow: 0 0 15px #ff6f61, 0 0 25px #ffcc00;
  transform: translateY(-3px);
}

/* Active link glow */
.nav-links li a.active {
  background: linear-gradient(145deg, #ffcc00, #ff6f61);
  color: #222;
  box-shadow: 0 0 20px #ffcc00;
}

/* Hamburger */
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;         /* directly below header */
    left: 0;
    width: 100%;       /* full width dropdown */
    background: #111;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    display: none;     /* hidden by default */
    z-index: 999;
  }

  .nav-links.show {
    display: flex;     /* visible when toggled */
    animation: slideDown 0.3s ease forwards;
  }

  .menu-toggle {
    display: block;    /* show hamburger on mobile */
    font-size: 2rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    margin-left: auto;
  }

  .brand {
    gap: 0.4rem;
  }

  .company-name {
    font-size: 0.9rem; /* smaller on mobile */
    font-weight: 600;
    color: #fff;
    text-shadow: 0 0 6px rgba(255,255,255,0.7),
                 0 0 12px rgba(255,255,255,0.5);
  }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* =====================
   HERO BANNER
===================== */
.hero-banner {
  margin-top: 80px; /* offset for fixed header */
  height: 80vh;
  background: url("../assets/images/hero.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 5vw;
  overflow: hidden;
  color: #fff;
}

/* Overlay content (text/buttons) */
.hero-overlay {
  z-index: 2;
}

.hero-right {
  text-align: right;
  animation: fadeInRight 1.5s ease forwards;
}

.hero-right h2 {
  font-size: 4.5rem;
  font-weight: 900;
  margin: 1rem 0;
  transform: skew(-10deg);
  animation: glowCycle 6s infinite;
}

/* Sequential glow for multiple headings */
.hero-right h2:nth-child(2) { animation-delay: 2s; }
.hero-right h2:nth-child(3) { animation-delay: 4s; }

@keyframes glowCycle {
  0% { text-shadow: 0 0 20px gold; }
  25% { text-shadow: 0 0 20px magenta; }
  50% { text-shadow: 0 0 20px cyan; }
  75% { text-shadow: 0 0 20px lime; }
  100% { text-shadow: 0 0 20px orange; }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px) skew(-10deg); }
  to { opacity: 1; transform: translateX(0) skew(-10deg); }
}

/* Basket animation layered on banner */
.basket-animation {
  width: 60px;
  height: 60px;
  background: url("../assets/images/basket.png") no-repeat center/contain;
  position: absolute;
  bottom: 20px;   /* sits near bottom of banner */
  left: -80px;    /* start off-screen */
  animation: rollBasket 6s ease-in-out forwards;
  z-index: 3;     /* above banner image */
}

@keyframes rollBasket {
  0% { transform: translateX(0) rotate(0deg); }
  50% { transform: translateX(50vw) rotate(360deg); }
  100% { transform: translateX(100vw) rotate(720deg); }
}

/* Shop Now button overlay */
.order-btn-wrapper {
  text-align: center;
  margin-top: 2rem;
}

.order-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(45deg, #ff6600, #ffcc00);
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(255,204,0,0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.order-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(255,204,0,1);
}

/* Mobile Hero */
@media (max-width: 768px) {
  .hero-right h2 {
    font-size: 2.3rem;
  }
  .hero-banner {
    justify-content: center;
    text-align: center;
    padding-right: 0;
  }
}


/* =====================
   FOOTER
===================== */
.site-footer {
  background: rgba(0,0,0,0.8);
  color: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 1rem;
  flex-wrap: wrap;
}

/* =====================
   FLOATING SOCIAL + CHAT STACK
===================== */
.social-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 2000;
}

/* Social icons */
.social-icons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.social-icons a {
  width: 42px;
  height: 42px;
  background: rgba(0,0,0,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  transition: transform 0.3s ease, background 0.3s ease;
}
.social-icons a:hover {
  background: #00aaff;
  transform: scale(1.15);
}

/* YouTube special */
.youtube-icon {
  background: rgba(255,0,0,0.8);
}

/* Chat button */
.chat-toggle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #00aaff;
  color: #fff;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0,170,255,0.8);
}

/* Chat button */
.chat-toggle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #00aaff;
  color: #fff;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0,170,255,0.8);
}

/* =====================
   CHAT WINDOW BASE
===================== */
.chat-window {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  height: 420px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  display: none;              /* hidden by default */
  flex-direction: column;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  font-family: 'Segoe UI', Arial, sans-serif;
  font-weight: 300;           /* thinner font */
  z-index: 3000;              /* keep above other elements */
}

/* =====================
   CHAT HEADER
===================== */
.chat-header {
  background: #ff6600;
  color: #fff;
  padding: 10px;
  font-weight: 500;
  text-align: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  position: relative;
}

.chat-exit {
  position: absolute;
  right: 10px;
  top: 6px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}
.chat-exit:hover {
  color: #222;
}

/* =====================
   CHAT MESSAGES AREA
===================== */
.chat-messages {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
  font-size: 0.9rem;
  line-height: 1.5;           /* more breathing room */
  font-weight: 300;
}

/* Optional: differentiate user vs Top-Notch */
.chat-messages .user {
  background: #f1f1f1;
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 8px;
}

.chat-messages .bot {
  background: #ffe5d0;
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 8px;
}

/* =====================
   CHAT INPUT AREA
===================== */
.chat-input-area {
  display: flex;
  border-top: 1px solid #eee;
}

.chat-input-area input {
  flex: 1;
  border: none;
  padding: 12px;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
}

.chat-input-area button {
  background: #ff6600;
  color: #fff;
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}

.chat-input-area button:hover {
  background: #e65c00;
}

/* =====================
   MOBILE RESPONSIVE
===================== */
@media (max-width: 768px) {
  .chat-window {
    width: 90%;               /* take most of screen width */
    height: 60vh;             /* use viewport height */
    bottom: 10px;
    right: 5%;
    font-size: 0.85rem;
  }

  .chat-header {
    font-size: 1rem;
    padding: 8px;
  }

  .chat-input-area input {
    font-size: 0.85rem;
    padding: 8px;
  }

  .chat-input-area button {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
}


	/* =====================
   ABOUT PAGE
===================== */
.about {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
  color: #333;
}

.about h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #111;
  text-align: center;
  text-shadow: 0 0 8px rgba(0,0,0,0.2);
}

.about h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: #222;
  border-left: 4px solid #ff6600;
  padding-left: 0.6rem;
}

.about p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.about ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.about ul li {
  background: #f1f1f1;
  margin-bottom: 0.6rem;
  padding: 0.8rem 1rem;
  border-radius: 6px;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about ul li:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}


/* =====================
   GALLERY PAGE
===================== */
.gallery {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.gallery h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #111;
  text-shadow: 0 0 8px rgba(0,0,0,0.2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.gallery-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  padding: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.gallery-item img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 0.8rem;
}

.gallery-item p {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}
/* =====================
   ORDER PAGE
===================== */
.order {
  padding: 4rem 2rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.order h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #111;
  text-shadow: 0 0 8px rgba(0,0,0,0.2);
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.order-form label {
  font-weight: 600;
  text-align: left;
  color: #333;
}

.order-form input,
.order-form textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.order-form input:focus,
.order-form textarea:focus {
  border-color: #00aaff;
  box-shadow: 0 0 8px rgba(0,170,255,0.4);
  outline: none;
}

.order-form button {
  padding: 1rem;
  background: linear-gradient(45deg, #ff6600, #ffcc00);
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.order-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255,204,0,0.8);
}

/* =====================
   CONTACT PAGE
===================== */
.contact {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact h2, .contact h3 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111;
}

.contact p, .contact a {
  font-size: 1.1rem;
  color: #333;
}

.social-links {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-links a {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: #00aaff;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  background: #ff6600;
  transform: scale(1.05);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  margin-bottom: 2rem;
}

.contact-form label {
  font-weight: 600;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00aaff;
  box-shadow: 0 0 8px rgba(0,170,255,0.4);
  outline: none;
}

.contact-form button {
  padding: 1rem;
  background: linear-gradient(45deg, #ff6600, #ffcc00);
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255,204,0,0.8);
}

.map iframe {
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
/* =====================
   SERVICES PAGE
===================== */
.services {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #111;
  text-shadow: 0 0 8px rgba(0,0,0,0.2);
}

/* Typing effect paragraph */
#typing-text {
  font-size: 1.1rem;
  color: #333;
  border-right: 2px solid #ff6600; /* cursor */
  white-space: nowrap;
  overflow: hidden;
  animation: blinkCursor 0.7s infinite;
  margin-bottom: 2rem;
}

@keyframes blinkCursor {
  0% { border-color: transparent; }
  50% { border-color: #ff6600; }
  100% { border-color: transparent; }
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-item {
  background: #fff;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Service Icon / Animated Image */
.service-icon {
  margin-bottom: 1rem;
}

.service-icon img,
.service-icon lottie-player {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  display: block;
  transition: transform 0.4s ease;
}

.service-item:hover .service-icon img,
.service-item:hover .service-icon lottie-player {
  transform: scale(1.1) rotate(3deg);
}

.service-item h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #ff6600;
}

.service-item p {
  font-size: 1rem;
  color: #555;
}


/* =====================
   STORE PAGE
===================== */
.store {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.store h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111;
  text-shadow: 0 0 8px rgba(0,0,0,0.2);
}

.store p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #333;
}

.basket-animation {
  width: 60px;
  height: 60px;
  background: url("../assets/images/basket.png") no-repeat center/contain;
  position: absolute;
  bottom: 20px;
  left: -80px;
  z-index: 3;
}

@keyframes rollBasket {
  0% { transform: translateX(0); }
  50% { transform: translateX(50vw); }
  100% { transform: translateX(100vw); }
}


/* =====================
   GRID LAYOUT
===================== */
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

/* =====================
   PRODUCT CARD
===================== */
.product {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.product img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.product h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: #ff6600;
}

.product .price {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem;
}

/* =====================
   CART BUTTON
===================== */
.cart-btn {
  padding: 0.8rem 1.2rem;
  background: linear-gradient(45deg, #ff6600, #ffcc00);
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cart-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255,204,0,0.8);
}

/* =====================
   BANNER FORM
===================== */
.banner-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1rem;
  text-align: left;
}

.banner-form label {
  font-weight: 600;
  color: #333;
}

.banner-form input {
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.banner-form input:focus {
  border-color: #00aaff;
  box-shadow: 0 0 8px rgba(0,170,255,0.4);
  outline: none;
}

.banner-form button {
  padding: 0.8rem;
  background: #00aaff;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(0,170,255,0.6);
}
/* Floating Cart Icon */
.floating-cart {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ff6600;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 12px 16px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 5000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-cart:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255,102,0,0.8);
}

.floating-cart span {
  margin-left: 6px;
  background: #fff;
  color: #ff6600;
  padding: 2px 6px;
  border-radius: 12px;
  font-size: 0.9rem;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
  .store-grid {
    grid-template-columns: 1fr;
  }
}
/* Modal Background */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.6);
}

/* Modal Content */
.modal-content {
  background: #fff;
  margin: 10% auto;
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

.modal-content h3 {
  margin-bottom: 1rem;
  color: #ff6600;
}

.modal-content p {
  font-size: 1.2rem;
  color: #333;
}

/* Close Button */
.close {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

.close:hover {
  color: #ff6600;
}
.store-hero {
  position: relative;
  width: 100%;
  height: 75vh; /* professional height */
  overflow: hidden;
}

.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures image fills nicely */
  display: block;
}

/* Overlay text */
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.hero-text h2 {
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff; /* strong contrast against orange */
  text-shadow: 0 0 12px rgba(0,0,0,0.7);
  animation: glowCycle 6s infinite;
}

.hero-text .hero-tagline {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 1rem;
  color: #000000; /* black text */
  background: #ff6600; /* solid orange rectangle */
  padding: 1rem 1.5rem;
  border-radius: 8px;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3); /* subtle shadow for depth */
}


.order-btn-wrapper {
  margin-top: 2rem;
}

.order-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(45deg, #ff6600, #ffcc00);
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(255,204,0,0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.order-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(255,204,0,1);
}


/* Glow animation for text */
@keyframes glowCycle {
  0% { text-shadow: 0 0 20px gold; }
  25% { text-shadow: 0 0 20px magenta; }
  50% { text-shadow: 0 0 20px cyan; }
  75% { text-shadow: 0 0 20px lime; }
  100% { text-shadow: 0 0 20px orange; }
}

/* =====================
   BLOG PAGE
===================== */
.blog {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  color: #333;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.blog h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #111;
  text-align: center;
  text-shadow: 0 0 8px rgba(0,0,0,0.2);
}

.blog-post {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.blog-post h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #ff6600;
}

.blog-post p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}


/* Mobile adjustments */
@media (max-width: 768px) {
  .hero-text h2 {
    font-size: 1.8rem;
  }
}




 