
/* GLOBAL LUXURY BEIGE THEME */

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

body {
  background: #f5f1eb;
  color: #3b3b3b;
  overflow-x: hidden;
}

/* HEADER */
header {
  background: #f0e8dd;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
}

header h1, .logo {
  font-size: 24px;
  font-weight: 700;
  color: #2f2c28;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #5a524a;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: #000;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 40px;
  background: linear-gradient(to right, #f7f3ed, #ece5dc);
}

.hero-text {
  max-width: 50%;
}

.hero-text h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2e2a25;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 25px;
}

.hero img {
  width: 45%;
  border-radius: 15px;
  box-shadow: 0px 10px 25px rgba(0,0,0,0.1);
}

/* BUTTONS */
.btn-primary {
  padding: 14px 28px;
  background: #c0a78b;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}
.btn-primary:hover { background: #a78d72; }

/* CENTER SECTIONS */
.section {
  padding: 60px 40px;
  text-align: center;
}

.section h3 {
  font-size: 32px;
  margin-bottom: 15px;
}

.section p {
  font-size: 17px;
  color: #5d554e;
}

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

.product-card {
  background: #fffdf8;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0px 10px 25px rgba(0,0,0,0.08);
}

.product-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

/* CONTACT */
.contact-container {
  max-width: 600px;
  margin: 70px auto;
  background: #fffdf8;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

input, textarea {
  width: 100%; padding: 12px; border-radius: 8px;
  border: 1px solid #d2c7bb; margin-top: 10px; font-size: 1rem;
}

/* FOOTER */
footer {
  background: #e9dfd3;
  padding: 20px;
  text-align: center;
  color: #4c443c;
  font-size: 14px;
  margin-top: 50px;
}
