
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  line-height: 1.6;
  scroll-behavior: smooth;
}

header {
  background: rgba(0, 0, 0, 0.8);
  padding: 1rem 2rem;
  color: white;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background-color: #121111;
}

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

.logo img {
  height: 60px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}

.nav-links a:hover {
  opacity: 0.8;
}

/* Hero */
.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://i.ibb.co/5W3QzW8S/homefloor.jpg') center/cover;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

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

.hero-content button {
  background: #3e2723;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1rem;
  margin-top: 20px;
}

/* FlexSlider */
.slider {
  width: 100%;
  margin: 2rem 0;
}

.flexslider {
  max-width: 1200px;
  margin: 0 auto;
}

.flex-caption {
  background: rgba(0,0,0,0.5);
  color: #fff;
  padding: 10px;
  font-size: 1rem;
  text-align: center;
}

/* Products */
.products {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.products h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.product-card button {
  background: #3e2723;
  color: white;
  padding: 8px 25px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.product-card button:hover {
  background: #5d4037;
}

/* Contact */
.contact {
  background-color: #f5f5f5;
  padding: 4rem 2rem;
  text-align: center;
}

.contact h2 {
  margin-bottom: 2rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

input, textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

button[type="submit"] {
  background-color: #3e2723;
  color: white;
  padding: 12px 40px;
  font-size: 1rem;
  border-radius: 4px;
  border: none;
}

/* Footer Links */
.link-section {
  background-color: #1f1f1f;
  color: white;
  padding: 2rem 1rem;
}

.link-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
  flex-wrap: wrap;
}

.link-column {
  flex: 1;
  min-width: 250px;
}

.link-column ul {
  list-style: none;
  padding-left: 0;
}

.link-column a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 5px 0;
  transition: color 0.3s;
}

.link-column a:hover {
  color: #ffcc00;
}

/* Footer */
footer {
  background-color: #121111;
  color: white;
  text-align: center;
  padding: 1.5rem;
}

.footer-icons {
  margin-top: 0.5rem;
}

.footer-icons a {
  margin: 0 10px;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

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

  .products-grid {
    grid-template-columns: 1fr;
  }

  .link-container {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
  }
}

  0 5px 15px rgba(0,0,0,0.1);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.product-card button {
  background: #3e2723;
  color: white;
  padding: 8px 25px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.product-card button:hover {
  background: #5d4037;
}

/* Contact Section */
.contact {
  background-color: #f5f5f5;
  padding: 4rem 2rem;
  text-align: center;
}

.contact h2 {
  margin-bottom: 2rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

input, textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

/* Submit Button */
button[type="submit"] {
  background-color: #3e2723;
  color: white;
  padding: 12px 40px;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  border: none;
}

button[type="submit"]:hover {
  background-color: #5d4037;
}

/* Link Section */
.link-section {
  background-color: #1f1f1f;
  color: white;
  padding: 2rem 1rem;
}

.link-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
  flex-wrap: wrap;
}

.link-column {
  flex: 1;
  min-width: 250px;
}

.link-column ul {
  list-style: none;
  padding-left: 0;
}

.link-column a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 5px 0;
  transition: color 0.3s;
}

.link-column a:hover {
  color: #ffcc00;
}

/* Footer */
footer {
  background-color: #121111;
  color: white;
  text-align: center;
  padding: 1.5rem;
}

.footer-icons {
  margin-top: 0.5rem;
}

.footer-icons a {
  margin: 0 10px;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

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

  .products-grid {
    grid-template-columns: 1fr;
  }

  .link-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .link-column {
    margin-bottom: 1rem;
  }
}
