body {
  margin-left: 1rem;
  margin-right: 1rem;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #111;
}

p {
  font-size: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: small;
}
.social-links a {
  margin-left: 0.25rem;
  color: black;
  text-decoration: none;
}

#gradient-text {
  background: -webkit-linear-gradient(left, #bde3fc, #009dff);
  font-weight: bold;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 auto;
  text-align: center;
}

header {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.header {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer {
  text-align: center;
  font-size: 0.85rem;
  background: transparent;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

#blue a {
  color: black;
  text-decoration: none;
  transition: color 0.4s;
  font-weight: bold;
}

#gray {
  color: gray;
}

#contact {
  text-align: center;
  margin: 0.5rem auto;
  font-size: small;
}

#contact a {
  text-align: center;
  color: black;
  text-decoration: none;
}
#contact a:hover {
  color: black;
}

.hero {
  text-align: center;
  color: black;
  margin: 3rem auto;
}

.email-link {
  border: #111 1px solid;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

h1 {
  text-align: center;
  margin: 2rem 0 1rem 0;
  font-weight: 400;
}
.gallery {
  column-count: 4;
  column-gap: 1rem;
  max-width: none;
  margin: 0;
}
.gallery img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1rem;
  border-radius: 0;
  box-shadow: none;
  background: #222;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery img:hover {
  transform: scale(1.01);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
@media (max-width: 900px) {
  .gallery {
    column-count: 2;
  }
}
@media (max-width: 600px) {
  .gallery {
    column-count: 1;
  }
}
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}
.lightbox-content {
  max-height: 90vh;
  max-width: 90vw;
  border-radius: 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.7);
}
.lightbox .close {
  position: absolute;
  top: 32px;
  right: 48px;
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  transition: color 0.2s;
}
.lightbox .close:hover {
  color: #ff4081;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.animate-spin-slow {
  animation: spin 3s infinite reverse;
}
.footer {
  width: 100%;
  text-align: center;
  background: #fff;
  padding: 0.5rem 0;
  margin: 0.5rem 0;
}
