/* General styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}
.hero {
  background-color: #000;          /* Black background */
  color: #080808;                     /* White text */
  text-align: center;              /* Center everything */
  padding: 80px 20px;              /* Nice spacing */
  border-radius: 12px;             /* Smooth rounded edges */
  box-shadow: 0 0 20px rgba(5, 5, 5, 0.5); /* Gold glow effect */
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  
}

/* Header styles */
.main-header {
  background-color: #333;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo a {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: #ebe2e2;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #f1ebeb;
}

/* Hero section */
.hero {
  text-align: center;
  padding: 4rem 0;
  background-color: #f9f9f9;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.product-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-card h3 {
  padding: 1rem;
  font-size: 1.2rem;
}

.product-card .price {
  padding: 0 1rem 1rem;
  color: #666;
}

.button {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  margin: 1rem;
}

/* Contact section */
.contact-info {
  text-align: center;
  padding: 4rem 0;
  background-color: #f9f9f9;
}

.phone {
  font-size: 1.5rem;
  margin-top: 1rem;
}

/* Footer */
.main-footer {
  background-color: #333;
  color: #fff;
  padding: 2rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive design */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    text-align: center;
  }

  .nav-links {
    margin-top: 1rem;
  }

  .nav-links li {
    margin: 0 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }
}

/* Inspiration thumbnails and lightbox */
.thumb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 12px;
  align-items: start;
}

.thumb {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  cursor: pointer;
  display: block;
}

.thumb img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}

.thumb .meta {
  padding: 6px 8px;
  font-size: 0.85rem;
  color: #333;
}

/* Lightbox/modal */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.8);
  z-index: 2000;
}

.lightbox.open { display: flex; }

.lightbox-content {
  max-width: 95%;
  max-height: 90%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  right: 20px;
  top: 20px;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

@media (min-width: 900px) {
  .thumb img { height: 90px; }
  .thumb-grid { gap: 16px; }
}