/* ===== Global Styles ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background-color: #0f0f0f;
  color: #f5f5f5;
  line-height: 1.6;
}

/* ===== Header ===== */
.site-header {
  text-align: center;
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #111, #1c1c1c);
  border-bottom: 1px solid #333;
}

.site-header h1 {
  font-size: 3rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.tagline {
  color: #aaa;
  font-size: 1.1rem;
}

/* ===== Layout Container ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* ===== About Section ===== */
.about {
  margin-bottom: 4rem;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  border-left: 4px solid #c9a24d;
  padding-left: 0.75rem;
}

.about p {
  max-width: 700px;
  color: #ddd;
}

/* ===== Gallery Section ===== */
.gallery h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* Grid Layout */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

/* Art Cards */
.art-card {
  height: 280px;
  background-color: #222;
  border: 1px solid #333;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.art-card img {
  width: 100%;
  height: 80%;
  object-fit: cover;
  display: block;
}

.art-card figcaption {
  padding: 0.75rem;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

/* Hover Effect */
.art-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* ===== Footer ===== */
.site-footer {
  text-align: center;
  padding: 2rem;
  background-color: #111;
  border-top: 1px solid #333;
  font-size: 0.9rem;
  color: #888;
}
