body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: black;
  color: white;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url('photo1.jpeg') center/cover no-repeat;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin: 0;
}

.hero p {
  opacity: 0.8;
}

/* GALLERY */
.gallery {
  display: flex;
  flex-direction: column;
}

.gallery img {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.02);
}

/* LIGHTBOX */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.95);
  display: none;
  justify-content: center;
  align-items: center;
}

#lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* SCROLLING */
html {
  scroll-behavior: smooth;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  box-sizing: border-box;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.logo {
  font-size: 1.2rem;
  font-weight: bold;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-size: 0.9rem;
}

.nav-links a:hover {
  opacity: 0.7;
}

.collections {
  padding: 120px 40px 40px;
  text-align: center;
}

/* PAGE BACKGROUND */
body {
  background: #2f2a24; /* dark beige */
  color: white;
  margin: 0;
}

/* COLLECTION SECTION */
.collections {
  margin-top: 80px;
}

/* EACH COLLECTION BLOCK */
.collection-card {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
  cursor: pointer;
}

.collection-card {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeIn 1s forwards;
}

.collection-card:nth-child(2) {
  animation-delay: 0.2s;
}

.collection-card:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* IMAGE */
.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* DARK OVERLAY */
.collection-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* TEXT */
.collection-card h1 {
  font-size: 2.5rem;
  letter-spacing: 2px;
}

/* HOVER EFFECT */
.collection-card:hover img {
  transform: scale(1.05);
}

/* MASONRY GRID */
.masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 100px 40px 40px;
}

/* BASE ITEM */
.item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* IMAGE */
.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* SIZE VARIATIONS */
.item.tall {
  grid-row: span 2;
  height: 600px;
}

.item.wide {
  grid-column: span 2;
  height: 280px;
}

.item:not(.tall):not(.wide) {
  height: 280px;
}

/* HOVER OVERLAY */
.hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  background: rgba(0,0,0,0.25);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.item:hover .hover-overlay {
  opacity: 1;
}

/* TEXT */
.hover-overlay h2 {
  color: white;
  font-size: 1.8rem;
  letter-spacing: 2px;
}

/* SHOW ON HOVER */
.item:hover .hover-overlay {
  opacity: 1;
}

/* ZOOM EFFECT */
.item img {
  transition: transform 0.4s ease;
}

.item:hover img {
  transform: scale(1.05);
}