body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fffaf0;
  color: #333;
}

h1, h2 {
  font-family: 'Baloo 2', cursive;
}

header {
  background-color: #ff6f00;
  color: white;
  padding: 2em;
  text-align: center;
  animation: fadeDown 1s ease-in-out;
}

@keyframes fadeDown {
  from { transform: translateY(-100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

nav {
  background-color: #ffe0b2;
  padding: 1em;
  text-align: center;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #ff6f00;
  font-weight: bold;
}

.hero {
  background: url('../images/spices-banner.jpg') no-repeat center center;
  background-size: cover;
  color: #fff;
  padding: 4em 2em;
  text-align: center;
  animation: fadeIn 2s ease-in;
}
.hero {
  background-color: #ff6a00;
  padding: 3rem 1rem;
  text-align: center;
}

.hero-card {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 2rem 2.5rem;
  border-radius: 1rem;
  width: fit-content;
  margin: 2rem auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.hero-title {
  font-size: 2.2rem;
  color: #c03c00;
  font-weight: 700;
  margin: 0;
}

.hero-title .highlight {
  display: block;
  color: #d35400;
  font-size: 1.4rem;
  margin-top: 1rem;
  font-weight: 600;
}


@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.highlight {
  background-color: #fff3e0;
  text-align: center;
  padding: 2em;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
}

.card {
  background: white;
  border: 2px dashed #ff6f00;
  padding: 1em;
  border-radius: 10px;
  width: 220px;
  font-weight: 600;
  transition: transform 0.3s;
}

.card:hover {
  transform: scale(1.05);
  background-color: #fff8e1;
}

.inventory {
  padding: 2em;
  text-align: center;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
}

.item-card {
  background: white;
  border: 1px solid #ffcc80;
  padding: 1em;
  border-radius: 10px;
  width: 200px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease;
}

.item-card:hover {
  box-shadow: 0 0 15px rgba(255,111,0,0.4);
}

.storefront {
  text-align: center;
  padding: 2em;
  background-color: #fff3e0;
}

.store-img {
  max-width: 80%;
  height: auto;
  max-height: 300px;
  border-radius: 8px;
  margin-top: 1em;
}

.brands {
  text-align: center;
  padding: 2em;
}

.brand-logos img {
  height: 60px;
  margin: 0 1em;
  opacity: 0.9;
  transition: transform 0.2s;
}

.brand-logos img:hover {
  transform: scale(1.1);
  opacity: 1;
}

.contact {
  background-color: #fff8e1;
  padding: 2em;
  text-align: center;
}

footer {
  background-color: #ff6f00;
  color: white;
  text-align: center;
  padding: 1em;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .features, .cards {
    flex-direction: column;
    align-items: center;
  }

  nav a {
    display: inline-block;
    margin: 10px;
  }
}
/* ---------------------------------------------
   About Page Enhancements – Super Bazaar Buffalo
---------------------------------------------- */
section {
  margin-bottom: 3em;
  padding: 1em 2em;
}

section h2,
section p {
  text-align: center;
}

.story {
  margin-bottom: 2.5em;
}

.owners {
  margin-bottom: 4em;
}

.gallery {
  padding-top: 2em;
  margin-bottom: 3em;
}

/* Flip Card Styling */
.owner-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2em;
}

.flip-card {
  background-color: transparent;
  width: 220px;
  height: 280px;
  perspective: 1000px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 1em;
  border-radius: 10px;
  backface-visibility: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.flip-front {
  background: #fffbe7;
}

.flip-back {
  background: #ffe0b2;
  transform: rotateY(180deg);
  text-align: center;
}

.flip-front img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1em;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.flip-front img:hover {
  transform: scale(1.05);
}


/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5em;
  padding: 1em 2em;
  justify-content: center;
}

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Lightbox Viewer */
#lightbox-overlay {
  position: fixed;
  display: none;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

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

/* News Section */
.news {
  background-color: #fff3e0;
  padding: 2em;
}

.news-row {
  display: flex;
  justify-content: center;
  gap: 2em;
  flex-wrap: wrap;
  margin-top: 1em;
}

.news-row img {
  height: 300px;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}

.news-row img:hover {
  transform: scale(1.05);
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .owner-cards,
  .news-row {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 500px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .gallery-grid img {
    height: 140px;
  }
}

/* === Super Bazaar Inventory Page Styles === */

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fffef9;
  color: #333;
}

header {
  background-color: #ff6f00;
  color: white;
  text-align: center;
  padding: 2em;
}

nav {
  background-color: #ffe0b2;
  text-align: center;
  padding: 1em;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #bf360c;
  font-weight: bold;
}

/* Section layout */
.inventory-category {
  padding: 2em;
  text-align: center;
}

/* Headings for all sections */
.inventory-category h2 {
  font-family: 'Baloo 2', cursive;
  font-size: 1.8rem;
  margin-bottom: 1em;
  color: #c25700;
  border-bottom: 2px solid #ffcc80;
  display: inline-block;
  padding-bottom: 0.3em;
}

/* Paragraphs inside category sections */
.inventory-category p {
  font-size: 1rem;
  color: #555;
  max-width: 800px;
  margin: 0.5em auto;
  line-height: 1.6;
}

/* Inventory grid display */
.inventory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2em;
  padding: 0 2em;
  margin-top: 1em;
}

/* Product card */
.inv-card {
  background: #fff3e0;
  border-radius: 12px;
  padding: 1.2em;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s ease-in-out, box-shadow 0.3s;
}

/* Hover effect */
.inv-card:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

/* Product name */
.inv-card h3 {
  font-size: 1rem;
  color: #4e342e;
  margin: 0;
}

/* Optional weights or details */
.inv-card p {
  font-size: 0.9rem;
  color: #555;
  margin-top: 0.5em;
}

/* Footer styling */
footer {
  background-color: #ff6f00;
  color: white;
  text-align: center;
  padding: 1em;
  margin-top: 3em;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  nav a {
    display: block;
    margin: 0.5em 0;
  }

  .inventory-grid {
    grid-template-columns: 1fr;
    padding: 0 1em;
  }
}

/* === Super Bazaar Delivery Page Styles === */

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fffaf3;
  color: #333;
}

header {
  background-color: #ff6f00;
  color: white;
  text-align: center;
  padding: 2em;
}

nav {
  background-color: #ffe0b2;
  text-align: center;
  padding: 1em;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #bf360c;
  font-weight: bold;
}

.delivery-section {
  margin-top: 2em;
  padding-bottom: 2em;
}

/* Banner Section */
.delivery-banner {
  position: relative;
  text-align: left;
  width: 100%;
  max-height: 450px;
  overflow: hidden;
}

.delivery-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.delivery-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.85);
  padding: 2em;
  max-width: 50%;
}

.delivery-overlay h2 {
  font-size: 2rem;
  color: #1a237e;
  margin: 0;
}

/* Description block */
.delivery-description {
  background-color: #f8f4ff;
  margin: 2em auto;
  padding: 2em;
  border-radius: 8px;
  max-width: 900px;
  color: #1a237e;
  font-size: 1.05rem;
  line-height: 1.7;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
/* === Student Delivery Section === */
.delivery-student {
  background-color: #fff8e1;
  margin: 2em auto;
  padding: 2em;
  border-left: 6px solid #ff6f00;
  border-radius: 8px;
  max-width: 900px;
  color: #5d4037;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.delivery-student h2 {
  color: #e65100;
  font-size: 1.6rem;
  margin-bottom: 0.5em;
}

.delivery-student p {
  font-size: 1.05rem;
  line-height: 1.6;
}

.delivery-student strong {
  color: #bf360c;
}

/* Footer styling */
footer {
  background-color: #ff6f00;
  color: white;
  text-align: center;
  padding: 1em;
  margin-top: 3em;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .delivery-overlay {
    max-width: 100%;
    position: static;
    padding: 1.5em;
    background: #f9f9f9;
    text-align: center;
  }

  .delivery-overlay h2 {
    font-size: 1.5rem;
  }

  .delivery-description {
    margin: 1em;
    padding: 1.5em;
    font-size: 1rem;
  }

  nav a {
    display: block;
    margin: 0.5em 0;
  }
}

/* === Super Bazaar Contact Page Styles === */

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fffaf3;
  color: #1a237e;
}

header {
  background-color: #ff6f00;
  color: white;
  text-align: center;
  padding: 2em;
}

nav {
  background-color: #ffe0b2;
  text-align: center;
  padding: 1em;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #bf360c;
  font-weight: bold;
}

/* === Contact Section === */
.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3em 2em;
  flex-wrap: wrap;
}

.contact-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 1000px;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.contact-left {
  flex: 1;
  min-width: 260px;
  padding: 1em;
}

.contact-left h2 {
  font-size: 2rem;
  line-height: 1.3;
  color: #1a237e;
  margin: 0;
}

.contact-right {
  flex: 2;
  min-width: 300px;
  padding: 1em;
  text-align: left;
}

.contact-right p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.center-phone {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1em;
}

.phone-img {
  width: 100px;
  height: auto;
}


/* === Hours & Address === */
.hours-address {
  background-color: #fff3cd;
  padding: 3em 2em;
  text-align: center;
}

.opening-hours,
.store-address {
  max-width: 900px;
  margin: 0 auto 2em auto;
}

.opening-hours h2,
.store-address h2 {
  font-size: 1.8rem;
  color: #1a237e;
  margin-bottom: 1em;
}

.opening-hours ul {
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
  color: #1a237e;
}

.opening-hours li {
  display: flex;
  justify-content: space-between;
  padding: 0.4em 1em;
  max-width: 500px;
  margin: 0 auto;
}

.store-address p {
  font-size: 1.1rem;
  margin-bottom: 1em;
}

.map-preview {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  margin-top: 1em;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s ease-in-out;
}

.map-preview:hover {
  transform: scale(1.02);
}

.map-container {
  max-width: 600px;
  margin: 1em auto 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-radius: 8px;
  overflow: hidden;
}

/* === Footer === */
footer {
  background-color: #ff6f00;
  color: white;
  text-align: center;
  padding: 1em;
  margin-top: 2em;
}

/* === Responsive === */
@media (max-width: 768px) {
  .contact-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-left,
  .contact-right {
  flex: 2;
  min-width: 300px;
  padding: 1em;
  text-align: center; /* ← center aligns text and image in small screens */
}


  .contact-left h2 {
    font-size: 1.6rem;
  }

  .opening-hours li {
    flex-direction: column;
    align-items: center;
    gap: 0.2em;
  }
}

/* === Deals Page Enhanced === */
.deals-placeholder {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4em 2em;
  background: linear-gradient(145deg, #fff3e0, #ffe0b2);
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: #4e342e;
  animation: fadeIn 1s ease-in-out;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
  margin: 2em auto;
  max-width: 900px;
  transition: transform 0.3s;
}

.deals-placeholder:hover {
  transform: scale(1.01);
}

.deals-placeholder h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5em;
  color: #d84315;
  font-family: 'Baloo 2', cursive;
}

.deals-placeholder p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #5d4037;
  margin-top: 1em;
  max-width: 700px;
}

.deals-placeholder strong {
  color: #bf360c;
  font-weight: 600;
}

.deals-placeholder .soon {
  font-style: italic;
  font-size: 1.05rem;
  color: #757575;
  margin-top: 1.5em;
}

/* Optional animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
