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

@font-face {
  font-family: 'BlockBlueprint';
  src: url('./fonts/BlockBlueprint.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Teknaf';
  src: url('./fonts/TeknafRegular-rv0aB.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: sans-serif;
  background: #000;
  overflow-x: hidden;
}

/* ===========================
   TOP NAVBAR — collapse → hamburger → side panel
=========================== */
.navbar {
  background-image: linear-gradient(to bottom, #121b28 0%, #00000000 100%);
  height: 80px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}

body.nav-collapsed .navbar {
  transform: translateY(-100%);
}

.navbar__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  position: relative;
}

#navbar__logo {
  font-family: 'Inter', system-ui, sans-serif;
  color: white;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  opacity: 0.6;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
#navbar__logo:hover { opacity: 1; }

.navbar__menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.navbar__item {
  position: relative;
  height: 80px;
  display: flex;
  align-items: center;
  list-style: none;
}

.navbar__links {
  color: #ffffff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  opacity: 0.6;
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 8px 14px;
  cursor: pointer;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.navbar__links:hover {
  opacity: 1;
  color: #3a6785;
}

/* Dropdown */
.navbar__dropdown {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 210px;
  list-style: none;
  padding: 8px 0;
  margin: 0;
 background: rgba(15, 23, 34, 0.06);
  backdrop-filter: blur(8px) saturate(1.3);
  -webkit-backdrop-filter: blur(26px) saturate(1.3); 
   border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
  z-index: 1000;
}
.navbar__item:hover .navbar__dropdown,
.navbar__item:focus-within .navbar__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s;
}
.navbar__dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.navbar__dropdown li { list-style: none; }
.navbar__dropdown a {
  display: block;
  padding: 11px 20px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e0e0e0;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}
.navbar__dropdown a:hover {
  background: rgba(58, 119, 133, 0.18);
  color: #6fadd6;
  padding-left: 28px;
}

/* Collapse arrow */
#navCollapseBtn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
#navCollapseBtn:hover {
  background: rgba(58, 133, 86, 0.25);
  border-color: rgba(58, 133, 86, 0.6);
  color: #6fd6a0;
}

/* ===========================
   HAMBURGER (shown when nav collapsed)
=========================== */
#menuToggle {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  z-index: 1001;
  background: rgba(12, 18, 28, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s, background 0.2s ease, border-color 0.2s ease;
}
body.nav-collapsed #menuToggle {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s, visibility 0s linear 0.2s, background 0.2s ease, border-color 0.2s ease;
}
body.menu-open #menuToggle {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
}
#menuToggle:hover {
  background: rgba(58, 133, 86, 0.25);
  border-color: rgba(58, 133, 86, 0.6);
}
#menuToggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
}

/* ===========================
   OVERLAY
=========================== */
#menuOverlay {
  position: fixed;
  inset: 0;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transition: visibility 0s linear 0.35s;
}
body.menu-open #menuOverlay {
  opacity: 1;
  visibility: visible;
  transition: visibility 0s;
}

/* ===========================
   SIDE PANEL
=========================== */
#sidePanel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 340px;
  max-width: 85vw;
  z-index: 1002;
  background: rgba(15, 23, 34, 0.06);
  backdrop-filter: blur(8px) saturate(1.3);
  -webkit-backdrop-filter: blur(26px) saturate(1.3);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.4);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
body.menu-open #sidePanel {
  transform: translateX(0);
}

.side-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  border-top-left-radius: 24px;
  flex-shrink: 0;
}

.side-panel__logo {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.side-panel__logo:hover { opacity: 1; color: #6fd6a0; }

#menuClose {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: transparent;
  color: #ffffff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
#menuClose:hover {
  background: rgba(58, 113, 133, 0.18);
  border-color: rgba(58, 122, 133, 0.6);
  color: #6fb7d6;
}

.side-panel__nav {
  padding: 28px 0;
  flex: 1;
}
.side-panel__group { margin-bottom: 26px; }
.side-panel__group:last-child { margin-bottom: 0; }

.side-panel__group-label {
  display: block;
  padding: 4px 28px 8px;
  margin: 0 16px 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #6fa1d6;
  opacity: 0.8;
  border-bottom: 1px solid rgba(111, 174, 214, 0.18);
}
.side-panel__nav a {
  display: block;
  padding: 12px 32px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #d8d8d8;
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-left-color 0.2s ease, padding-left 0.2s ease;
}
.side-panel__nav a:hover {
  background: rgba(58, 68, 133, 0.1);
  color: #6fb0d6;
  border-left-color: #6593ac;
  padding-left: 40px;
}

@media screen and (max-width: 960px) {
  .navbar__container { padding: 0 20px; }
  .navbar__menu { gap: 0; }
  .navbar__links { font-size: 0.7rem; padding: 8px 10px; letter-spacing: 0.06em; }
  .navbar__dropdown { min-width: 170px; }
  .navbar__dropdown a { font-size: 0.7rem; padding: 9px 16px; }
  #sidePanel { width: 280px; }
}


/* HERO / PAGE 1 */
.hero {
  position: fixed;      /* stays completely fixed */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1;           /* behind scrolling content */
}



.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);

  background-size: 30px 30px; /* grid size */
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);

  background-size: 3px 3px; /* grid size */
  pointer-events: none;
  z-index: 9;
}



.overlay-video {
  position: absolute;
  top: 32%;
  left: 50%;
  width: 110vw;
  height: 110vh;
  object-fit: cover;
  transform: translate(-50%, -50%);
  filter: grayscale(100%) contrast(150%);
  z-index: 4;
}
.halftone-overlay {
  position: absolute;
  top: 55%;
  left: 50%;
  width: 500px;        /* smaller width */
  height: auto;        /* keep aspect ratio */
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply; /* blends with video for halftone effect */
  opacity: 0.0;             /* subtle effect */
  pointer-events: none;      /* so it doesn't block text */
  z-index: 3;
}

.floating-images {
  position: absolute;
  inset: 0;
  z-index: 1; /* behind text, above video if desired */
  pointer-events: none; /* don’t block clicks */
}

.floating-images img {
  position: absolute;
  width: 290px; /* adjust size */
  height: auto;
  opacity: 0.7; /* subtle overlay */
  transition: transform 3s ease, opacity 3s ease;
}

/* Random positions around corners */
.floating-images img:nth-child(1) {
  top: 5%;
  left: 55%;
}

.floating-images img:nth-child(2) {
  top: 10%;
  right: 75%;
}

.floating-images img:nth-child(3) {
  bottom: 40%;
  left: 20%;
}

.floating-images img:nth-child(4) {
  bottom: 29%;
  right: 20%;
}


@keyframes float {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(10px, -10px); }
  100% { transform: translate(0, 0); }
}

.floating-images img {
  animation: float 6s ease-in-out infinite alternate;
}


/* CORNER TEXTS */
.corner-text {
  position: absolute;
  font-size: 7rem;
  font-weight: 301;
letter-spacing: -0.7rem;
  transform: scale(1.14, 1.00);
  line-height: 0.75;      /* try 0.9 – 1.1 */
  padding: 90px;
 opacity: 1;
  z-index: 2; /* above video and halftone overlay */
  max-width: 850px;
}

/* Top Left */
.corner-text.top-left {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  top: 0;
  left: 0;
}

/* Top Right */
.corner-text.top-right {
 background: linear-gradient(90deg, rgb(255, 255, 255), rgba(255, 255, 255, 0));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  top: 0;
  right: 0;
  text-align: right;
}

/* Bottom Left */
.corner-text.bottom-left {
 background: linear-gradient(90deg, rgba(0, 0, 0, 0), white);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  bottom: 0;
  left: 0;
}

/* Bottom Right */
.corner-text.bottom-right {
 background: linear-gradient(90deg, rgb(255, 255, 255), rgba(0, 0, 0, 0));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  bottom: 0;
  right: 0;
  text-align: right;
}

/* Responsive */
@media (max-width: 768px) {
  .corner-text {
    font-size: 1.5rem;
    padding: 10px;
    max-width: 200px;
  }

  .halftone-overlay {
    width: 150%;
    height: 150%;
  }
}

/* PAGE 2 */
#page2 {
  margin-top: 100vh; /* start below hero */
  width: 100%;
  height: 8%;
  background: rgba(0, 0, 0, 0.793);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  box-sizing: border-box;
  position: relative;
  z-index: 2; /* scroll content above hero */
}

.page2-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  gap: 40px;
  flex-wrap: wrap;
}

.page2-text {
  flex: 1 1 20%;
  color: #ffffff;
  text-align: left; /* move text closer to video */
    z-index: 3;

}

.page2-text h1 {
  font-size: 4rem;
  
  font-family: 'Teknaf', sans-serif;
  margin-bottom: 20px;
    margin-left: -200px;
  z-index: 3;
}

h1 a {
  color: rgb(255, 255, 255);
  text-decoration: none;
}

h1 a:hover {
  text-decoration: underline;
}

.page2-text p {
  font-size: 1rem;
    font-family: 'Teknaf', sans-serif;

  line-height: 1.2;
  margin-bottom: 15px;
      margin-left: -200px;

  opacity: 0.9;
}

.page2-video {
  flex: 1 1 20%;
  display: flex;
  justify-content: flex-end;
}
.page2-video img {
  width: 140%;
  z-index: 1;
  max-width: 1500px;
  margin-right: -200px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}


/* PAGE 3 *//* PAGE 3 FULLSCREEN VIDEO */
#page3 {
  margin-top: 500px;
    width: 100%;
  height: 100vh; /* full screen height */
  display: flex;
  justify-content: center;
  align-items: center;
  background: black;
  position: relative;
  z-index: 2;
}

.page3-fullvideo {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills screen */
  z-index: 1;
}


.image-slidee {
  position: relative; /* relative to page */
  top: 500px; /* adjust if you want some vertical offset */
  left: 0;
  width: 100%;          /* full width of viewport */
  height: 400px;        /* adjust height for the rectangle */
  background-color: #1d0f3b8b;
  display: flex;
  gap: 30px;
  overflow-x: auto;
  overflow-y: hidden;
  
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  
  z-index: 8;
  pointer-events: auto;
  cursor: grab;
}

.image-slidee::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 3735px;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);

  background-size: 3px 3px; /* grid size */
  pointer-events: none;
  z-index: 9;
}



.image-slidee:active {
  cursor: grabbing;
}

.image-slidee img {
  height: 100%;
  width: auto;        /* maintain aspect ratio */
  flex: 0 0 auto;     /* prevent shrinking */
  scroll-snap-align: start;
  object-fit: cover;
  filter: grayscale(0%) contrast(1.1);
  opacity: 1;
}

/* PAGE 5 */
#page7 {
  width: 100%;
  margin-top: 1000px;
  z-index: 6;
  min-height: 30vh;
background: linear-gradient(
  90deg,
  #ffffff 0%,
  #ffffff 35%,
  #fff 50%,
  #ffffff 65%,
  #ffffff 100%
); 
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  box-sizing: border-box;
}

.page7-container {
  text-align: left;
  max-width: 600px;
    margin-bottom: 0px; /* reduced spacing below heading */

}

#page7 h1 {
  font-size: 3rem;
    font-family: 'Teknaf', sans-serif;
margin-bottom: 30px;
  color: #000;
}

#page7 p {
  font-size: 1rem; /* smaller text for emails and phone */
    font-family: 'Teknaf', sans-serif;

  margin: 5px 0;   /* reduced spacing between lines */
  color: #333;
}