html {
  scroll-behavior: smooth;
}

img {
  opacity: 1 !important;
  transition: none !important;
}

.image-gallery{
	 opacity: 1 !important;
  transition: none !important;
}

video {
    opacity: 1 !important;
  transition: none !important;
}

.lazyload,
.lazyloaded,
.is-visible {
  opacity: 1 !important;
  transition: none !important;
}


hr
{
border: 1px solid var(--ui-border-color);
margin-left: 18rem;
margin-right: 18rem;
}

.case-study-para{
    padding-top: 2rem;
    padding-bottom: 2rem;
	padding-left: 18rem;
    padding-right: 18rem;
}

.listeditems li {
  margin-bottom: 1rem; /* Vertical spacing between bullets */
}

.listeditems ol {
  padding-left: 4rem;
  margin: 0;
}

.listeditems ul {
  list-style-type: disc; /* This is the bullet style */
  padding-left: 2.5rem;  /* Adjust this for bullet indent */
   margin: 0;
}

.scroll-button {
     display: inline-block;
  padding: 0.5rem 1.25rem;
  font-size: 1.5rem;
  border: 2px solid var(--ui-border-color);
  color: var(--text-color);  
  border-radius: 0.5rem;
  background: transparent;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  margin: 1rem 1rem 1rem 0;
 transition: border-radius 0.3s ease;   
}

.scroll-button:hover {
 background-color: #0070f3;
  color: #fbfbff;
  border-radius: 5rem;
  text-decoration: none;
  
}


.watchPrototype {
    display: inline-block;
  padding: 0.5rem 1.25rem;
  font-size: 1.5rem;
  border: 2px solid var(--ui-border-color);
  color: var(--text-color);  
  border-radius: 0.5rem;
  background: transparent;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  margin: 1rem 1rem 1rem 0;
    transition: border-radius 0.3s ease;
}

.watchPrototype:hover {
 background-color: #0070f3;
  color: #fbfbff;
  border-radius: 5rem;
  text-decoration: none;
}



/* ─── 1. DESIGN TOKENS (light = default) ─────────────────────────── */
:root {
  --background-color: #fbfbff;
  --text-color:       #201e1f;
  --ui-border-color:  #201e1f;
}

/* Dark‑mode overrides */
.dark-mode {
  --background-color: #201e1f;
  --text-color:       #fbfbff;
  --ui-border-color:  #fbfbff;
}

/* ─── 2. APPLY TOKENS ACROSS THE SITE ────────────────────────────── */
body {
  background: var(--background-color);
  color:      var(--text-color);
}

/* Navbar */
.navbar {
  border-top:    2px solid var(--ui-border-color);
  border-bottom: 2px solid var(--ui-border-color);
}

/* Generic link / hover styles you set earlier */
a, .link, .clickable-text, .contact-label {
  color: var(--text-color);
}
a:hover,
.link:hover,
.clickable-text:hover,
.contact-label:hover {
  color: var(--text-color);          /* stays in sync */
  text-decoration: underline;
}

/* Pill buttons, dropdown border, etc. */
.pbutton,
.dropdown-content,
.nav-button {
  border: 2px solid var(--ui-border-color);
  color:  var(--text-color);
}

/* Circle buttons: fill the active one for feedback */
.nav-button.active {
  background: var(--text-color);
  border-color: var(--text-color);
}



.feedimage {
  border-radius: 1em !important;
  transition: border-radius 0.3s ease !important;
}

.feedimage img {
  border-radius: 1em;
  overflow: hidden;
  transition: border-radius 0.3s ease !important;
}

.feedimage:hover img {
  border-radius: 10em 1em 10em 1em !important;
  outline: 2px solid var(--ui-border-color);
}


/* Base link styles */
a, .link, .clickable-text {
  color: var(--text-color);
  text-decoration: none;
  cursor: pointer;
}

/* Hover effect for all interactive elements */
a:hover,
.link:hover,
.clickable-text:hover {
  color: #0070f3; /* Accent color */
  text-decoration: underline;
}





.feedimage{
	  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  border-radius: 1em;
}


.feedimage img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feedimage:hover {
  border-radius: 10em 1em 10em 1em !important;
  outline: 2px solid var(--ui-border-color);
}



.video-container {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  border-radius: 1em;
  transition: border-radius 0.3s ease !important;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-container:hover {
  border-radius: 10em 1em 10em 1em !important;
  outline: 2px solid var(--ui-border-color);
}


/* Container styling contact page */


.contact-page {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: var(--background-color, #fbfbff);
}

.contact-about{
	  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 100;
  padding: 0 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Heading style */
.contact-heading {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 100;
  padding: 0 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Wrapper for main content */
.contact-content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 2rem;
  max-width: 1200px;
  margin: auto;
}

/* Left section (image) */
.contact-left {
  flex: 1;
  max-width: 50%;
}

.bird-image {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
  transition: border-radius 0.3s ease !important;
}

.bird-image:hover {
  border-radius: 10em 1em 10em 1em !important;
  outline: 2px solid var(--ui-border-color);
}

/* Right section (contact info and form) */
.contact-right {
  flex: 1;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info {
  font-size: 2rem;
  line-height: 1.5;
}

.contact-info h2 {
  font-size: 1.5rem;
  font-weight: 100;
  text-transform: uppercase;
  padding-bottom: 1.5rem;
}

/* Form styles */
.contact-form {
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-size: 1.5rem;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  border: 2px solid var(--ui-border-color);
  border-radius: 1rem;
  padding: 0.75rem;
  font-family: inherit;
  font-size: 1.5rem;
  background: transparent;
  color:  var(--text-color);
  width: 100%;
}

/* Submit button */
.send-button {
  align-self: start;
  padding: 0.5rem 1.25rem;
  font-size: 1.5rem;
  border: 2px solid var(--ui-border-color);
  color:  var(--text-color);  
  border-radius: 0.5rem;
  background: transparent;
  cursor: pointer;
  transition: border-radius 0.3s ease;
  margin-top: 1rem;
}

.send-button:hover {
  background-color: #0070f3;
  color: #fbfbff;
  border-radius: 5rem;
}


/*Project section*/

.project-description{
    padding-bottom: 1.5rem;
	font-size: 1.5rem;
}

.project-image{
	padding-top: 1rem;
    padding-bottom: 1rem;
}

.project-image img{
	border-radius: 0.5rem;
}

.pvideo-container {
 margin-top: 1rem;  
    margin-bottom: 1rem;  
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  border-radius: 1em;
  transition: border-radius 0.3s ease !important;
}

.pvideo-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-closer{
	font-size: 1.5rem;
    padding-top: 1.0rem;
    padding-bottom: 1.0rem;
    text-align: left;
}





/*Footer*/
.quotebar {
  display: flex;
  justify-content: space-between; /* left & right blocks */
  align-items: center;
  width: 100%;
  height: 2.5em;
  border-top: 2px solid var(--ui-border-color);
  border-bottom: 2px solid var(--ui-border-color);
  padding: 0.5em 2em;
  background-color: var(--background-color);
  font-size: 1.5em ;
}

/*controls project title*/
.ptitle {
    padding-top: 0.25em;
	font-size: 1.5em;
    font-weight: 100;
}

/* ─────  Desktop layout: 3 columns  ───── */
.project-row {
  display: grid;
  grid-template-columns: 3fr 1fr 2fr; /* name | year | tags */
  padding: 0.5em 0;
  border-bottom: 1px solid var(--ui-border-color);
  font-size: 1.5em;                   /* your body copy size */
}

.project-name { text-align: left; }
.project-year { text-align: left; }
.project-tags { text-align: left; }

/*Pill buttons as tags*/
.pbutton {
  /*pointer-events: none;*/
  cursor: default;
  background-color: transparent;
  border:solid, 2px;
  color: var(--text-color);
  padding: 0.3em 0.75em;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin-top: 0.5em;
  margin-right: 0.25em;
  border-radius:0.5em;
  font-family: 'InterTight-font', Icons;
  font-size: 1em;
  font-style: normal;
  font-weight: 100;
  transition: border-radius 0.3s ease;
  margin-bottom: 0.25em;
  text-transform: uppercase;
    
}

.pbutton:hover {
  border-radius: 2em;
}


/* Basic reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face{
    font-family:'InterTight-font';
  src: url('https://files.cargocollective.com/c2976430/InterTight-Regular.ttf') format('truetype');
}

body {
  font-family:'InterTight-font';
  background-color: var(--background-color);
}



/* ─────────────────────────
   Navigation Bar Wrapper
   ───────────────────────── */
.navbar {
  display: flex;
  justify-content: space-between; /* left & right blocks */
  align-items: center;
  width: 100%;
  height: 4em;
  border-top: 2px solid var(--ui-border-color);
  border-bottom: 2px solid var(--ui-border-color);
  padding: 0.5em 2em;
  background-color: var(--background-color);
}


.site-name {
  font-size: 1.5em;
  font-weight: 100;
  text-transform: uppercase;
    
}

.nav-info {
  display: flex;
  align-items: center;
  gap: 2.5em;
  position: relative;
}

.contact-label {
  cursor: pointer;
  font-size: 1.5em;
  display: inline-block;
  color: var(--text-color);
  text-decoration: none;
    
}

.contact-label:hover {
  color: #0070f3; /* Replace with your accent color */
  text-decoration: underline;
}

/* Right (utilities) */
.nav-utils {
  display: flex;
  align-items: center;
  gap: 2em;
}

.mode-toggle {
  display: flex;
  gap: 1em;
  font-size: 1.5em;
  align-items: center;
}

.mode-toggle-btn {
  width: 2em;
  height: 2em;
  border-radius: 50%;
  border: 2px solid;
  cursor: pointer;
  margin: 0em;
}

/* Dark button (left): black fill with white border */
.dark-button {
  background-color: #201e1f;
  border-color: var(--ui-border-color);
}

.dark-button:hover {
  border-color: #0070f3;
}

/* Light button (right): white fill with #000 border */
.light-button {
  background-color: #fbfbff;
  border-color: var(--ui-border-color);
}

.light-button:hover {
  border-color: #0070f3;
}

/* ───────────────
   Copyright dropdown section
   ─────────────── */
.copyright-dropdown {
  position: relative;
  display: inline-block;
  pointer-events: all;
}

.copyright-label {
  font-size: 2em;
}


.copyright-label:hover {
  color: #0070f3; /* Replace with your accent color */
  text-decoration: underline;
}

/* Dropdown menu */
.dropdown-copyright {
  display: none;
  position: absolute;
  top: 150%;
  right: 0;
  background-color: var(--background-color);
  border: 2px solid var(--text-color);
  padding: 0.75em 0.75em;
  min-width: 180px;
  z-index: 1000;
  white-space: nowrap;
  pointer-events: auto;
  font-size: 1.5em;
  line-height: 1.5em;
    border-radius: 0.5em;
}

.dropdown-copyright.show {
  display: block;
}





/* ───────────────
   Responsiveness
   ─────────────── */
@media (max-width: 768px) {
  .navbar {
    padding: 0.5em 0.75em;
  }
  .nav-info {
    gap: 16px;
  }
  .nav-utils {
    gap: 12px;
  }
  .feed-container {
    padding-top: 0.5em; /* adjust this value as needed */
  }
    
    .light-button{
	display: none;
}
    
    .dark-button{
	display: none;
}
    
  .dropdown-copyright {
   
    top: 160% !important; /* Override any right alignment */
    transform: none !important;   /* Disable any transform shifting */
    max-width: 90vw;              /* Prevent overflow */
    box-sizing: border-box;
      
  }
    
  .project-row {
    grid-template-columns: 3fr 1fr;   /* name | year */
  }
  .project-tags { display: none; }

   
    /*Contact page mobile view*/
    
   .contact-page {
  padding-top: 2rem;
  padding-bottom: 4rem; 
}
    
     .contact-about {
    font-size: 1.5rem;
    text-align: center;
    padding: 2 0rem;
  }
    
    
  .contact-heading {
    font-size: 2.5rem;
    text-align: center;
    padding: 2 0rem;
  }

  .contact-content {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
  }

  .contact-left,
  .contact-right {
    max-width: 100%;
    flex: none;
  }

  .bird-image {
    display: none;
  }

  .contact-info,
  .contact-form {
    text-align: center;
    align-items: stretch;
  }

    
    .contact-form label {
    text-align: left;
}
    
  .contact-form input,
  .contact-form textarea {
    width: 100%;
  }

  .send-button {
    align-self: stretch;
    text-align: center;
  }
    
    
  .video-container video {
    object-fit: contain;
    background-color: black; /* Optional: prevents white space if aspect doesn't match */
  }
    
    .case-study-para{
    padding-top: 1rem;
    padding-bottom: 1rem;
	padding-left: 3rem;
    padding-right: 3rem;
}
   
}
 