/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Body */
body {
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background: #111;
  color: #fff;
  padding: 20px 40px;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  letter-spacing: 2px;
}

header p {
  font-size: 1rem;
  margin-top: 8px;
  color: #ccc;
}

/* Section Container */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 40px 0;
}

/* About Section */
.about {
  text-align: center;
  margin-bottom: 40px;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #222;
}

.about p {
  font-size: 1rem;
  color: #555;
}

/* Collection List */
.collection {
  text-align: center;
}

.collection h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.collection ul {
  list-style: none;
}

.collection li {
  display: inline-block;
  background: #fff;
  margin: 10px;
  padding: 12px 20px;
  border-radius: 25px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  transition: 0.3s;
  cursor: pointer;
}

.collection li:hover {
  background: #000;
  color: #fff;
}

/* Featured Section */
.featured {
  margin-top: 40px;
  text-align: center;
}

.featured h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.featured img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.featured img:hover {
  transform: scale(1.05);
}

/* Button */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.btn:hover {
  background: #444;
}

/* Footer */
footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}