/* neck.css */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.showcase-header {
  text-align: center;
  margin-bottom: 40px;
}

.showcase-header h2 {
  font-size: 2.5em;
  color: #007bff;
  margin-bottom: 10px;
}

.showcase-header p {
  font-size: 1.1em;
  color: #666;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.Design-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.Design-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.Design-card img {
  width: 100%;
  height: auto;
  display: block;
}

.Design-info {
  padding: 15px;
  text-align: center;
}

.Design-info h3 {
  margin: 10px 0;
  font-size: 1.4em;
  color: #333;
}

.Design-info p {
  color: #777;
  font-size: 0.9em;
}

.home-button {
  display: inline-block;
  margin: 20px auto;
  padding: 12px 25px;
  background: #007bff;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.home-button:hover {
  background: #0056b3;
}

.store-visit {
  text-align: center;
  margin: 30px 0;
  font-style: italic;
  font-size: 1.1em;
  color: #555;
}

/* Responsive typography */
@media (max-width: 768px) {
  .showcase-header h2 {
      font-size: 2em;
  }

  .showcase-header p {
      font-size: 1em;
  }

  .Design-info h3 {
      font-size: 1.2em;
  }

  .Design-info p {
      font-size: 0.85em;
  }

  .home-button {
      font-size: 1em;
      padding: 10px 20px;
  }
}
