/* ===== GLOBAL RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  width: 100%;
  height: 100%;
  background: #000;
  font-family: 'Montserrat', sans-serif;
  color: white;
  overflow-x: hidden;
}

/* ===== TOP BAR ===== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px; /* smaller height for minimal top/bottom gap */
  background: black;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* align text to left */
  padding: 0 30px;
  z-index: 1000;
  transition: transform 0.4s ease;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.topbar.hide-topbar {
  transform: translateY(-100%);
}

.topbar h1 {
  font-size: 32px; /* larger text */
  font-weight: 300; /* Montserrat thin */
  color: white;
  margin: 0;
  letter-spacing: 1px;
}

/* ===== HERO REEL ===== */

.hero-reel {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  /* remove clip-path if you want full video */
}

.hero-video-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;   /* ensures full coverage */
  height: 120%;
  transform: translate(-50%, -50%);
  pointer-events: none; /* DISABLES ALL INTERACTIONS */
}

.hero-video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;      /* fill container */
  object-position: center;/* center video */
  pointer-events: none;   /* ensures iframe cannot be clicked */
}



/* ===== ABOUT SECTION ===== */
.about-section {
  background: #111;
  color: white;
  padding: 120px 10% 80px;
  position: relative;
  margin-top: -60px;
  border-radius: 40px 40px 0 0;
  font-family: 'Montserrat', sans-serif;
}

.about-inner {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  align-items: center;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 40px;
  margin-bottom: 25px;
  font-weight: 700;
}

.about-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 18px;
  font-weight: 400;
}

/* Portrait video */
.about-portrait .portrait-square {
  width: 320px;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  background: black;
}

.about-portrait video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== CONTACT BLOCK ===== */
.contact-block {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid rgba(255,255,255,0.3);
}

.contact-block h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: white;
}

.contact-block p {
  font-size: 18px;
  margin: 5px 0;
  color: white;
}

/* ===== WORKS GRID ===== */
.works-grid-section {
  background: #111;
  padding: 80px 10%;
  color: white;
}

.grid-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* ===== WORKS GRID SQUARES ===== */
.work-square {
  display: block; /* ← REQUIRED */
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  background: #333;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}


.work-square:hover {
  transform: scale(1.03);
}

.square-thumb {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none; /* allow clicks to pass through to parent */
}

.placeholder-label {
  color: #888;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  padding: 20px;
  line-height: 1.4;
  pointer-events: none; /* allow clicks to pass through to parent */
}

/* ===== LIGHTBOX ===== */
.video-lightbox {
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  display: none;
  flex-direction: column;
  justify-content: center; /* vertically center */
  align-items: center;
  z-index: 5000;
  padding: 20px 40px;
  box-sizing: border-box;
  overflow-y: auto; /* in case description is long */
}

.lightbox-content {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
}

.lightbox-title {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 10px;
  text-align: center;
}

.lightbox-video {
  display: block;
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 16/9;
  border: none;
  border-radius: 12px;
  margin: 10px 0;
}

.lightbox-description {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  margin-top: 5px; /* smaller margin to keep description visible */
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 36px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  z-index: 10;
}


/* ===== WORK CATEGORIES ===== */
.works-category {
  margin-bottom: 80px;
}

.category-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ddd;
}

/* Placeholder squares for upcoming works */
.work-square.placeholder {
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}

.placeholder-label {
  color: #888;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  padding: 20px;
  line-height: 1.4;
  pointer-events: none;
}



