/* ==============================
   SHIM COLLECTIONS MAIN STYLES
   ============================== */

:root {
  --primary-color: #d4af37; /* rich gold */
  --primary-hover: #e0c15c; /* light gold */
  --secondary-color: #000000; /* black */
  --accent-color: #1a1a1a; /* dark charcoal */
  --text-color: #f5f5f5; /* soft white */
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--secondary-color);
  color: var(--text-color);
  line-height: 1.6;
}

/* ================= NAVBAR ================= */
.navbar {
  background: var(--secondary-color);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
}

.logo h1 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 600;
  letter-spacing: 1px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--primary-color);
}

/* ================= HERO SECTION ================= */
.hero {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
              url('images/hero-bg.jpg') center/cover no-repeat;
  color: var(--text-color);
  text-align: center;
  padding: 8rem 1rem;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(212,175,55,0.4);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--white);
}

.btn-primary {
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-3px);
}

/* ================= FEATURED PRODUCTS ================= */
.featured-products {
  padding: 4rem 3%;
  background: var(--accent-color);
  text-align: center;
}

.featured-products h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
  color: var(--primary-color);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--secondary-color);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  padding: 1rem;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(212,175,55,0.2);
}

.product-card img {
  width: 100%;
  border-radius: 10px;
}

.product-card h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.1rem;
  color: var(--white);
}

.product-card p {
  color: var(--primary-color);
  font-weight: bold;
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.5rem 1.4rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
}

/* ================= ABOUT SECTION ================= */
.about {
  padding: 4rem 3%;
  text-align: center;
  background: var(--secondary-color);
}

.about h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
  color: var(--primary-color);
}

.about p {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #ddd;
  font-size: 1.05rem;
}

/* ================= FOOTER ================= */
footer {
  background: var(--accent-color);
  color: var(--text-color);
  padding: 3rem 3% 1rem;
  text-align: center;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
  margin-bottom: 0.8rem;
  color: var(--primary-color);
}

.footer-section p {
  font-size: 0.95rem;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.socials img {
  width: 25px;
  filter: brightness(0) invert(1);
  transition: all 0.3s;
}

.socials img:hover {
  filter: drop-shadow(0 0 6px var(--primary-color));
}

footer .copyright {
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
  color: #bbb;
}

/* ================= CHECKOUT ================= */
.checkout {
  padding: 4rem 3%;
  background: var(--accent-color);
}

.checkout h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 2rem;
  margin-top: 2rem;
}

.checkout-form {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.checkout-form label {
  display: block;
  margin-top: 1rem;
  font-weight: 500;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-top: 0.4rem;
  font-size: 1rem;
}

.checkout-form h3 {
  margin-top: 1.5rem;
  color: var(--secondary-color);
}

.payment-options {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn-mpesa, .btn-paypal {
  flex: 1;
  padding: 0.8rem;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-mpesa {
  background: #00b14f;
  color: #fff;
}

.btn-paypal {
  background: #0070ba;
  color: #fff;
}

.btn-mpesa:hover {
  background: #009c45;
}

.btn-paypal:hover {
  background: #005c9d;
}

