/* Meraki Art — styles.css
   Palette:
   - main black: #0b0b0b
   - brown: #5a3a2e
   - yellow: #f0c84b
   - sand: #e9dcc6
*/

:root{
  --black: #0b0b0b;
  --brown: #5a3a2e;
  --yellow: #f0c84b;
  --sand: #e9dcc6;
  --muted: #6c6c6c;
}

/* Core */
body { font-family: "Helvetica Neue", Arial, sans-serif; color: var(--black); }

/* Navbar */
.navbar { background: var(--black); }
.navbar .navbar-brand { color: var(--sand); font-size: 1.25rem; }
.navbar .nav-link { color: var(--sand); }
.navbar .nav-link:hover { color: var(--yellow); }

/* Carousel hero */
.carousel-image{
  height: 520px;
  background-size: cover;
  background-position: center;
  filter: brightness(0.75);
}
.carousel-caption { text-align: left; left: 8%; right: 50%; bottom: 20%; }
.carousel-caption h1 { font-size: 2.6rem; font-weight:700; color: var(--sand); text-shadow: 0 2px 6px rgba(0,0,0,0.6); }
.carousel-caption p { color: rgba(233,220,198,0.9); }
.btn-cta { background: var(--brown); border: none; color: var(--sand); }
.btn-cta:hover { background: darken(var(--brown), 5%); }
.btn-cta-outline { background: transparent; border: 2px solid var(--sand); color: var(--sand); }

/* Section titles */
.section-title { font-weight:700; font-size:1.6rem; color: var(--black); }

/* Featured products area */
.featured-products { background: linear-gradient(90deg, var(--brown), var(--black)); color: #fff; }
.featured-products .card { background: rgba(255,255,255,0.03); border: none; }

/* Product card */
.card-img-top { height: 220px; object-fit: cover; }
.product-price { font-weight:700; color: var(--yellow); }

/* Footer */
.footer { background: var(--black); color: #fff; }

/* Utilities */
.text-white-50 { color: rgba(255,255,255,0.6); }

/* Responsive tweaks */
@media (max-width: 768px) {
  .carousel-caption { left: 5%; right: 5%; text-align: center; bottom: 15%; }
  .carousel-caption h1 { font-size: 1.75rem; }
}

/* Form invalid styles (Bootstrap compatible) */
.was-validated .form-control:invalid, .form-control.is-invalid { border-color: #dc3545; box-shadow: none; }
