/* ========== Reset ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #0f1115;
  color: #e5e5e5;
  line-height: 1.6;
}

/* ========== Container ========== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ========== Header ========== */
header {
  background: #111;
  border-bottom: 1px solid #222;
}

.logo {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  padding: 15px 0;
  text-align: center;
}

.navbar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  padding-bottom: 15px;
}

.navbar a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.navbar a:hover,
.navbar .active {
  color: #d4af37;
}

/* ========== Sections ========== */
.section {
  padding: 80px 0;
}

.section.center {
  text-align: center;
}

/* ========== Typography ========== */
h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

p {
  color: #aaa;
  margin-bottom: 10px;
}

/* ========== Buttons ========== */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37, #f1c40f);
  color: #000;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: 0.3s;
}

.btn:hover {
  opacity: 0.85;
}

/* ========== Grid Layout ========== */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* ========== Card ========== */
.product-card {
  background: #1a1d23;
  padding: 20px;
  width: 280px;
  border-radius: 6px;
  transition: 0.3s;
  text-align: center;
  border: 1px solid #222;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: #d4af37;
}

.product-card img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 15px;
}

/* ========== Flex Layout ========== */
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ========== Form ========== */
form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #333;
  background: #111;
  color: #fff;
  border-radius: 4px;
}

form textarea {
  min-height: 120px;
}

/* ========== Footer ========== */
footer {
  background: #111;
  border-top: 1px solid #222;
  text-align: center;
  padding: 30px 0;
  font-size: 14px;
}

footer a {
  color: #d4af37;
  text-decoration: none;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  h1 {
    font-size: 28px;
  }

  .product-card {
    width: 100%;
  }

  .navbar {
    flex-direction: column;
    align-items: center;
  }
}
img {
max-width: 100%;
height: auto;
display: block;
}