/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.hero-content {
  padding-top: 120px; /* header offset */
}


body {
  background: #000;
  color: #ffffff;
  line-height: 1.6;
}

/* ================= COMMON ================= */
.section {
  padding: 80px 10%;
  background-color: #2a2929;
}

h1, h2 {
  color: #ffffff;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

p {
  color: #cccccc;
  font-size: 1.1rem;
}

/* ================= HERO ================= */
.hero {
  height: 50vh;
  background: url("../images/laminate-hero.jpg") center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 10%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.hero-content {
  position: relative;
  max-width: 650px;
}

.hero h1 {
  font-size: 3.5rem;
  text-shadow: 0 0 8px black;
}

.hero p {
  font-size: 1.2rem;
  color: #cccccc;
}

/* ================= ABOUT ================= */
.about {
  background-color: #1c1c1c;
}

.about-wrapper {
  display: flex;
  gap: 225px;
  align-items: center;
}

.about-image img {
  width: 150%;
  max-width: 620px;   /* increased size */
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.7);
}


.about-text h2 {
  color: #ffffff;
}

.about-text p {
  color: #cccccc;
}

/* ================= FEATURES ================= */
.features {
  background-color: #2a2929;
}

.features ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.features li {
  background-color: #1c1c1c;
  padding: 18px 20px;
  border-left: 4px solid #f2af53;
  color: #ffffff;
}

/* ================= PRODUCTS ================= */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.product {
  background-color: #1c1c1c;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #333;
}

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

.product p {
  padding: 15px;
  font-weight: 600;
  color: #f2af53;
  text-align: center;
}

/* ================= FOOTER ================= */
footer {
  background-color: #000;
  text-align: center;
  padding: 40px 10%;
  font-size: 0.9rem;
  color: #999999;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1000px) {

  .about-image img,
  .about-text {
    max-width: 100%;
  }

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

  h2 {
    font-size: 2rem;
  }

  .about-wrapper {
    flex-direction: column;
    gap: 80px;
    align-items: center;
}

.section {
    padding:50px;
}
}
