/*
 * =============================================
 * PORTFOLIO FOR CREATIVES – MAIN STYLESHEET
 * =============================================
 * Author: James Neufeld
 * Version: 2.1 | Last Updated: April 13, 2025
 * License: GNU General Public License v3.0 (GPL-3.0)
 * https://www.gnu.org/licenses/gpl-3.0.en.html
 * 
 * CONTENTS:                    DESIGN SYSTEM:
 * 1. Base Styles               - Comprehensive color & font theming 🎨
 * 2. Typography                - Mobile-first responsive architecture 📱
 * 3. Layout Components
 * 4. Page Templates
 * 5. Responsive Breakpoints
 * =============================================
 */

/* 
███████  ██████  ███    ██ ████████ ███████ 
██      ██    ██ ████   ██    ██    ██      
█████   ██    ██ ██ ██  ██    ██    ███████ 
██      ██    ██ ██  ██ ██    ██         ██ 
██       ██████  ██   ████    ██    ███████ 
*/

/* ------------------------------- */
/* 🌐 Google Fonts - Customize Your Site's Typography */
/* You can add your own fonts here, but be mindful of performance */
/* ------------------------------- */

/* TODO: Replace these Google Fonts with the ones you want to use on your site. */
/* Remember, the more fonts you load, the longer it can take for your page to load. */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/*

/* 
██ ███    ███ ██████   ██████  ██████  ████████      ██████ ███████ ███████ 
██ ████  ████ ██   ██ ██    ██ ██   ██    ██        ██      ██      ██      
██ ██ ████ ██ ██████  ██    ██ ██████     ██        ██      ███████ ███████ 
██ ██  ██  ██ ██      ██    ██ ██   ██    ██        ██           ██      ██ 
██ ██      ██ ██       ██████  ██   ██    ██         ██████ ███████ ███████ 
*/

/* ------------------------------- */
/* 🔗 Imported Stylesheets */
/* These are external CSS files that add extra effects to your site. */
/* ------------------------------- */

/* TODO: Delete any stylesheets you don't plan to use on your site. */

/* File for animation effects that make elements move (e.g., flying) */
@import url("make-something-fly.css");

/* File for animation effects that make elements blink */
@import url("make-something-blink.css");

/* File for adding a smooth animated gradient background */
@import url("animated-gradient.css");

/* File for adding a glitch animation to your 404 error page */
@import url("error.css");

/* File for adding text stroke (outline) effect */
@import url("text-stroke.css");

/* File for adding stroke shadow effect around text */
@import url("stroke-shadow.css");

/* File with extra experimental styles (e.g., fun animations or effects) */
@import url("experiments.css");

/* File for adding a scroll-to-top button or effect */
@import url("scroll-to-top.css");

/* 
██    ██  █████  ██████  ██  █████  ██████  ██      ███████ ███████ 
██    ██ ██   ██ ██   ██ ██ ██   ██ ██   ██ ██      ██      ██      
██    ██ ███████ ██████  ██ ███████ ██████  ██      █████   ███████ 
 ██  ██  ██   ██ ██   ██ ██ ██   ██ ██   ██ ██      ██           ██ 
  ████   ██   ██ ██   ██ ██ ██   ██ ██████  ███████ ███████ ███████ 
*/

/* ------------------------------- */
/* 🎨 Theme Design Variables */
/* Use CSS variables to quickly change your site's color scheme and typography */
/* ------------------------------- */

/* These design variables store important elements like colours and fonts.
   You can easily change the look and feel of your site by adjusting these values. */

/* TODO: Customize these variables to fit your design. You can add new ones or delete ones you don’t need. */

:root {
  /* Typography */
  --font-family-body: "Poppins", sans-serif;
  --font-family-heading: "JetBrains Mono", monospace;
  --font-family-project-title:"Poppins", sans-serif;
  /* Core Colours */
  --color-text-primary: #222;
  --color-text-secondary: #333;
  --color-accent-primary: #605039;
  --color-accent-secondary: #ff057c;
  --color-overlay-primary: rgb(242, 111, 108,0.925);
  --color-highlight: lemonchiffon;
  --color-fallback: #ff057c; /* Fallback color for glitch effect on 404 page */
  /* Backgrounds */
  --color-bg: #ffffff;
  --color-bg-about: #ffffff;
  --color-bg-footer: #ffffff;
  --color-bg-holding-page: rgba(82, 0, 255, 0.6);
  /* Headings */
  --h1-color: #605039;
  --h2-color: #FFEFE1;
  --h3-color: #605039;
  --h4-color: #605039;
  --h5-color: #ffffff;
  --h6-color: #605039;
  /* Special Text Colours */
  --color-text-holding-title: #ebedf0;
  --color-text-project-category: #ffffff;
  --color-text-project-description: #605039;
  --color-text-project-sidebar: #222;
  --color-text-project-title: #F37A71;
  --color-text-work-grid-title: #ffffff;
  /* Link States */
  --color-link: #605039;
  --color-link-hover: #F37A71;
  --color-link-visited: #605039;
  /* Navigation */
  --color-nav-link: #605039;
  --color-nav-link-hover: #FFEFE1;
  --color-nav-arrow: #605039;
  --color-nav-arrow-hover: #000;
  --color-nav-arrow-stroke: #605039;
  --color-nav-arrow-stroke-hover: #000;
  /* Components */
  --color-bg-full-width: #f5f5f5;
  --color-bg-project-description: #f5f5f5;
  --color-bg-sidebar-project: transparent;
  --color-bg-sidebar-work: lemonchiffon;
  --color-gradient-hero: linear-gradient(90deg, #ff00ff, #00ffff);
  --color-gradient-project-details: transparent;
  /* Special Elements */
  --color-icon-heart: darkred;
  --color-text-holding-footer: #f8f8ff;
  --color-bg-selection: #ffb973;
  --color-shadow-stroke: rgba(0, 0, 0, 0.4);
  /* Assets */
  --image-noise-texture: url(/assets/temp/noise.svg);
  /* Animation Durations */
  --duration-fast: 0.15s; /* Quick interactions (hover states) */
  --duration-normal: 0.3s; /* Standard transitions (button clicks) */
  --duration-slow: 0.75s; /* Prominent animations (page transitions) */
  /* Rounded Corners */
  --radius-sm: 0.5rem; /* Small interactive elements */
  --radius-md: 1rem; /* Cards/containers */
  --radius-lg: 2rem; /* Large decorative elements */
  --radius-full: 50%; /* Circles/pills */
  /* Padding Scale */
  --padding-tiny: 0.5rem; /* Micro-spacing: icon padding, toggle switches */
  --padding-small: 1rem; /* Compact spacing: mobile buttons, form tags */
  --padding-medium: 2rem; /* Standard spacing: desktop buttons, card content */
  --padding-large: 3rem; /* Section spacing: content blocks, banner padding */
  --padding-jumbo: 4rem; /* Hero elements: full-width containers, page headers */
  --padding-ultra: 8rem; /* Full-bleed spacing: edge-to-edge layouts, super-sized headers */
}

/* ======================
   #BASE STYLES
   ====================== */

/* 
███    ███  ██████  ██████  ██ ██      ███████     ███████ ██ ██████  ███████ ████████ 
████  ████ ██    ██ ██   ██ ██ ██      ██          ██      ██ ██   ██ ██         ██    
██ ████ ██ ██    ██ ██████  ██ ██      █████       █████   ██ ██████  ███████    ██    
██  ██  ██ ██    ██ ██   ██ ██ ██      ██          ██      ██ ██   ██      ██    ██    
██      ██  ██████  ██████  ██ ███████ ███████     ██      ██ ██   ██ ███████    ██    
*/

/* ------------------------------- */
/* 📱 Responsive Design for Small Devices (Portrait Phones) */
/* No media query needed for small devices like phones under 576px. This is the default in Bootstrap. */
/* ------------------------------- */

/* Add border-box sizing to make layout easier and enable smooth scrolling behavior */
html {
  box-sizing: border-box; /* Makes sure padding and borders don't add extra width to elements */
  scroll-behavior: smooth; /* Adds smooth scrolling between sections */
body {
  cursor: url("/assets/cursor/2x/Asset 52.png"), auto !important;
}

/* Hover cursor for links */
a:hover {
  cursor: url("/assets/cursor/2x/Asset\ 42.png"), pointer !important;
}

  /* TODO: Replace the URL above to add a custom cursor. 
     If you want to use the default browser cursor, just delete this line. */
}

/* Ensure all elements, including pseudo-elements, follow border-box sizing */
*,
*:before,
*:after {
  box-sizing: inherit; /* Inherits the border-box setting from the html tag */
}

body {
  font-family: var(--font-family-body);
  color: var(--color-text-primary);
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-size: 1rem;
}

/* ------------------------------- */
/* 🖍️ Text Highlight Styles */
/* This changes the background color when you highlight text (like when you click and drag to select it) */
/* ------------------------------- */

::selection {
  background: var(--color-bg-selection); /* Uses your custom color for highlighted text */
}

/* ---------------------------------------- */
/* 🖼️ Responsive Image Styles */
/* These styles make your images and icons look good on any screen size */
/* ---------------------------------------- */

/* Make all images and SVGs scale nicely */
img,
svg {
  max-width: 100%; /* Keeps the image from getting too big */
  height: auto; /* Keeps the image’s original proportions */
  vertical-align: top; /* Removes little gaps under images (from line-height) */
  object-fit: contain;
   /* Optional: Makes sure the whole image fits inside its box */
  /* Try 'cover' if you want it to fill the space, or remove this line if not needed */
}

/* ---------------------------------------- */
/* 🎨 Utility Classes for Styling Elements  */
/* Use these helper classes to quickly apply 
   common styles across your portfolio site */
/* ---------------------------------------- */

/* ------------------------ */
/* 📐 Layout & Spacing Tools */
/* ------------------------ */

/* Horizontally centers a block element (must have a defined width) */
.centered-block {
  margin: 0 auto;
}

/* Vertical layout – stacks items in a column (mobile-first) */
.flex-row {
  display: flex;
  flex-direction: column;
}

/* Puts the box on its own line and adds space underneath */
.margin-bottom {
  display: block; /* Makes it a block so it stacks nicely */
  margin-bottom: 1rem; /* Adds space below – helps with layout breathing room */
}

.width-third,
.width-two-thirds {
  width: 100%;
}

/* Adds a dashed border to help you see the box while you're designing */
.border {
  border: 0px dashed var(--color-accent-primary); /* This uses your custom accent color */
  /* TODO: Delete this later – it’s just here to help you see the box while you work */
}

/* ---------------------- */
/* ✍️  Typography Helpers */
/* ---------------------- */

/* Optimal line length for readability (~60 characters) */
.max-text-width {
  max-width: 60ch;
}

/* Centers your text (great for headings or buttons) */
.centered-text {
  text-align: center;
}

/* ------------------------------ */
/* 🌀 Animation & Interaction Tools */
/* ------------------------------ */

/* Smooth transition when applying transformations – improves hover experience */
.rotate {
  transition: transform 0.3s ease;
}

/* Rotates the element slightly on hover – adds a playful effect */
.rotate:hover {
  transform: rotate(4deg);
}

/* ----------------------------- */
/* 📦 Padding Utilities */
/* ----------------------------- */

.padding-jumbo {
  padding: var(--padding-small); /* Adjusted for mobile use */
}

/* ------------------------------ */
/* 🧱 Border Radius Shortcuts */
/* ------------------------------ */

/* Small interactive elements (buttons, inputs) */
.rounded-small {
  border-radius: var(--radius-sm);
}

/* Default containers (cards, dropdowns) */
.rounded-medium {
  border-radius: var(--radius-md);
}

/* Large decorative elements (modals, banners) */
.rounded-large {
  border-radius: var(--radius-lg);
}

/* Perfect circles (avatars, icons) */
.rounded-full {
  border-radius: var(--radius-full);
}

/* ---------------------------------------- */
/* 🎥 Responsive Embedded Video Styles      */
/* These styles keep your videos looking sharp and correctly sized on any device */
/* ---------------------------------------- */

/* The container holds the video and maintains a 16:9 aspect ratio */
.project-video-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (because 9 ÷ 16 = 0.5625) */
  margin-bottom: 1rem;
}
/* The iframe is absolutely positioned to fill the container */
.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}



/* ---------------------------------------- */
/* 🧭 Responsive Navigation (Coming Soon)   */
/* This section is in progress — you'll build a mobile-friendly nav bar here */
/* ---------------------------------------- */

.responsive-nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background: lightblue;
  padding: var(--padding-small);
}

/* ------------------------------------------------------------------ */
/* 🔤 Global & Mobile Typography                                      */
/* Heading styles that scale nicely for mobile-first, responsive sites */
/* ------------------------------------------------------------------ */

/* 
████████ ██    ██ ██████   ██████   ██████  ██████   █████  ██████  ██   ██ ██    ██ 
   ██     ██  ██  ██   ██ ██    ██ ██       ██   ██ ██   ██ ██   ██ ██   ██  ██  ██  
   ██      ████   ██████  ██    ██ ██   ███ ██████  ███████ ██████  ███████   ████   
   ██       ██    ██      ██    ██ ██    ██ ██   ██ ██   ██ ██      ██   ██    ██    
   ██       ██    ██       ██████   ██████  ██   ██ ██   ██ ██      ██   ██    ██    
*/

/* Heading Styles (h1 - h6) */

h1 {
  font-size: 1 rem;
  font-family: var(--font-family-heading);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--h1-color);
  font-weight: 800;
}

h2 {
   font-size: 1.1rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--h5-color);
  font-family: "poppins", sans-serif;
  font-weight: 400;
    text-transform: uppercase;
}

h3 {
  font-size: 1.325rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--h3-color);
}

h4 {
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--h4-color);
}

h5 {
  font-size: 1.1rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--h5-color);
  font-family: "poppins", sans-serif;
  font-weight: 400;
    text-transform: uppercase;
}

h6 {
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--h6-color);
}

/* ------------------------------------------------------------------ */
/* 📝 Paragraph and Text Styles                                       */
/* Base text styles for body copy, bold, italic, and fine print       */
/* ------------------------------------------------------------------ */

p {
  font-size: 1.225rem;
  line-height: 1.3;
  margin-bottom: 1rem;
  font-weight: 300;
  color: #ffffff;
}

strong {
  font-weight: 700; /* Makes text bold */
}

em {
  font-style: italic; /* Adds emphasis with italic style */
}

/* ------------------------------------------------------------------ */
/* 🎨 Custom Class Styles for Headlines, Projects, and Highlights     */
/* Use these utility classes to style key text elements across pages  */
/* ------------------------------------------------------------------ */

/* Main hero headline — usually sits in the intro section */
.hero-headline {
  font-size: 2rem;
  color: var(--h1-color); /* Uses your brand's dominant color */
  max-width: 60ch; /* Optimal line length for readability (~40 characters) */
  text-wrap: balance; /* Prevents awkward line breaks (like elegant typography) */
  margin-inline: auto; /* Horizontally centers the text in its container */
  font-weight: 400;
}

/* Large project title — appears on individual project pages */
.project-title {
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 800;
  font-family: var(--font-family-project-title);
  color: var(--color-text-project-title);
  margin-bottom: 1rem;
    line-height: 1;

}


/* THIS IS WHERE YOU CHANGE BODY FONT SIZE, ETC. */
.project-description {
  font-size: 1.225rem;
  line-height: 1.2;
  color: var(--color-text-project-description);
  margin-bottom: 0.5rem;
}

.project-description-bold {
  font-size: 1.225rem;
  line-height: 1.2;
  color: var(--color-text-project-description);
  margin-bottom: 1rem;
  font-weight: 400;
    padding-right: 20px; 
}
.project-description {
  line-height: 1.4;           /* keep text readable */
    margin: 0.5rem auto;
}


/* 🧱 Full-width headings — useful in layouts that span edge-to-edge */
.h1-full-width,
.h2-full-width {
  width: 100%;
  padding: var(--padding-small);
}

/* ✨ Highlighted text — great for emphasis */
.highlight-primary {
  color: var(--color-accent-secondary);
}


/* 📂 Project grid title — used in grid view (like a portfolio gallery) */
.work-grid-project-title {
  font-size: 2.875rem;
  color: var(--color-text-work-grid-title);
  text-transform: uppercase;
}

/* 🏷️ Project category label — displays the type or role of the project */
.work-grid-project-category {
  color: var(--color-text-project-category);
}

.project-image {
  display: flex;
  flex-direction: column; /* stack image & caption vertically */
  align-items: center;    /* center both horizontally */
  margin: 1rem;           /* spacing around each figure */
}

.project-image img {
  display: block;
  max-width: 100%;
  height: auto;
}

.project-caption {
  text-align: center;
  margin-top: 1rem;     /* space above caption */
  font-size: 1.25rem;
  color: var(--color-text-project-description);
  text-transform: uppercase;
  font-family: "poppins", sans-serif;
  font-weight: 600;
}

/*  
.project-caption:last-of-type::after {
  content: "";
  display: block;
  width: 100%;                 
  height: 3px;                
  background-color: #F26F6C;   
  margin-top: 0.5rem;          
}*/



.project-description-one-column {
  font-family: var(--font-family-body);
  font-size: 1.225rem;
  line-height: 1.6;
  color: var(--color-text-project-description);
  max-width: 800px;
  margin: 1rem auto;
  padding: 0 2rem;
  position: relative; /* for underline */
  text-align: left;
}
/* 
.project-description-one-column::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #F26F6C;
  margin-top: 0.5rem;
}*/

@media (max-width: 768px) {
  .project-description {
    font-size: 1rem;   /* Smaller size for mobile */
    line-height: 1.4;    /* Keeps text readable */
  }

  .project-description-bold {
    font-size: 1rem;     /* Slightly bigger since it’s bold */
    line-height: 1.4;
    font-weight: 400;
  }
}



@media (max-width: 900px) {
  .project-description{
    font-size: 1.1rem;   /* Smaller size for mobile */
    line-height: 1.4;    /* Keeps text readable */
  }




  .project-description-bold {
    font-size: 1.1rem;     /* Slightly bigger since it’s bold */
    line-height: 1.4;
    font-weight: 400;
  }
}
/*

██   ██ ██    ██ ██████  ███████ ██████  ██      ██ ███    ██ ██   ██ ███████ 
██   ██  ██  ██  ██   ██ ██      ██   ██ ██      ██ ████   ██ ██  ██  ██      
███████   ████   ██████  █████   ██████  ██      ██ ██ ██  ██ █████   ███████ 
██   ██    ██    ██      ██      ██   ██ ██      ██ ██  ██ ██ ██  ██       ██ 
██   ██    ██    ██      ███████ ██   ██ ███████ ██ ██   ████ ██   ██ ███████ 

*/

/* -------------------------------------------------------------------------- */
/* 🔗 Hyperlink Styles — LVHFA                                                */
/* LVHFA = Link, Visited, Hover, Focus, Active                                */
/* These are the five main states a hyperlink can be in                       */
/* -------------------------------------------------------------------------- */

/* Unvisited link */
a:link {
  color: var(--color-link);
  text-decoration: none; /* Removes underline */
}

/* Visited link — after a user clicks and returns */


/* Hover — when a user hovers their mouse over the link */
a:hover {
  color: var(--color-link-hover);
}

/* Focus — when a link is focused (keyboard navigation) */
a:focus {
  outline: 1px solid var(--color-accent-primary);
}

/* Active — when the link is actively being clicked or tapped */
a:active {
  color: var(--color-link-hover);
  /* Useful for mobile tap interactions *//* Space reserved for logo + nav */
}

/* -------------------------------------------------------------------------- */
/* 🧭 Hyperlink Class Styles                                                  */
/* These are custom styles for specific types of navigation links             */
/* -------------------------------------------------------------------------- */

a.nav-link-primary {
  color: var(--color-nav-link);
}
a.nav-link-primary:hover {
  color: var(--color-nav-link-hover);
}

/* -------------------------------------------------------------------------- */
/* 🧭 Previous & Next Project Navigation Arrows                               */
/* These styles are for the left and right arrows used to move between       */
/* individual project pages in your portfolio. Includes stroke effect styles.*/
/* -------------------------------------------------------------------------- */

/* Default and visited state for navigation arrows */

.navigation-arrow:link,
.navigation-arrow:visited {
  color: var(--color-nav-arrow);
}

/* Hover and active (clicked) states — makes arrows feel interactive */
.navigation-arrow:active,
.navigation-arrow:hover {
  color: var(--color-nav-arrow-hover);
}

/* 🖋️ Optional stroke effect for a bold, outlined arrow look */

.stroke:link,
.stroke:visited {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--color-nav-arrow-stroke);
}

.stroke:active,
.stroke:hover {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--color-nav-arrow-stroke-hover);
}

/* 

██   ██ ███████ ██████   ██████  
██   ██ ██      ██   ██ ██    ██ 
███████ █████   ██████  ██    ██ 
██   ██ ██      ██   ██ ██    ██ 
██   ██ ███████ ██   ██  ██████  
                                 
*/



/* -------------------------------------------------------------------------- */
/* 🦸 Hero Section Layout                                                     */
/* Full-page intro area with logo, headline, icon, and footer nav            */
/* Great place for first impression and personal branding                    */
/* -------------------------------------------------------------------------- */


.hero {
  width: 100%;
  min-height: 80vh; /* Takes up most of the screen height */
  flex-direction: column;
}
.hero-header {
  min-height: 20vh; /* Space reserved for logo + nav */
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}





/* Remove all default spacing */
html, body {
  margin: 0;
  padding: 0;
}

.hero {
  position: relative;
  width: 100%;
  height: 30vh;       /* hero height */
  overflow: hidden;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


#background-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}


  /* Apply same CSS to video and fallback */
  #myVideo, #videoFallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }

/* Default: show video, hide gif */
/* Video default */
#myVideo {
  display: block !important;
  width: 100%;
  height: 100vh; /* full viewport height */
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1; /* stays behind content */
}

/* Gif default (hidden) */
#videoFallback {
  display: none !important;
  width: 100%;
  height: 100vh; /* full viewport height */
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1; /* stays behind content */
}

/* On tablet/phone: swap */
@media (max-width: 1024px) {
  #myVideo {
    display: none !important;
  }

  #videoFallback {
    display: block !important;
  }
}




.content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0);
  color: #f1f1f1;
  width: 100%;
  padding: 20px;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 80vh;
  overflow: hidden;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0; /* behind everything else */
}

.hero .content {
  position: relative;
  z-index: 1; /* keeps hero text/logo above the video */
}

#myVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}




/* #background-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;        
  height: 100%;       
  border: none;
} */

/* .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: linear-gradient(to bottom, rgba(255,255,255,0),rgba(255,255,255,0), rgba(255,255,255,1));
  z-index: -1;   
} */

.nav-branding {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: var(--padding-small);
  align-items: center;
}


.nav-branding-group {
  display: flex;
  flex-direction: row;
}
.nav-branding-item {
  display: inline-block;
    color: var(#605039) !important;
  width: 300px;                 /* fixed width for all buttons */
  padding: 1rem 0;              /* vertical padding only, no horizontal since width is fixed */
  margin: 1.5rem;
  text-transform: uppercase;
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: 1.2rem;
  background-color: #F26F6C;
  border: 4px solid #605039;
  color: #605039;
  border-radius: 0;
  text-decoration: none;
  text-align: center;           /* center text inside fixed width */
  cursor: pointer;
  transition: background-color 0.5s ease, color 0.5s ease;
}
.nav-branding .nav-branding-item a {
  color: var(#605039) !important;
}

.nav-branding-item:hover {
  background-color: #B8A88E;
  color: #FFEFE1;
}

/* Mobile adjustments */
@media (max-width: 768px) {  /* adjust breakpoint as needed */
  .nav-branding-item {
    font-size: 0.8rem;      /* smaller text */
    padding: 0.5rem 0.75rem; /* smaller padding */
    margin: 0.75rem; 
     width: 175px;  
       border: 3px solid #605039;      /* tighter spacing between buttons */
  }
}




.nav-branding-logo {
  width: 18rem;
  /* TODO: Adjust the width of the logo on mobile devices here */
}

.hero-headline-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  padding: var(--padding-small);
  text-align: center; /* Keeps text centered */
}

.hero-icon {
  font-size: 4rem;
}

.hero-footer-navigation {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: var(--padding-small);
}

/*

 ██████  ██████  ███    ███ ██████   ██████  ███    ██ ███████ ███    ██ ████████ ███████ 
██      ██    ██ ████  ████ ██   ██ ██    ██ ████   ██ ██      ████   ██    ██    ██      
██      ██    ██ ██ ████ ██ ██████  ██    ██ ██ ██  ██ █████   ██ ██  ██    ██    ███████ 
██      ██    ██ ██  ██  ██ ██      ██    ██ ██  ██ ██ ██      ██  ██ ██    ██         ██ 
 ██████  ██████  ██      ██ ██       ██████  ██   ████ ███████ ██   ████    ██    ███████ 
                                                                                          
*/

/* -------------------------------------------------------------------------- */
/* 🔧 Full-Width Section Components                                             */
/* These components create flexible, full-screen sections for your portfolio   */
/* Perfect for highlighting key information and projects                      */
/* -------------------------------------------------------------------------- */

.project-description:last-of-type {
  position: relative;          
  display: inline-block;       
  padding-bottom: 0.5rem;      
}

/*  
.project-description:last-of-type::after {
  content: "";
  display: block;
  width: 100%;                 
  height: 3px;                
  background-color: #F26F6C;   
  margin-top: 1.5rem;          
}
/* LITTLE PINK LINES BENEATH ALL THE PROJECT DESCRIPTIONS */

.video-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px; /* adjust height of gradient */
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 1), /* solid white at bottom */
    rgba(255, 255, 255, 0) /* transparent at top */
  );
  pointer-events: none; /* clicks pass through */
  z-index: 1; /* above video, below content */
}



.qr-block {
  display: flex !important;        /* Force flex layout just for this block */
  flex-direction: column !important; /* Stack items vertically */
  align-items: center;              /* Center both QR and text */
  justify-content: flex-start;
}

.qr-block .project-description {
  margin-top: 1rem;
  text-align: center;
}


.project-video-container {
  position: relative;
  width: 100%;
  padding-top: 177.78%; /* 9:16 vertical aspect ratio for phone reels */
  overflow: hidden;
}

.project-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.project-tags {
  display: flex;
  justify-content: flex-start;    /* center the whole row */
  align-items: center;        /* keeps height consistent */
  gap: 2px;                  /* space between rectangles */
  margin-top: 20px;
  flex-wrap: wrap;            /* allows wrapping if too many */
}

.tag {
  display: inline-block;
  padding: 8px 8px; /* spacing inside the rectangle */
  border: 2px solid #F26F6C; /* 2px outline in your color */
  border-radius: 20px; /* controls how rounded the corners are */
  color: #F26F6C; /* text color matches the border */
  background-color: transparent; /* transparent middle */
  text-transform: uppercase; /* all caps text */
   font-size: 12px; /* controls font size */
  font-weight: 600; /* adjust text weight */
  text-align: center;
  margin-right: 12px;
  margin-top: 4px;
}


.project-video-container {
  display: flex;
  justify-content: center; /* keeps video centered */
  margin: 20px 0;
}

/* Common styles for all videos */
.responsive-iframe {
  border: none;
  border-radius: 12px;
}

/* Phone-sized vertical video */
.video-phone {
  width: 300px;    /* fixed phone width */
  height: 533px;   /* fixed phone height for 9:16 ratio */
  max-width: 100%; /* prevents overflow on tiny screens */
}




.project-description {
  padding-right: 20px; 
  box-sizing: border-box; /* keeps padding inside width */
}

.padding-20 {
  padding: 20px;
  box-sizing: border-box; /* Ensures padding doesn't break the layout */
}


.padding-40 {
  padding: 40px;
  box-sizing: border-box; /* Ensures padding doesn't break the layout */
}
.padding-60 {
  padding: 60px;
  box-sizing: border-box; /* Ensures padding doesn't break the layout */
}
.padding-80 {
  padding: 80px;
  box-sizing: border-box; /* Ensures padding doesn't break the layout */
}
.padding-100 {
  padding: 100-px;
  box-sizing: border-box; /* Ensures padding doesn't break the layout */
}


.full-width-section {
  width: 100%;
  min-height: 80vh; /* Takes up most of the screen height */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-full-width); /* Background color for full-width sections */
  margin-bottom: 1rem;
}

.full-width-headline-wrapper {
  width: 100%;
  min-height: 60vh; /* Ensures the headline takes up a good portion of the screen */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--padding-small);
  text-align: center; /* Keeps the text centered */
}

.section-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}


/* HEADER BASE */
.hero-header {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between; /* left and right containers */
  align-items: center;
  padding: 0rem 2rem;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(3px); /* toned-down blur */
  z-index: 1000;
}

/* LEFT SIDE: HOME BUTTON */
.nav-branding {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-branding-item {
  text-transform: uppercase;
  text-decoration: none;
  color: #605039;
  font-weight: 600;
}

/* RIGHT SIDE: ARROWS */
.nav-arrows {
  display: flex !important;
  gap: 2rem !important; /* spacing between left and right arrow */
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
  align-items: center !important;
  justify-content: center !important;
}

.nav-arrows li {
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

/* Each arrow block */
.nav-arrows .navigation-arrow,
.nav-arrows .arrow-link {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  color: #605039 !important;
  transition: color 0.3s ease !important;
}

/* Force icon + label centered */
.nav-arrows i {
  display: block !important;
  text-align: center !important;
  line-height: 1 !important;
  margin: 0 auto !important;
}

.arrow-label {
  display: block !important;
  margin-top: 0.25rem !important;
  font-size: 1rem !important; /* match project-description */
  text-align: center !important;
  text-transform: uppercase !important;
  font-weight: 400 !important;
  color: inherit !important;
}

/* Hover effect (arrow + label) */
.nav-arrows .navigation-arrow:hover,
.nav-arrows .arrow-link:hover {
  color: #F26F6C !important;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
  .hero-header {
    flex-direction: column; /* stack everything */
    align-items: center;
    gap: 1rem;
  }

  .nav-branding {
    flex-direction: column;
    align-items: center;
  }

  .nav-arrows {
    flex-direction: row;  /* arrows still side by side */
    justify-content: center;
    gap: 2rem;
  }
}
.nav-arrows a,
.nav-arrows a:focus,
.nav-arrows a:active,
.nav-arrows a:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

@media (max-width: 768px) {
  .nav-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .nav-arrows {
    justify-content: center;
  }
}

/* Make arrow focus outline white to hide it */
.arrow-link:focus,
.arrow-link:active {
  outline: 2px solid white;
  outline-offset: 0;
  box-shadow: none; /* remove any shadow */
}
/* Base style for arrow links */
.arrow-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #605039;
  text-decoration: none;
  transition: transform 0.75s ease, color 0.75s ease; /* smooth scaling and color */
}

/* Base arrow container */
.arrow-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

/* Arrow icon */
.arrow-link i {
  color: #605039;
  transition: transform 0.5s ease, color 0.5s ease; /* smooth scale + color */
}

/* Label under the arrow */
.arrow-label {
  margin-top: 1rem;
  text-align: center;
  font-weight: 400;
  text-transform: uppercase;
  color: #605039;
  transition: color 0.5s ease; /* smooth color change */
}

/* Hover: scale icon and change colors */
.arrow-link:hover i {
  transform: scale(1.75);
  color: #F26F6C;
}

.arrow-link:hover .arrow-label {
  color: #F26F6C;
}

/* Home page only */
.home-page .portfolio,
.home-page .project-wrapper,
.home-page .work-sidebar-wrapper {
  padding-top: var(--padding-large); /* custom for home */
}

/* All project pages */
.project-page .portfolio,
.project-page .project-wrapper,
.project-page .work-sidebar-wrapper {
  padding: var(--padding-medium);
  padding-top: var(--padding-medium); /* smaller top padding */
}









/* 

██     ██  ██████  ██████  ██   ██     ██████   █████   ██████  ███████ 
██     ██ ██    ██ ██   ██ ██  ██      ██   ██ ██   ██ ██       ██      
██  █  ██ ██    ██ ██████  █████       ██████  ███████ ██   ███ █████   
██ ███ ██ ██    ██ ██   ██ ██  ██      ██      ██   ██ ██    ██ ██      
 ███ ███   ██████  ██   ██ ██   ██     ██      ██   ██  ██████  ███████ 

*/

/* -------------------------------------------------------------------------- */
/* 🔲 Work Page Layout Components                                               */
/* These styles create the layout for your work portfolio and project pages    */
/* The goal is to showcase your projects and provide a responsive, clean UI  */
/* -------------------------------------------------------------------------- */

/* Work wrapper (takes up available space) */
.main-work-section {
  flex: 1;
}

/* Padding around work grid and project page */
.portfolio,
.project-wrapper,
.work-sidebar-wrapper {
  padding: var(--padding-medium); /* Padding to keep content from touching edges */
}

/* Work Sidebar on Mobile */
.work-sidebar {
  width: 100%;
  background: var(--color-bg-sidebar-work); /* Background color for the sidebar */
}

/* Main Work Area with Sidebar on Mobile */
.work-details {
  width: 100%;
}

/* Defining the work page grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Creates a responsive grid */
  grid-gap: 1rem; /* Space between grid items */
  /* The auto-fit and minmax() function help ensure responsiveness across screen sizes */
}

/* Individual Work Grid Item */
.work-page-grid-item {
  width: 100%;
  height: auto;
  position: relative; /* Needed to position the overlay */
}

/* Project container for background and padding */
.project-container {
  background: var(--color-accent-primary); /* Set project background color */
  padding: var(--padding-medium);
}

/* Overlay (appears on hover) */
.overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0; /* Initially invisible */
  transition: var(--duration-slow) ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: var(--padding-small);
  background-color: var(--color-overlay-primary); /* Background color of the overlay */
  transition: opacity var(--duration-normal), visibility var(--duration-normal);
}

/* Hover effect on work page grid items */
.work-page-grid-item:hover .overlay {
  visibility: visible; /* Make overlay visible on hover */
  opacity: 1; 
  /* Set opacity on hover */
}
.work-grid-project-title {
  opacity: 100%;
}


/*

███████ ██ ██████  ███████ ██████   █████  ██████  
██      ██ ██   ██ ██      ██   ██ ██   ██ ██   ██ 
███████ ██ ██   ██ █████   ██████  ███████ ██████  
     ██ ██ ██   ██ ██      ██   ██ ██   ██ ██   ██ 
███████ ██ ██████  ███████ ██████  ██   ██ ██   ██ 
                                                   
                                                   
*/

/* -------------------------------------------------------------------------- */
/* 🗂️ Sidebar Navigation Styles                                                 */
/* This section contains styles for the sidebar navigation on the portfolio    */
/* website. The aim is to create a simple and clean sidebar for better access. */
/* -------------------------------------------------------------------------- */

/* Sidebar navigation list styles */
.sidebar-nav-list {
  padding: var(--padding-small); /* Adds padding around the navigation list */
}

/* Individual navigation item styles */
.sidebar-nav-item {
  margin-bottom: 1rem; /* Space between each navigation item */
}

/* 

 █████  ██████   ██████  ██    ██ ████████ 
██   ██ ██   ██ ██    ██ ██    ██    ██    
███████ ██████  ██    ██ ██    ██    ██    
██   ██ ██   ██ ██    ██ ██    ██    ██    
██   ██ ██████   ██████   ██████     ██    
                                           
*/

/* -------------------------------------------------------------------------- */
/* 📚 About Page Grid Styles                                                   */
/* These styles structure the layout of the "About" page using a grid system.  */
/* The grid has 3 main sections: an image, text, and footer.                   */
/* -------------------------------------------------------------------------- */

/* Grid container for the About section */
.about-grid {
  display: grid; /* Set to grid layout */
  grid-template-columns: 1fr; /* Single column layout for mobile and smaller screens */
  grid-gap: 3rem; /* Space between grid items */
  background: var(--color-bg-about); /* Background color for the section */
  padding: var(--padding-small); /* Padding around the grid */
  flex: 1; /* Flex-grow to take up available space */
}

/* Image section in the About page grid */
.about-grid-image {
  grid-column: 1 / 2; /* Image spans the first column */
  grid-row: 1 / 2; /* Image spans the first row */
}

/* Text section in the About page grid */
.about-grid-text {
  grid-column: 1 / 2; /* Text spans the first column */
  grid-row: 2 / 3; /* Text spans the second row */
}

/* 

███████  ██████   ██████  ████████ ███████ ██████  
██      ██    ██ ██    ██    ██    ██      ██   ██ 
█████   ██    ██ ██    ██    ██    █████   ██████  
██      ██    ██ ██    ██    ██    ██      ██   ██ 
██       ██████   ██████     ██    ███████ ██   ██ 
                                                   
*/

/* -------------------------------------------------------------------------- */
/* 📱 MOBILE FOOTER LAYOUT                                                    */
/* Designed with mobile-first approach using CSS Grid                          */
/* -------------------------------------------------------------------------- */

.footer-global {
  display: grid;
  grid-template-columns: 1fr; /* Single column layout */
  grid-gap: 3rem; /* Consistent spacing between sections */
  min-height: auto; /* Allows footer to expand based on content, no fixed height */
  background: var(--color-bg-footer); /* Using CSS variable for theming */
  padding: var(--padding-small); /* Internal spacing */

  /* Note: Using 'fr' units ensures proper scaling across devices */
}

/* -------------------------------------------------------------------------- */
/* 🧩 FOOTER SECTION PLACEMENT                                                */
/* Each component stacks vertically in mobile view                             */
/* -------------------------------------------------------------------------- */

.footer-tagline {
  grid-column: 1 / 2; /* Full width (single column) */
  grid-row: 1 / 2;
}
.footer-highlights {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}
.footer-contact-social {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
}
/* -------------------------------------------------------------------------- */
/* 🌊 FULL-WIDTH BOTTOM SECTION                                               */
/* Typically used for copyright/legal information                             */
/* -------------------------------------------------------------------------- */
.footer-full-width {
  grid-column: 1 / 2;
  grid-row: 4 / 5;
  text-align: center; /* Center copyright text */
  align-self: end; /* Push to bottom */
}

/* ------------------------------- */
/* 📜 Reusable footer list styles */
/* ------------------------------- */
.footer-list {
  margin-bottom: 2rem;
}
.footer-awards-list {
  margin-bottom: 2rem;
}
.footer-works-list {
  margin-bottom: 2rem;
}
.footer-socials-list {
  margin-bottom: 2rem;
}

/* -------------------------------------------------------------------------- */
/* 📏 Footer Item Spacing                                                     */
/* -------------------------------------------------------------------------- */

/* Apply this class to ALL list items (awards, works, social, bullets) */
.footer-item {
  line-height: 1.2; /* Consistent line height for footer items to improve spacing */
  margin-bottom: 0.25rem;
  font-size: 1.2rem;
    font-family: "poppins", sans-serif;
  color: #ffffff;
}

/* ------------------------------- */
/* ▪️ Bullet List Style */
/* Square bullets with compact spacing */
/* ------------------------------- */

.footer-bullet-list {
  list-style-type: square;
  list-style-position: inside;
  margin-bottom: 1rem;
}

.footer-bullet-list .footer-item {
  margin-bottom: 0.25rem;
  padding-left: 0.5rem;
  text-indent: -0.5rem; /* Pulls text back toward bullet */
}

/* -------------------------------------------------------------------------- */
/* ✨ Footer Special Elements                                                 */
/* -------------------------------------------------------------------------- */

/* Heart icon for copyright/love notes */
.heart {
  color: var(--color-icon-heart); /* Color for heart icon */
}

.footer-fineprint {
  font-size: 0.875rem; /* Slightly smaller for disclaimers or captions */
  color: var(--color-text-secondary); /* Themed color */
}

/* New item badges */
.badge-new {
  background: var(--color-highlight);
  padding: 0.1rem;
  font-size: 0.8125rem;
  text-transform: uppercase;
}

/* -------------------------------------------------------------------------- */
/* 🌐 MINIMAL FOOTER (ALTERNATIVE VERSION)                                    */
/* A simpler alternative to the CSS Grid footer - ideal for beginners          */
/* -------------------------------------------------------------------------- */

.footer-global-wrapper {
  padding: var(--padding-small);
}

/* 

██████  ██████   ██████       ██ ███████  ██████ ████████     ██████   █████   ██████  ███████ 
██   ██ ██   ██ ██    ██      ██ ██      ██         ██        ██   ██ ██   ██ ██       ██      
██████  ██████  ██    ██      ██ █████   ██         ██        ██████  ███████ ██   ███ █████   
██      ██   ██ ██    ██ ██   ██ ██      ██         ██        ██      ██   ██ ██    ██ ██      
██      ██   ██  ██████   █████  ███████  ██████    ██        ██      ██   ██  ██████  ███████ 
                                                                                               
*/

/* ---------------------------------------------------------------------------------- */
/* Project Page Layout - This section contains the layout for project pages,         */
/* including the project image, description, sidebar, and navigation arrows.         */
/* ---------------------------------------------------------------------------------- */

/* Wrapper for the main project section and sidebar */
.project-wrapper,
.work-sidebar-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Full-width wrapper for the project section */
.project-wrapper-full-width {
  width: 100%;
  padding: var(--padding-small);
}

/* Container for the project content with full-width display */
.project-full-width {
  width: 100%;
  margin-bottom: 2rem;
}

/* Sidebar Styles */
.project-aside {
  width: 100%;
  padding: var(--padding-small);
  display: flex;
  flex-direction: column;
  color: var(--color-text-project-sidebar);
  background: var(--color-bg-sidebar-project);
}

/* Container for project images with center alignment */
.project-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 1rem; /* Space below the image */
}

/* Container for project description */
.project-description-container {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  background: var(--color-bg-project-description);
  padding: var(--padding-small);
  width: 100%;
  margin-bottom: 1rem; /* Space below the description */
}

/* Column styles for two-column layouts */
.col-2 {
  width: 100%;
}

/* Project image styling */
.project-image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
/* Project details section */
.project-details {
  width: 100%;
  background: var(--color-gradient-project-details); /* TODO: Remove gradient background if you prefer a simpler design */
}

/* Previous/Next Arrow Styles */

.project-navigation {
  display: flex;
  flex-direction: row;
  flex: 1;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}

/* Styling for left and right arrows */
.arrow-left,
.arrow-right {
  width: 50%;
}
.arrow-right {
  text-align: right;
}

.arrow {
  padding: 0;
}

body.project-1-milianos header.hero-header .nav-branding {
  display: flex; /* remove !important */
  justify-content: space-between; /* instead of flex-start */
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}
.project-2-progrock .nav-branding {
  display: flex !important;          /* force flexbox */
  justify-content: flex-start !important; /* push content right */
  width: 100%;                       /* make ul span full width */
  padding: 0;
  margin: 0;
  list-style: none;
}
.project-3-zokusha .nav-branding {
  display: flex !important;          /* force flexbox */
  justify-content: flex-start !important; /* push content right */
  width: 100%;                       /* make ul span full width */
  padding: 0;
  margin: 0;
  list-style: none;
}
.project-4-franks .nav-branding {
  display: flex !important;          /* force flexbox */
  justify-content: flex-start !important; /* push content right */
  width: 100%;                       /* make ul span full width */
  padding: 0;
  margin: 0;
  list-style: none;
}
.project-5-brewery .nav-branding {
  display: flex !important;          /* force flexbox */
  justify-content: flex-start !important; /* push content right */
  width: 100%;                       /* make ul span full width */
  padding: 0;
  margin: 0;
  list-style: none;
}
.project-6-strathcona .nav-branding {
  display: flex !important;          /* force flexbox */
  justify-content: flex-start !important; /* push content right */
  width: 100%;                       /* make ul span full width */
  padding: 0;
  margin: 0;
  list-style: none;
}
.project-7-spudbuds .nav-branding {
  display: flex !important;          /* force flexbox */
  justify-content: flex-start !important; /* push content right */
  width: 100%;                       /* make ul span full width */
  padding: 0;
  margin: 0;
  list-style: none;
}

header.hero-header .nav-wrapper {
  display: flex;
  justify-content: space-between; /* Home left, arrows right */
  align-items: center;            /* vertical alignment */
  width: 100%;
}

.nav-arrows {
  display: flex;
  gap: 1rem; /* space between arrows */
}

.arrow-label {
  display: block;
  text-align: center;
  font-size: var(--font-size-project-description);
  color: #605039;
  padding: 5px;
}

.hero-arrow-container {
  display: flex;
  justify-content: center;   /* center horizontally */
  margin-top: 0.5rem;           /* push it towards the bottom */
  margin-bottom: 0rem;        /* space from bottom of hero */
}

.hero-arrow-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #605039;
  text-decoration: none;
  transition: transform 0.5s, color 0.5s; /* smooth hover */
}

.hero-arrow-link:hover {
  color: #F26F6C;
  transform: scale(1.75);     /* arrow grows on hover */
}

.hero-arrow-link .arrow-label {
  margin-top: 0.25rem;
  text-align: center;
  font-weight: 400;
  text-transform: uppercase;
}
.hero-arrow-link:focus {
  outline: none;
}



/*

██████  ██       ██████   ██████      ██ ██████  ███████ ███████ ██    ██ ███    ███ ███████ 
██   ██ ██      ██    ██ ██          ██  ██   ██ ██      ██      ██    ██ ████  ████ ██      
██████  ██      ██    ██ ██   ███   ██   ██████  █████   ███████ ██    ██ ██ ████ ██ █████   
██   ██ ██      ██    ██ ██    ██  ██    ██   ██ ██           ██ ██    ██ ██  ██  ██ ██      
██████  ███████  ██████   ██████  ██     ██   ██ ███████ ███████  ██████  ██      ██ ███████ 
                                                                                             
*/

/* Blog and Resume page styles */

.text-section {
  width: 100%;
  background: var(--color-bg);
  padding: var(--padding-small);
}
.list-item {
  line-height: 1.3;
  list-style-type: disc;
  margin-left: 1.2rem;
}

/* 

██   ██  ██████  ██      ██████  ██ ███    ██  ██████  
██   ██ ██    ██ ██      ██   ██ ██ ████   ██ ██       
███████ ██    ██ ██      ██   ██ ██ ██ ██  ██ ██   ███ 
██   ██ ██    ██ ██      ██   ██ ██ ██  ██ ██ ██    ██ 
██   ██  ██████  ███████ ██████  ██ ██   ████  ██████  
                                                       
*/

/* Holding page styles */

.holding-page-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  place-items: center;
  text-align: center;
  width: 100%;
  min-height: 100vh;
  /* TODO: Delete the following if you do not want a grainy gradient background on index.html. Be careful not to delete the closing } */
  background: linear-gradient(0deg, rgba(0, 0, 0, 1), var(--color-bg-holding-page)), var(--image-noise-texture);
  /* For more on grainy gradients see https://grainy-gradients.vercel.app/ */
}

.holding-page-animation {
  margin-bottom: 1rem;
}

.holding-page-title {
  font-size: 1.5rem;
  color: var(--color-text-holding-title);
}

.holding-page-footer {
  display: grid;
  place-items: center;
  min-height: 10vh;
  width: 100%;
}

.holding-page-copyright {
  font-size: 0.8rem; /* Smaller font size for copyright text */
  color: var(--color-text-holding-footer); /* Custom color for the footer text */
  margin-bottom: 0; /* Removes default margin from the bottom of the copyright text */
}

/*
███████ ██████  ██████   ██████  ██████  
██      ██   ██ ██   ██ ██    ██ ██   ██ 
█████   ██████  ██████  ██    ██ ██████  
██      ██   ██ ██   ██ ██    ██ ██   ██ 
███████ ██   ██ ██   ██  ██████  ██   ██ 
*/

/* TODO: Customize your 404 Error Page */

/* A great 404 page is a chance to leave a memorable impression when visitors land on a page that doesn't exist. Consider customizing this page to be more engaging, humorous, or on-brand with your site. Check out error.css for the gradient and glitch effect. */

.error-headline-wrapper {
  width: 85%;
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: var(--padding-small);
  text-align: center;
  margin: 0 auto;
}

.error-page-animation {
  width: 25rem;
}

/*

██████  ██       █████  ██    ██ 
██   ██ ██      ██   ██  ██  ██  
██████  ██      ███████   ████   
██      ██      ██   ██    ██    
██      ███████ ██   ██    ██    
*/

/* Play Page Styles
––––––––––––––––––––––––––––––––––––––––––––––––––
Custom styles specific to the "Play" page layout and content.

✅ Masonry layout is defined separately in masonry.css  
✅ Lightbox functionality is handled via Lightbox2 (in /lightbox2 folder)  
✅ Rotate and other utility classes are already included in the base styles (this file)

Use this section to style elements that are *unique to the Play page*.
For common layout or effects, continue using the base utility classes
to keep your styles reusable and consistent.
*/


/*

███████ ██   ██ ███████ ████████  ██████ ██   ██ ██████   ██████   ██████  ██   ██ 
██      ██  ██  ██         ██    ██      ██   ██ ██   ██ ██    ██ ██    ██ ██  ██  
███████ █████   █████      ██    ██      ███████ ██████  ██    ██ ██    ██ █████   
     ██ ██  ██  ██         ██    ██      ██   ██ ██   ██ ██    ██ ██    ██ ██  ██  
███████ ██   ██ ███████    ██     ██████ ██   ██ ██████   ██████   ██████  ██   ██ 

*/

/* Sketchbook Page Styles */

.sketchbook-page {
  display: grid;
  place-items: center;
}

/*

███    ███ ███████ ██████  ██  █████       ██████  ██    ██ ███████ ██████  ██ ███████ ███████ 
████  ████ ██      ██   ██ ██ ██   ██     ██    ██ ██    ██ ██      ██   ██ ██ ██      ██      
██ ████ ██ █████   ██   ██ ██ ███████     ██    ██ ██    ██ █████   ██████  ██ █████   ███████ 
██  ██  ██ ██      ██   ██ ██ ██   ██     ██ ▄▄ ██ ██    ██ ██      ██   ██ ██ ██           ██ 
██      ██ ███████ ██████  ██ ██   ██      ██████   ██████  ███████ ██   ██ ██ ███████ ███████ 

*/

/* Media Queries for Layout Adjustments */

/* Medium devices (tablets, 768px and up) */

@media (min-width: 360px) {
  .hero-headline {
    font-size: 1.25rem;}
    
  /* TODO: Adjust  layout for tablets */
}
.divider {
  display: flex;
  flex-direction: column;   /* Stack text on top, line below */
  align-items: flex-start;  /* Left-align everything */
  gap: 0.75px;                 /* Space between text and line */
  width: 100%;
  position: relative;
}

.divider::before {
  content: attr(data-title);
  font-size: 1.25rem;                         /* Desktop size */
  font-weight: 400;                         /* Weight 400 */
  line-height: 1.2;
  text-transform: uppercase;               /* Uppercase text */
  color: var(--color-text-project-description); /* Use project description color */
}

.divider::after {
  content: "";
  display: block;
  width: 100%;                               /* Full width line */
  border-top: 0.25rem solid var(--color-text-project-description); /* Thickness & color */
}

/* Mobile adjustment for screens 360px wide or smaller */
@media (max-width: 360px) {
  .divider::before {
    font-size: 1.5rem;      /* Slightly smaller text on mobile */
  }
  .divider::after {
    border-top: 0.65rem solid var(--color-text-project-description); /* Thinner line on mobile */
  }
}

  /* Any other mobile-specific tweaks */

@media (min-width: 600px) {
  .hero-headline {
    font-size: 1.5rem;}
  /* TODO: Adjust  layout for tablets */
}
@media (max-width: 360px) {
  .hero {
    min-height: 85vh; 
  }
}


@media (min-width: 768px) {
  /* TODO: Adjust  layout for tablets */
}

/* Large devices (desktops, 992px and up) */

/* Switch from mobile to desktop navigation */

@media (min-width: 992px) {

  .hero-headline {
  font-size: 2rem;}

  /* TODO: Add or adjust styles here for large devices. */



  .flex-row {
    flex-direction: row; /* Changes to row layout on larger screens */
  }

  .width-third {
    width: 33.333%;
  }
  .width-two-thirds {
    width: 66.666%;
  }
  .holding-page-title {
    font-size: 2rem;
  }

  h1 {
    font-size: 4.275rem;
  }

  h2 {
    font-size: 2.25rem;
    font-weight: 500;
  }

  h3 {
    font-size: 1.625rem;
  }

  .h1-full-width,
  .h2-full-width {
    width: 70%;
    padding: var(--padding-small);
  }
  .padding-jumbo {
    padding: var(--padding-jumbo);
  }
  .nav-branding-logo {
    width: 60%;
    text-align: center;
    /* TODO: Adjust the width of the logo on large devices here. */
  }

.hero-header {
  min-height: 1vh; /* Space reserved for logo + nav */

}

  .hero {
    min-height: 85vh;  
    /* HEIGHT OF HERO */
  }

  .hero-headline-wrapper {
    padding-top: var(--padding-jumbo);
    padding-bottom: var(--padding-jumbo);
    padding-left: var(--padding-ultra);
    padding-right: var(--padding-ultra);
  }
  .error-headline-wrapper {
    padding-top: var(--padding-small);
    padding-bottom: var(--padding-small);
    padding-left: var(--padding-ultra);
    padding-right: var(--padding-ultra);
  }

  .error-404 {
    font-size: 5rem;
  }

  /* Work Page Grid for Large Devices */

  .grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    grid-gap: 2rem;
  }

  /* Grayscale filter with full-colour on hover and tap */

  .work-page-grid-item a.grayscale img {
    filter: grayscale(100);
  }

  .work-page-grid-item > a.grayscale:active img,
  .work-page-grid-item > a.grayscale:hover img {
    filter: grayscale(0);
  }

  /* Padding around work grid and project page */

  .portfolio,
  .project-wrapper,
  .work-sidebar-wrapper {
    padding: var(--padding-ultra);
       padding-top: var(--padding-medium); /* override just the top */
  }

  /* Project Page Flex Direction on Large Devices */

  .project-wrapper,
  .work-sidebar-wrapper {
    flex-direction: row;
  }

  /* Project Full Width Styles */

  .project-wrapper-full-width {
    padding: var(--padding-small) var(--padding-jumbo);
  }



  /* Sidebar on Large Devices */

  .project-aside {
    width: 35%;
    height: 80vh;
    position: -webkit-sticky;
    position: sticky;
    top: 8rem;
    padding-right: 0.5rem;
  }

  /* Main Project Image Area on Large Devices */

  .project-details {
    width: 65%;
  }

  .project-image-container,
  .project-description-container {
    flex-direction: row;
  }

.divider {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  margin: 3rem 0 0.5rem; /* space above & below the line */
}

/* Text sits above the line, left-aligned */
.divider::before {
  content: attr(data-title);
  position: absolute;
  bottom: 100%;            /* places text above the line */
  left: -0.14rem;
  margin-bottom: 0.43rem;     /* increase this to move text higher above line */
  background: rgba(255, 255, 255, 0);
  padding: 0 rem;
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: 1px;
  color: var(--color-text-project-description);
  text-transform: uppercase;
}





.border-right{
  border-right: 0.1rem solid var(--color-text-project-description);
  width: 100%;            /* Ensure full width */
  box-sizing: border-box;
  display: block;         /* So width applies properly */

}

  .section-container {
    width: 100%; /* Adjust this width for larger screens if needed */
    flex-direction: row;
  

    /* background: url(../assets/brown-line.png);
    background-repeat: no-repeat;
    background-position-x: -140%;
    background-position-y: top; */
  }
  .col-2 {
    width: 50%;
  }

  .project-navigation {
    justify-content: flex-start;
  }

  .arrow {
    padding-right: 1rem;
  }

  /* About Page Grid for Large Devices */

  .about-grid {
    padding: var(--padding-jumbo);
    grid-template-columns: 2fr 3fr;
  }

  .about-grid-image {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
  .about-grid-text {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
  }

  /* ------------------------------- */
  /* 🖥️ FOOTER GRID - DESKTOP LAYOUT */
  /* ------------------------------- */

  .footer-global {
    padding-top: var(--padding-jumbo);
    padding-right: var(--padding-jumbo);
    padding-bottom: 0;
    padding-left: var(--padding-jumbo);
    grid-template-columns: 1fr 1fr 1fr; /* Three equal columns */
  }

  /* Column 1: Tagline/Message */
  .footer-tagline {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  /* Column 2: Awards & Works */
  .footer-highlights {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
  }

  /* Column 3: Contact & Social */
  .footer-contact-social {
    grid-row: 1 / 2;
    grid-column: 3 / 4;
  }

  /* ------------------------------- */
  /* 📏 FULL-WIDTH BOTTOM SECTION */
  /* ------------------------------- */
  .footer-full-width {
    grid-row: 2 / 3;
    grid-column: 1 / 4; /* Spans all three columns */
    text-align: center;
    align-self: end; /* Aligns content to bottom */
  }

  /* Work Sidebar on Large Devices */

  .work-sidebar {
    width: 25%;
    height: 80vh;
    position: -webkit-sticky;
    position: sticky;
    top: 1rem;
  }

  /* Main Work Area on Large Devices */

  .work-details {
    width: 75%;
  }
}

/* X-Large devices (large desktops, 1200px and up)*/

@media (min-width: 1200px) {
  /* TODO: Add styles here for EXTRA LARGE DEVICES!!!. */

      .project-title {
  font-size: 3.225rem;

}
  .grid {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  }
}

/* XX-Large devices (LARGER DESKTOPS!!!, 1400px and up) */

@media (min-width: 1400px) {
  /* TODO: Add styles here for XX-large devices. */

    .project-title {
  font-size: 3.625rem;
}
  .grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 85vh !important;
  }
}
body, ul {
  margin: 0;
  padding: 0;
}

/* container that holds the pair and the shared caption */
.project-image-pair {
  display: flex;
  flex-wrap: wrap;            /* allows stacking on small screens */
  gap: 20px;                  /* space between the two figures */
  align-items: flex-start;
  justify-content: center;    /* center the two images inside the container */
  box-sizing: border-box;
  width: 100%;
  margin: 1rem;
}

/* make each figure share the available width and stay inside the container */
.project-image-pair .project-image {
  flex: 1 1 calc(50% - 10px); /* two columns with gap accounted for */
  max-width: calc(50% - 10px);
  box-sizing: border-box;
  margin: 0;                  /* remove default figure margins that can push layout */
}

/* ensure the images never overflow and keep correct aspect ratio */
.project-image-pair .project-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;        /* keeps the whole image visible */
  box-sizing: border-box;
}

/* caption spans full width under both images and is centered */
.project-image-pair .project-caption-shared {
  width: 100%;
  text-align: center;
  margin: 1rem 0 0;
  color: #605039;
  font-style: italic;         /* optional */
}

/* responsive: stack images on small screens */
@media (max-width: 700px) {
  .project-image-pair {
    flex-direction: column;
    gap: 12px;
  }
  .project-image-pair .project-image {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.project-image-pair .project-caption {
  display: inline-block;       /* caption shrinks to text width */
  text-align: center;
  margin-top: 1rem;
  position: relative;          /* for pseudo-element positioning */
}

.project-navigation {
  display: flex;
  justify-content: space-between; /* arrows at left and right ends of container */
  align-items: center;
  max-width: 400px;   /* optional: controls overall width */
  margin: 2rem auto;  /* centers the nav row */
  padding: 0;
  list-style: none;
}

.project-navigation .arrow a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .project-navigation {
    max-width: 300px;  /* smaller row on mobile */
    margin: 1.5rem auto;
  }
}
/* Give the whole project area breathing room above the footer */
/* Applies to all project pages */
.project-wrapper {
  box-sizing: border-box;
  padding-bottom: 10rem; /* Consistent bottom space for all pages */
}

@media (max-width: 768px) {
  .project-wrapper {
    padding-bottom: 4rem; /* Smaller gap for mobile */
  }
}

@media (max-width: 768px) {
  .hero-header {
    min-height: 5vh;
  }
}

.hero-headline a {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: 1.1rem;   /* adjust this size smaller than your desktop */
    line-height: 1.4;  /* optional: tweak line height so text stays readable */
  }
}

.hero-headline {
  margin: 0.25rem 0; /* overrides default h3/p margins */
}

.flier {
  display: none !important;
}

/* Index page header */
.index-header {
  position: static;                /* no sticky */
  background-color: transparent;   /* remove white bar */
  backdrop-filter: none;           /* remove blur */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--padding-tiny) var(--padding-ultra); /* keep spacing consistent */
  width: 100%;
  z-index: 1000;
}

/* Keep logo size same as main header */
.index-header .nav-branding-logo img {
  height: auto;
  max-height: var(--logo-height); /* same variable used in main header */
  margin: var(--logo-margin);     /* keeps spacing consistent */
}

/* Keep nav buttons same style */
.index-header .nav-branding {
  display: flex;
  gap: var(--nav-gap);             /* same gap as main header */
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Index header buttons */
.index-header .nav-branding-item {
  color: #605039;       /* same as project pages */
  font-weight: 700;     /* same as project pages */
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.5s;
}

.index-header .nav-branding-item:hover {
  background-color: #B8A88E;
  color: #FFEFE1;
}

/* Default mobile: stack (full width each) */
.section-container {
  display: flex;
  flex-wrap: wrap;
}

.section-item {
  flex: 1 1 100%;
}

/* Desktop breakpoint: 2/3 image + 1/3 text */
@media (min-width: 992px) {
  .section-item.image-col {
    flex: 2; /* 2 parts */
  }
  .section-item.text-col {
    flex: 1; /* 1 part */
  }
}

.section-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-direction: column; /* default for mobile */
}

.col-2 {
  width: 100%;
}

/* Two-column layout on larger screens */
@media (min-width: 768px) {
  .section-container {
    flex-direction: row;
  }

  .col-2 {
    width: 50%;
  }
}

.project-image img,
.project-video-container iframe {
  border: 2px solid #F26F6C;
  display: block; /* ensures the border fits cleanly around the media */
}

/* optional: if you ever want to disable it */
.no-border img,
.no-border iframe {
  border: none !important;
}
/* Screens below 900px */
@media (max-width: 900px) {
  .project-description-one-column,
  .project-description-one-column p,
  .project-description,
  .project-description p,
  .project-description-bold {
    font-size: 1rem;
    line-height: 1.2;
    padding: 0;
    padding-left: 16px;
    padding-right: 20px;
    margin: 0;
  }
}

/* Screens below 1400px */
@media (max-width: 1400px) {
  .project-description-one-column,
  .project-description-one-column p,
  .project-description,
  .project-description p,
  .project-description-bold {
    font-size: 1rem;
    line-height: 1.2;
    padding: 0;
    padding-left: 16px;
    padding-right: 20px;
    margin: 0;
  }
}

@media (max-width: 900px),
       (max-width: 1400px) {
  .project-description-one-column,
  .project-description-one-column p,
  .project-description,
  .project-description p,
  .project-description-bold {
    font-size: 1rem;
    line-height: 1.2;
    padding: 0;
    padding-left: 16px;
    padding-right: 20px;

    /* override inline margin-left */
    margin-left: 0 !important;

    /* restore vertical gaps between paragraphs */
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
}

/* Screens below 1400px - project title */
@media (max-width: 1400px) {
  .project-title {
    padding-left: 16px;
    padding-right: 20px; /* optional if you want symmetry */
    font-size: 2.35rem;
  }
}

/* Very small screens below 500px */
@media (max-width: 500px) {
  .home-page .portfolio .grid {
    display: flex;
    flex-direction: column;       /* stack thumbnails vertically */
    align-items: center;          /* center them horizontally */
    padding-left: 1rem;            /* small left margin */
    padding-right: 1rem;           /* small right margin */
    gap: 12px;                    /* space between thumbnails */
     padding-bottom: 2rem;     
  }

  .home-page .portfolio .work-page-grid-item {
    width: 100%;                  /* fill almost full width */
    max-width: 400px;             /* optional: limit so they don’t get huge on slightly bigger phones */
    margin: 0;                    /* remove extra margins */
  }

  .home-page .portfolio .work-page-grid-item img {
    width: 100%;                  /* image fills container */
    height: auto;                 /* maintain aspect ratio */
    display: block;               /* avoid inline spacing issues */
  }
}
/* Keep top padding but remove left/right padding below 500px */
@media (max-width: 500px) {
  .home-page .portfolio,
  .home-page .project-wrapper,
  .home-page .work-sidebar-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
    /* Keep top padding */
    padding-top: var(--padding-large) !important;
    padding-bottom: 0 !important; /* optional if you want no bottom padding */
  }

  /* Make thumbnails full width, one column, centered */
  .home-page .work-page-grid-item {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .home-page .work-page-grid-item img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
}

/* Only target very small screens */
@media screen and (max-width: 500px) {
  /* Let hero section grow naturally */
  .home-page .hero {
    display: block;       /* remove flex shrink behavior */
    min-height: auto;     /* don’t force 100vh */
    padding-bottom: 1rem; /* small bottom padding for spacing */
    box-sizing: border-box;
  }

  /* Header stays visible */
  .home-page .hero-header.index-header {
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
  }

  /* Headline stays visible */
  .home-page .hero-headline-wrapper {
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
  }

  /* Arrow stays centered and below text */
  .home-page .hero-arrow-container {
    margin: 0 auto 1rem auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }

  /* Projects grid below hero */
  .home-page .work-page-grid-item {
    width: calc(100% - 1rem);  /* full width minus small margin */
    margin: 0.5rem auto;
  }

  .home-page .work-page-grid-item img {
    width: 100%;
    height: auto;
    display: block;
  }
}

/* Disable highlight + press animation on touch devices only */
@media (hover: none) and (pointer: coarse) {
  .hero-arrow-link,
  .hero-arrow-link:active,
  .hero-arrow-link:focus {
    transform: none !important;
    color: #605039 !important;
    outline: none !important;
    box-shadow: none !important;
    background: none !important;
  }

  .hero-arrow-link {
    -webkit-tap-highlight-color: transparent !important;
  }
}

/* Desktop: default */
.project-video-container {
  position: relative;
  width: 100%;
  height: auto; /* auto height based on iframe */
  overflow: hidden;
}

.responsive-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  aspect-ratio: 16 / 9; /* maintain desktop aspect ratio */
}

/* Mobile / single column */
@media (max-width: 1000px) {
  .section-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* space between stacked items */
  }

  .section-item {
    width: 100% !important;
    flex: none !important;
  }

  .project-video-container {
    min-height: auto; /* let the aspect-ratio control height */
  }

  .responsive-iframe {
    width: 100%;
    height: auto; /* keep the aspect ratio */
  }
}

@media (max-width: 1000px) {
  .project-image {
    margin: 0 !important;
  }
}

/* Default desktop/tablet layout — keep spacing */
.project-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1rem;
}

/* Mobile / single-column layout — remove extra margin */
@media (max-width: 1000px) {
  .project-image {
    margin: 0 !important;
  }

  /* Optional: ensure the container doesn't add unintended padding */
  .project-image-container {
    padding: 0 !important;
  }

  /* Optional: remove side margins from any text column next to it */
  .section-item.text-col {
    margin-left: 0 !important;
  }
}

/* Default desktop/tablet — keep current spacing */
.project-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1rem;
}

/* Mobile / single-column layout adjustments */
@media (max-width: 1000px) {
  .project-image {
    margin: 0 0 1.5rem 0 !important; /* adds vertical spacing only between stacked images */
  }

  .project-image:last-child {
    margin-bottom: 0 !important; /* removes extra space after the last image */
  }

  .project-image-container {
    padding: 0 !important;
  }
}

/* Normal (desktop) – captions visible */
.project-caption {
  display: block;
}

/* Mobile / single-column – allow selective hiding */
@media (max-width: 1000px) {
  .project-caption.hide-on-mobile {
    display: none !important;
  }
}

.footer-global {
  background-color: #605039; /* replace with your desired color */
  padding: 2rem 0; /* optional – adds vertical space */
  list-style: none;
  margin: 0;
}

.footer-global {
  background-color: #605039;
  list-style: none;
  margin: 0;
  padding: 2rem 0; /* only vertical padding on the full-width background */
  width: 100%;
}

.footer-global > li {
  padding: 0 2rem; /* left/right padding for internal content */
}

.footer-global a {
  color: white;
  text-decoration: none; /* optional */
}

.footer-global a:hover {
  color: #ddd; /* optional: lighter shade on hover */
}

.footer-global h2 {
  font-size: 1.75rem; /* or whatever your desktop size is */
  font-weight: 700;
}

@media (max-width: 1000px) {
  .footer-global h2 {
    font-size: 1.75rem; /* keep the same size on one column */
  }
}

.footer-arrow-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 1rem;
}

.footer-arrow-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff; /* white for footer */
  text-decoration: none;
  transition: transform 0.5s, color 0.5s;
}

.footer-arrow-link:hover {
  transform: scale(1.75);
  color: #FFEFE1; /* soft highlight color */
}

/* Disable hover/tap effects on mobile */
@media (max-width: 500px) {
  .footer-arrow-link {
    transition: none;
  }

  .footer-arrow-link:hover,
  .footer-arrow-link:active,
  .footer-arrow-link:focus {
    transform: none;
    color: #ffffff;
  }
}



.about-grid .divider {
  display: block;
  grid-column: 1 / -1;
}




.about-image {
  position: relative; /* enables absolute positioning for children */
  display: inline-block; /* keeps figure tight to image size */
}

.portrait-img {
  display: block;
  width: 100%;
  height: auto;
}

.about-overlay {
  position: absolute;
  bottom: -5%;   /* move below image edge (increase for more overlap) */
  right: -5%;    /* move beyond right edge (increase for more overlap) */
  width: 160px;  /* control size */
  height: auto;
  z-index: 5;    /* ensures overlay is above */
  pointer-events: none; /* prevent blocking interactions */
}

/* Base: desktop layout (above 1550px) */
.about-overlay {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 120px;
  z-index: 5;
}

/* Between 1550px and 1000px → make overlay smaller */
@media (max-width: 1550px) and (min-width: 1001px) {
  .about-overlay {
    width: 90px;
    bottom: -1.5rem;
    right: -1.5rem;
  }
}

/* Single column (1000px and below) → make overlay larger */
@media (max-width: 1000px) {
  .about-overlay {
    width: 160px;
    bottom: -1.5rem;
    right: -1.5rem;
  }

  .about-grid-image {
    position: relative;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Small mobile (≤500px) → reduce again for tiny screens */
@media (max-width: 500px) {
  .about-overlay {
    width: 100px;
    bottom: -1rem;
    right: -1rem;
  }
}

@media (max-width: 500px) {
  .about-overlay {
    width: 85px;
    bottom: -1rem;
    right: -1rem;
  }
}

@media (min-width: 1550px) {
  .about-overlay {
    width: 180px;
    bottom: -2rem;
    right: -2rem;
  }
}


.project-description-title {
    text-transform: uppercase;
    font-size: 2.5rem;   /* override any h2 rules */
    font-family: 'Poppins', sans-serif;
    color: #605039;
    font-weight: 500;
}

.project-description-title {
    text-transform: uppercase;
    font-size: 2.5rem; /* default desktop size */
    font-family: 'Poppins', sans-serif;
    color: #605039;
    font-weight: 500;
}

/* Single-column / mobile layout */
@media (max-width: 1000px) {
    .project-description-title {
        font-size: 1.5rem; /* smaller for mobile */
    }
}

.border-right {
  position: relative;
  border-right: none; /* disable old border line */
}
.project-info {
  position: relative;
  padding-right: 1rem; /* adds space between text and scroll bar */
}

/* Scroll Progress Container */
.scroll-progress {
  position: absolute;
  top: 1rem;      /* outer top margin */
  bottom: 1rem;   /* outer bottom margin */
  right: 0;       /* stay at edge of sidebar */
  width: 32px;    /* slightly wider to give horizontal spacing */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Track of the Scroll Progress */
.scroll-track {
  position: relative;
  width: 22px;        /* slightly wider for left/right spacing */
  height: 92%;        /* internal top/bottom margin */
  border: 2px solid #605039;
  border-radius: 30px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  padding: 4%;        /* inner spacing so circle never touches edges */
}

/* Scroll Indicator Circle */
.scroll-indicator {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 12px;
  height: 12px;
  background-color: #605039;
  border-radius: 50%;
  transition: top 0.15s ease-out, background-color 0.3s ease;
  cursor: url("/assets/cursor/2x/Asset 42.png"), pointer !important;
}

/* Hover Effect for Circle */
.scroll-indicator:hover {
  background-color: #F26F6C;
  cursor: url("/assets/cursor/2x/Asset 42.png"), pointer !important;
}

/* Disable scroll bar and custom cursor on smaller screens */
@media (max-width: 999px) {
  .scroll-progress {
    display: none;
  }
  
  .scroll-indicator {
    cursor: default !important;
  }
}

.video-margin {
  margin: 1rem; /* adds spacing around the video */
  box-sizing: border-box; /* ensures margin doesn’t break responsive layout */
}

@media (max-width: 1025px) {
  .masonry-grid {
    column-count: unset;
    column-gap: unset;
    display: block; /* optional, ensures normal flow */
  }

  .masonry-item {
    break-inside: auto;
    width: 100%;
    margin-bottom: 1rem;
  }
}
/* Only for this project page */
body.more-of-my-workk .project-wrapper-fullwidth {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding-left: 12rem;
  padding-right: 12rem;
}

body.more-of-my-workk .project-wrapper-fullwidth .project-details {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

@media (max-width: 1024px) {
  body.more-of-my-workk .project-wrapper-fullwidth {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 1025px) {
  .footer-item {
    font-size: 0.9rem;
    line-height: 1rem;   /* smaller text */
    margin-bottom: 0.4rem;  /* tighter spacing */
  }

  .footer-socials-list,
  .footer-awards-list {
    gap: 0.4rem; /* reduces space between list items */
  }
}

@media (max-width: 1025px) {
  .footer-global {
    display: grid;
    gap: 1rem;
  }
}

@media (max-width: 1025px) {
  p {
    font-size: 0.9rem;
    line-height: 1rem;
  }
}

@media (max-width: 1025px) {
  .project-aside {
    padding: 0;
  }
}

.project-description-one-column p {
  color: #605039; /* or whatever color you want */
}

@media (min-width: 1025px) {
  .project-image-container .section-item.col-2:first-child {
    margin-left: 1rem;
  }
}

@media (min-width: 1025px) {
  .strathcona-section > div:first-child {
    margin-left: 1rem;
  }
}




























/*

███████ ██ ███    ██
██      ██ ████   ██
█████   ██ ██ ██  ██
██      ██ ██  ██ ██
██      ██ ██   ████
                                              
That’s a wrap, class! 🧑‍🎓✨

*/

/* 🎉 You made it to the end! */
/* This is a great place to celebrate your progress, add Easter eggs, or leave notes for your future self. */
/* Happy coding, and don’t forget to take breaks, stay hydrated, and share your work proudly. 💻✨🎨 */
