/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Header */
header {
  background: #111;
  color: #fff;
  padding: 15px 0;
}

header .container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 50px;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  background: url("../public/racks.jpg") no-repeat center center/cover;
  height: 80vh;
  padding: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  text-align: center;
}

.hero-text h1 {
  font-size: 2.5rem;
}

.hero-text p {
  margin: 10px 0;
  font-size: 1.2rem;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #f39c12;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.btn:hover {
  background: #d35400;
}

/* Sections */
.section {
  padding: 50px 0;
}

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

.section p {
  text-align: center;
  max-width: 700px;
  margin: auto;
}

.gray {
  background: #f4f4f4;
}

/* Products */
.products {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.product-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

/* Footer */
footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 15px;
}
