/* Intro Section */
.intro {
  text-align: center;
  padding: 2em;
  font-weight: bolder;
}
* Navigation Bar */
header {
  background: green;
  color: white;
  padding: 1em 0;
}
body{
  background-color:#1ecbe1;
  color: #e9e9e9;
}

nav ul {
  background-color: green;
  color: #e9e9e9;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav a {
  background-color: green;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* Clothing Gallery */
.clothing-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 2em;
}

.clothing-item {
  background:white;
  color: #222;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clothing-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.clothing-item h3 {
  margin: 10px;
  color: #222;
}

.clothing-item p {
  margin: 10px;
  font-size: 0.95em;
}

.clothing-item a {
  color: #f9c806;
  text-decoration: none;
}

.clothing-item a:hover {
  text-decoration: underline;
}

/* Hover Effects */
.clothing-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.clothing-item:hover img {
  transform: scale(1.05);
}
footer {
  background: blue;
  color: white;
  text-align: center;
  padding: 1em;
  margin-top: 20px;}
