/* Reset & Base */
* {
  box‑sizing: border‑box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
  color: #333;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #111;
}
.logo img {
  height: 2rem;
  margin-right: .5rem;
}
.nav {
  position: relative;
}
.nav-list {
  display: flex;
  gap: 1rem;
  list-style: none;
}
.nav-list.open {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  width: 100vw;
  padding: 1rem;
}
.nav-list a {
  text-decoration: none;
  color: #333;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Buttons */
.btn-primary {
  background: #22c55e;
  color: #fff;
  padding: .6rem 1.2rem;
  border-radius: .375rem;
  text-decoration: none;
  display: inline-block;
  transition: background .2s;
}
.btn-primary:hover {
  background: #16a34a;
}
.btn-secondary {
  background: #64748b;
  color: #fff;
  padding: .6rem 1.2rem;
  border-radius: .375rem;
  text-decoration: none;
  transition: background .2s;
}
.btn-secondary:hover {
  background: #475569;
}
.btn-sm {
  font-size: .875rem;
  padding: .4rem .8rem;
}

/* Hero */
.hero {
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  height: 700px;
  display: flex;
  align-items: center;
  color: #111;
}
.hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* Sections */
.section {
  padding: 3rem 0;
}
.section-title {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Generic Grid */
.grid {
  display: grid;
  gap: 1.5rem;
}
.cards {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card */
.card {
  background: #fff;
  border-radius: .5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.card-body {
  padding: 1rem;
  flex: 1;
}
.card-body h3 {
  margin-bottom: .5rem;
  font-size: 1.125rem;
}
.card-body p {
  flex: 1;
  margin-bottom: 1rem;
  color: #555;
}

/* Vendor Card Overrides */
.vendor-card {
  position: relative;
}
.vendor-banner {
  height: 240px;
  background-size: cover;
  background-position: center;
}
.vendor-logo {
  position: absolute;
  bottom: 7.5rem;
  left: 23rem;
  width: 100px !important;
  height: 100px !important;
  border-radius: 50%;
  border: 1px solid #000;
  object-fit: contain;
  background: #fff;
}

/* Call‑to‑Action Banner */
.cta-banner {
  background: #f1f5f9;
  text-align: center;
  padding: 3rem 0;
}
.cta-banner h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

/* Footer */
.site-footer {
  background: #f8fafc;
  border-top: 1px solid #e5e7eb;
  padding: 2rem 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.footer-logo img {
  height: 1.5rem;
  margin-bottom: .5rem;
}
.footer-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-links a {
  text-decoration: none;
  color: #555;
}

/* Gallery Item Styling */
#gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.gallery-item {
  width: 400px;
  height: 300px;
  border-radius: 1rem;
  overflow: hidden;
  background: #f7fafc;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* crop & fill */
  display: block;
  border-radius: 1rem;
  transition: transform .25s;
}
.gallery-item:hover img {
  transform: scale(1.05) rotate(-1deg);
  box-shadow: 0 4px 24px 0 rgba(0,0,0,.15);
}

/* Hide scrollbar for all browsers */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

    /* Floating Animation */
    @keyframes float {
      0% { transform: translateY(-10px); }
      100% { transform: translateY(-15px); }
    }
    /* Responsive Grid Container */
    .grid-container {
      width: 100%;
      padding: 0 10px;
    }


  /* Responsive */
  @media (max-width: 768px) {
    .nav-toggle {
      display: block;
    }
    .nav-list {
      display: none;
      flex-direction: column;
    }
    .hero-content h1 {
      font-size: 2rem;
    }
  }

    @media (max-width: 640px) {
      .hero {
        height: 40vh;
      }
      .hero h1 {
        font-size: 2.5rem;
      }
    }