/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
header {
  background: green;
  color: white;
  padding: 1em 0;
}

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;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #1ecbe1;
  color: #333;
  line-height: 1.6;
  padding: 20px;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 40px;
}

header h1 {
  font-size: 2.5rem;
  color: #4a2c18;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2rem;
  color: #666;
}

/* Craft Items Container */
.crafts-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  border-radius: 50px;
}

/* Individual Craft Item */
.craft-item {
  background-color: #fff;
  border: 1px solid #dcd2c0;
  border-radius: 50px;
  overflow: hidden;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s;
}

.craft-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.craft-item img {
  width: 100%;
  height: auto;
  display: block;
}

.craft-info {
  padding: 20px;
}

.craft-info h2 {
  color: #774c29;
  margin-bottom: 10px;
}

.craft-info p {
  margin-bottom: 15px;
}

.craft-info a {
  color: #006d77;
  text-decoration: none;
  font-weight: bold;
}
footer {
  background: blue;
  color: white;
  text-align: center;
  padding: 1em;
  margin-top: 20px;}

.craft-info a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 50px;
  font-size: 0.9rem;
  color: #999;
  padding-top: 20px;
  border-top: 1px solid #e0ddd8;
}

/* Responsive Enhancements */
@media (max-width: 600px) {
  header h1 {
    font-size: 1.8rem;
  }

  .craft-info {
    padding: 15px;
  }

  .craft-info h2 {
    font-size: 1.2rem;
  }
}

