/* ===== Global Styles ===== */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fefae0;
  color: #333;
}

/* ===== Topbar ===== */
.topbar {
  background-color: #d4a373;
  padding: 10px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  max-height: 50px;
  width: auto;
}

.navbar a {
  text-decoration: none;
  margin: 0 15px;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.navbar a:hover,
.navbar a.active {
  text-decoration: underline;
}

.quote-btn {
  background-color: #faedcd;
  color: #333;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.quote-btn:hover {
  background-color: #ccd5ae;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-text {
  position: absolute;
  bottom: 30px;
  left: 50px;
  background: rgba(255, 255, 255, 0.85);
  padding: 25px 30px;
  border-radius: 12px;
  max-width: 480px;
}

.hero-text h1 {
  margin: 0;
  font-size: 2.2rem;
  color: #333;
}

.hero-text p {
  margin-top: 10px;
  font-size: 1.1rem;
}

/* ===== Content Section ===== */
.content {
  padding: 60px 20px;
  text-align: center;
}

.product-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.product-list li {
  background-color: #e9edc9;
  margin: 10px auto;
  padding: 15px;
  border-radius: 10px;
  width: 60%;
  transition: 0.3s;
}

.product-list li:hover {
  background-color: #d4a373;
  color: white;
}

/* ===== Contact Section ===== */
.contact-section {
  padding: 60px 20px;
  background-color: #fefae0;
  text-align: center;
}

.contact-section h2 {
  color: #333;
  margin-bottom: 10px;
}

.contact-section p {
  color: #555;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
  background-color: #faedcd;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form select {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  outline: none;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form select:focus {
  border-color: #d4a373;
  box-shadow: 0 0 5px rgba(212, 163, 115, 0.5);
}

.contact-form button {
  background-color: #d4a373;
  color: #fff;
  padding: 14px;
  width: 100%;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background-color: #b88a5b;
  transform: scale(1.03);
}

/* ===== Footer ===== */
footer {
  background-color: #d4a373;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 50px;
  font-size: 14px;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .hero-text {
    bottom: 20px;
    left: 20px;
    max-width: 90%;
    padding: 20px;
  }

  .product-list li {
    width: 85%;
  }

  .contact-form {
    width: 90%;
  }
}
