body {
  margin: 0;
   font-family: "TT Ramilas";
  src: url("TT-Ramilas.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  background-color: var(--pink);
  background-image: url("background-brand.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  color: #8b5e3c;
  text-align: center;
}

.site-header {
  padding: 2rem 1rem;
}

.btn,.close-btn,.nav-btn {
  display: inline-block;
  padding: 0.7rem 1.2rem;
  background: linear-gradient(135deg, hsl(0, 0%, 100%), #ecc8d5);
  color: #ff7aa8;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
}

.btn:hover {
  transform: scale(1.07);
}

.gallery-container {
  padding: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.gallery-item {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform .2s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.hidden {
  display: none;
}

.lightbox-content img,
.lightbox-content video {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2rem;
  background: white;
  border: none;
  border-radius: 50%;
  padding: 0.3rem 0.7rem;
  cursor: pointer;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  background: white;
  border: none;
  border-radius: 50%;
  padding: 0.3rem 0.7rem;
  cursor: pointer;
}

.prev { left: 20px; }
.next { right: 20px; }

.instagram-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 32px;
    color: #fff;
    background: #E1306C;
    padding: 12px 14px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}