* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background: #000;
  color: #fff;
}


/* NAV */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  flex-wrap: nowrap;
}
.nav a {
  margin-left: 24px;
  text-decoration: none;
  color: #e5e5e5;
  font-size: 14px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.nav nav {
  display: flex;
  gap: 16px;               /* space between links */
  flex-shrink: 1;           /* allows links to shrink */
}

.nav nav a {
  white-space: nowrap;      /* prevent wrapping */
  flex-shrink: 1;           /* allow link text to shrink */
  font-size: 14px;
}


.logo {
  font-weight: 500;
  letter-spacing: 2px;
}

.logo img {
  height: 63px; /* adjust to taste */
  width: auto;
  display: block;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
 

}

.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 300;
  letter-spacing: 8px;
}

.hero-content p {
  margin-top: 12px;
  font-size: 14px;
  letter-spacing: 2px;
  opacity: 0.8;
}

.hero-socials {
  position: absolute;
  bottom: 30px;
  left: 40px;
  z-index: 2;
}

.hero-socials a {
  margin-right: 14px;
  color: #ccc;
}

.hero-tagline {
  position: absolute;
  bottom: 80px;
  left: 40px;
  z-index: 2;
  font-size: 14px;
  letter-spacing: 1.5px;
  opacity: 0.85;
  max-width: 280px;
}

/* HERO CENTERED LOGO */
.hero-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* centers it perfectly */
  z-index: 2; /* above video but below socials/tagline if needed */
}

.hero-logo img {
  width: 720px;   /* fixed width */
  height: auto;   /* keeps aspect ratio */
  
  /* Optional: make responsive on tiny screens */
}

@media (max-width: 480px) {
  .hero-logo img {
    width: 80px; /* smaller on small screens */
  }
}

@media (max-width: 480px) {
  .nav {
    padding: 16px 20px;
  }
  .nav nav a {
    margin-left: 12px; /* reduce space between links */
    font-size: 12px;   /* optional smaller font */
  }
}


/* WORK SECTION */
/* SECTION STYLING */
.work {
  padding: 0;       /* remove padding so cards touch edges */
  margin: 0;
  display: flex;
  flex-direction: column;
}

/* FULL-WIDTH CARDS */
.work-card {
  position: relative;
  height: 55vh;          /* adjust height as needed */
  width: 100%;           /* full viewport width */
  border-radius: 0;       /* optional, remove rounded corners */
  overflow: hidden;
  display: flex;
  align-items: center;    /* vertical center text */
  text-decoration: none; /* removes underline from link text */

}

/*/* CARD IMAGES */
/* Flip the first card’s normal image horizontally */
.work-card:nth-child(1) img:not(.hover-img) {
    transform: rotate(180deg);  /* flip horizontally */
}
.work-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;      /* cover the entire rectangle */
  object-position: bottom;   /* shift image up to show top */
  transition: opacity 0.5s ease;
  z-index: 1;
}

.work-card .hover-img {
  opacity: 0;
}

.work-card:hover .hover-img {
  opacity: 1;
}

/* TEXT OVERLAY */
.work-text {
  position: relative;      /* relative to card */
  z-index: 2;
  font-family: 'Montserrat', sans-serif;
  font-weight: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  text-align: left;
  background-color: rgba(0, 0, 0, 0); /* semi-transparent strip */
  padding: 10px 20px;
  margin-left: 60px;       /* spacing from left edge */
}


/* FOOTER */
.footer {
  background: #7298aa;
  padding: 40px;
}

.footer-content {
  max-width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* left | center | right */
  align-items: center;
  gap: 20px;
}

.footer-socials a {
  margin-right: 12px;
  color: #ccc;
}

.footer-meta {
  display: flex;
  flex-direction: column; /* 👈 stacks vertically */
  text-align: right;
  gap: 6px; /* space between location & copyright */
}

.footer-location {
  font-size: 15px;
  opacity: 0.9;
}

.footer-copy {
  font-size: 12px;
  opacity: 0.9;
}


h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}

