* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Century Gothic", CenturyGothic, AppleGothic, Arial, sans-serif;
  background: #000;
  color: #fff;
}

/* ===== HEADER ===== */

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #000;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo {
  height: 42px;
  width: auto;
}

.site-title {
  font-family: "Century Gothic", CenturyGothic, AppleGothic, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  color: #fff;
  letter-spacing: 0.03em;
}

.site-subtitle {
  font-family: "Century Gothic", CenturyGothic, AppleGothic, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  margin: 2px 0 0;
  color: #aaa;
  letter-spacing: 0.08em;
}

.header-nav a {
  font-family: "Century Gothic", CenturyGothic, AppleGothic, Arial, sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #ddd;
  text-decoration: none;
}

.header-nav a:hover {
  color: #fff;
}

.site-nav a:hover {
  opacity: 1;
}

/* ===== GALERÍA ===== */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  grid-auto-rows: 8px;
  gap: 0;
}

.card {
  position: relative;
}

.card img {
  width: 100%;
  display: block;
  filter: brightness(0.95);
  transition: filter 0.3s ease;
}

.card img:hover {
  filter: brightness(1.1);
}

/* ===== LIGHTBOX ===== */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.lightbox.show {
  display: flex;
}

.lb-content {
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}

.lb-content img {
  max-width: 100%;
  max-height: 70vh;
}

.lb-text {
  margin-top: 15px;
  font-size: 14px;
  opacity: 0.85;
}

.lb-text a {
  display: inline-block;
  margin-top: 10px;
  color: #fff;
  text-decoration: underline;
  font-size: 13px;
}

.lb-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.site-footer {
  margin-top: 80px;
  padding: 40px 20px;
  border-top: 1px solid #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.footer-social {
  display: flex;
  gap: 22px;
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: #aaa;
  transition: fill 0.2s ease;
}

.footer-social a:hover svg {
  fill: #fff;
}

.footer-copy {
  font-family: "Century Gothic", CenturyGothic, Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #555;
}
