 /* Base settings */
body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #222;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Headings (use Poppins for bold, modern feel) */
h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Optional tweaks for size */
h1 {
  font-size: 2.75rem;
}

h2 {
  font-size: 2rem;
}

/* 2. Layout Container */
section {
  padding: 4rem 1rem;
  max-width: 900px;
  margin: 0 auto;
  border-bottom: 1px solid #eee;
}

/* 3. Header Section */
header {
  text-align: center;
  padding: 3rem 1rem 2rem;
  background-color: #f9f9f9;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.3rem;
}

header p {
  font-size: 1.2rem;
  color: #666;
}

/* 4. Headings */
h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #111;
}

/* 5. Paragraph Text */
p {
  font-size: 1.05rem;
  color: #444;
}

/* 6. Gallery Grid */
.art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.art-grid img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.art-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* 7. Contact Section */
.contact p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

/* 8. Footer */
footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #f1f1f1;
  font-size: 0.9rem;
  color: #666;
}
