/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #F0F4EF;
  color: #2E2E2E;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
header {
  text-align: center;
  padding: 2rem 1rem;
  background: #A3D2CA;
  color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

/* Container */
.container {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
}

/* Card Styles */
.card {
  background: rgba(255, 255, 255, 0.65);
  border-radius: 15px;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.card h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #5EAAA8;
}

/* Quote Card */
.quote-card p {
  font-style: italic;
  font-weight: 500;
}

/* Color Card */
.color-card .colors {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.color-box {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

/* Font Card */
.font-card .font-sample {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 600;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background-color: #A3D2CA;
  color: white;
  margin-top: auto;
}

footer a {
  color: white;
  text-decoration: none;
  margin: 0 0.3rem;
}

footer a:hover {
  text-decoration: underline;
}
