:root {
  --bg-dark: #031634;
  --bg-light: #0c3e78;
  --accent: #38bdf8;
  --text: #dcecff;
  --muted: #8ab9e2;
  --card: #072a52;
  --shadow: 0 10px 25px rgba(0,0,50,0.6);
  --radius: 18px;
  font-family: 'Comic Relief', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: linear-gradient(180deg, var(--bg-dark), var(--bg-light));
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 50px 16px;
}

.site-header {
  text-align: center;
  margin-bottom: 60px;
}
.site-header h1 {
  font-size: 2.4rem;
  color: var(--accent);
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(56,189,248,0.4);
}

.link {
  color: var(--accent);
  transition: color 0.3s ease;
}

.link:hover {
  color: var(--text);
}

.lead {
  color: var(--muted);
  font-size: 1.1rem;
}

.gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
  width: 100%;
  max-width: 1100px;
}

.art-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.art-item:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 35px rgba(56,189,248,0.3);
}

.art-item img {
  width: 50%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 0 20px rgba(56,189,248,0.2);
}

.art-item .info {
  width: 50%;
  text-align: left;
}
.art-item .info h2 {
  color: var(--accent);
  margin-bottom: 10px;
  font-size: 1.6rem;
}
.art-item .info p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.art-item.reverse {
  flex-direction: row-reverse;
}

footer {
  margin-top: 80px;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.line::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 50%;
  transform: translateY(-50%);
  height: 8px;
  background: linear-gradient(
    90deg,
    rgba(47,184,255,0.18),
    rgba(24,106,161,0.18)
  );
  border-radius: 6px;
  filter: blur(6px);
  z-index: -1;
}

.site-footer {
  padding: 30px 0;
  font-family: 'Comic Relief', sans-serif;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.footer-right a {
  color: #b9bfff;
}
.copyright {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

.line {
  width: 80%;                    
  max-width: 1110px;               
  height: 2px;
  margin: 20px auto;
  background: linear-gradient(100deg, #464a7b, rgb(139, 134, 211));
  border-radius: 2px;
  position: relative;
}

.line::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 50%;
  transform: translateY(-50%);
  height: 8px;
  background: linear-gradient(
    90deg,
    rgba(0, 115, 255, 0.18),
    rgba(0, 153, 255, 0.18)
  );
  border-radius: 6px;
  filter: blur(6px);
  z-index: -1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.footer-logo img {
  height: 90px; 
}
