/* FONTS */
@font-face {
    font-family: 'EksellDisplayLarge';
    src: url('../assets/EksellDisplayLargeWeb/EksellDisplayWeb-Large.woff2') format('woff2'),
         url('../assets/EksellDisplayLargeWeb/EksellDisplayWeb-Large.woff') format('woff'),
         url('../assets/EksellDisplayLargeWeb/EksellDisplayWeb-Large.eot') format('embedded-opentype');
    font-weight: normal;
    font-style: normal;
}

/* .syne-<uniquifier> {
    font-family: "Syne", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
  } */

body{
    background-color:#141414;
    padding:4rem 2rem;
    margin:0
    /* display:block;} */
}

body#homepage {
    position: relative;
    /* background-image removed, now handled by ::before */
}
body#homepage::before {
    content: "";
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../assets/flowerMonogram.png') no-repeat bottom right;
    background-size: 360px auto;
    background-attachment: fixed;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

@media screen and (min-width: 600px) {
    body#homepage::before {
        background-size: 75vw auto;
    }
}

@media screen and (min-width: 1200px) {
    body#homepage::before {
        background-size: 960px auto;
    }
}

section{
    width:100%;
    color:#fafafa;
    /* margin-bottom:2rem; */
    /* display:block; */
}

container.contentContainer{
    width:1200px;
    height:auto;
    display:block;
    margin:0 auto;
    padding:2rem 0;
    position: relative;
    z-index: 1;
}

#resume container.contentContainer{
    max-width:1600px;
}

@media screen and (max-width: 1200px) {
    container.contentContainer {
        width: 100%;
        padding: 2rem 0 5%;
    }
}

@media screen and (max-width: 750px) {
    container.contentContainer {
        width: 100%;
        padding: 0rem 0 5%;
    }
}

@media screen and (max-width: 600px) {
    body{
        padding: 4rem 1rem;
    }

}

/* ******************************************************************************** */
/* HOMEPAGE SECTION */
/* ******************************************************************************** */



.projectCard-thumbnails-row {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.projectCard-thumbnails-row::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.projectCard-thumbnail {
    flex: 0 0 auto;
    min-width:200px;
    width:30%;
    max-width: 320px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
}

.projectCard-thumbnail img {
    width: 100%;
    max-width:400px;
    height: auto;
    max-height:400px;
    border-radius: 0.5rem;
    margin-bottom: 1.25rem;
    display: block;
}

.projectCard-thumbnail#horoscopes-thumbnail img{
    margin:0 auto;
    margin-bottom:1.25rem;
    background-color:black;
}

.projectCard-thumbnail-title {
    color: #fafafa;
    font-family: "Syne", sans-serif;
    font-size: 1.5rem;
    font-weight:500;
    text-align: left;
    margin: 0;
    width: 100%;
}

.projectCard-thumbnail-title:hover {
    /* color: rgba(255,255,255,0.8); */
    color: #C74C6B;
  }

@media screen and (max-width: 600px) {
    .projectCard-thumbnails-row {
        gap: 1rem;
    }

    .projectCard-thumbnail-title {
        font-size:1.2rem;
    }
}

/* ******************************************************************************** */
/* END HOMEPAGE SECTION */
/* ******************************************************************************** */




/* ******************************************************************************** */
/* HERO SECTION */
/* ******************************************************************************** */

section.hero{
    width:100%;
    display:flex;
    justify-content:center;
    /* align-items:center; */
    margin:2rem 0
}

container.heroContainer{
    width:100%;
}

.heroImage{
    width:100%;
}

.heroContainer p.caption{
    max-width:1200px;
    margin: 0 auto;
}

/* ******************************************************************************** */
/* end HERO SECTION */
/* ******************************************************************************** */


/* ******************************************************************************** */
/* contentContainer TEXT ELEMENTS */
/* ******************************************************************************** */  

section.textLockup {
    display: flex;
    flex-direction: column;
}

section.textLockup container.contentContainer {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.divider{
    height:1px;
    width:100%;
    background-color:#fafafa;
    margin: 2rem 0;
}

@media screen and (max-width: 600px) {
    .divider{
        margin: 1.2rem 0;
    }
    .projectsRowHeader{
        margin-bottom:2rem;
    }
}

h4.projectSkills{
    font-size:2rem;
    font-family: "Syne", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    margin: 0;
    font-weight:600;
}

h4.projectSkills span.projectSkills-highlight{
    text-transform: uppercase;
}


h1.title{
    font-size:6rem;
    font-family: 'EksellDisplayLarge', serif;
    font-weight: normal;
    margin: 0;
    line-height:100%;
}

p.paragraph{
    font-family: "Syne", sans-serif;
    font-size:1.75rem;
    margin: 0;
    font-weight:400;
    letter-spacing: 0.0125rem;
    line-height:150%;
}

p.caption, p.credits {
    font-family: "Syne", sans-serif;
    font-size:1rem;
    margin: 0;
    line-height:150%;
}

p.credits{

}

.lightbox p.caption{
    display:none;
}

a{
    color:white;
}

nav.navbar a, .navLinks a, .footer-email a{
    text-decoration: none;
}

a:hover{
    color: #C74C6B;
}

@media screen and (max-width:800px){
    h1.title{font-size:5.2rem;}
    }
    @media screen and (max-width:725px){
        h1.title{font-size:4.8rem;}
    }

@media screen and (max-width: 600px) {
    h4.projectSkills{font-size:1.5rem;}
    h1.title{font-size:4rem;}
    p.paragraph{font-size:1.25rem;}
}

@media screen and (max-width:480px){
    h4.projectSkills{font-size:1.25rem;}
    h1.title{font-size:3.2rem;}
    p.paragraph{font-size:1rem;}
}

/* ******************************************************************************** */
/* end contentContainer TEXT ELEMENTS */
/* ******************************************************************************** */




/* ******************************************************************************** */
/* GALLERY ROW */
/* ******************************************************************************** */

.galleryRow{
    margin-bottom:4rem;
    width: 100%;
}

#resume .galleryRow{
    margin-bottom:0rem;
}

.projectCardsRow{
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    margin-bottom: 1rem;
    width: 100%;
}

body#crochet .projectCardsRow{
    margin-bottom:0rem;
}

body#horoscopes .projectCardsRow{
    margin-bottom:3rem;
}

section#design-discovery .projectCardsRow{
    margin-bottom:0rem;
}

.projectCard{
    flex: 1;
    min-width: 0;
    width: 100%;
}

.projectCard img{
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    margin-bottom:0.75rem;
    border-radius: 0.25rem;
}


#horoscopes #design-discovery .projectCard img{
    border:0.5px solid #fafafa;
}

#userResearch .projectCard img{
    border:0.5px solid #fafafa;
}

.galleryGrid .galleryRow{
    margin-bottom:-1rem;
}

.galleryRow #ecommTeaser{
    background-color:#fafafa;
}

@media screen and (max-width: 800px) {
    #shopTheLook .galleryRow{
        margin-bottom:0rem;
    }
}

@media screen and (max-width: 600px) {
    .galleryRow-4up .projectCardsRow {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, auto);
        gap: 0rem 0.75rem;
    }

    #shopTheLook .galleryRow-4up .projectCard{
        margin-bottom:2rem;
    }

    .galleryRow-4up .projectCard {
        width: 100%;
    }

    #horoscopes #design-discovery .projectCardsRow{
        display:block;
    }
    
}


/* ******************************************************************************** */
/* END GALLERY STYLES */  
/* ******************************************************************************** */





/* ******************************************************************************** */
/* VIDEO STYLES */  
/* ******************************************************************************** */

/* Video styles */
.projectCard video {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 0.75rem;
    border-radius: 0.25rem;
    cursor: pointer;
}

.video-container {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 0.25rem;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.play-button,
.pause-button,
.mute-button,
.unmute-button {
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
    position: relative;
}

.play-button:hover,
.pause-button:hover,
.mute-button:hover,
.unmute-button:hover {
    background-color: rgba(255, 255, 255, 1);
}

.play-button::before,
.pause-button::before,
.mute-button::before,
.unmute-button::before {
    content: '';
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.play-button::before {
    background-image: url('../assets/icons/play.png');
}

.pause-button {
    display: none;
}

.pause-button::before {
    background-image: url('../assets/icons/Property 1=pause.png');
}

.mute-button,
.unmute-button {
    margin-left: auto;
}

.mute-button::before {
    background-image: url('../assets/icons/Property 1=audio-on.png');
}

.unmute-button {
    display: none;
}

.unmute-button::before {
    background-image: url('../assets/icons/Property 1=audio-off.png');
}

.progress-bar {
    flex-grow: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #fff;
    border-radius: 2px;
    width: 0;
}

.time-display {
    color: #fff;
    font-family: "Syne", sans-serif;
    font-size: 0.875rem;
    flex-shrink: 0;
}


/* ******************************************************************************** */
/* end VIDEO STYLES */  
/* ******************************************************************************** */



/* ******************************************************************************** */
/* LIGHTBOX STYLES */
/* ******************************************************************************** */
.lightbox-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: opacity 0.3s;
}
.lightbox-modal {
    position: initial;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding:4rem 1rem;
    justify-content: flex-end;
}
.lightbox-image {
    width:100%;
    max-width: 800px;
    max-height: 70vh;
    border-radius: 0.5rem;
}
.lightbox-caption {
    color: #fafafa;
    font-size: 1.1rem;
    font-family: "Syne", sans-serif;
    text-align: center;
    width: 100%;
    height:160px;
    /* background: rgba(20,20,20,0.7); */
    padding: 1rem 0.5rem 0.5rem 0.5rem;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 10;
    margin: 0;
}

.lightbox-arrows {
    position: fixed;
    bottom: 2.8rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 1100;
    max-width:600px;
    margin:auto;
}

.lightbox-arrow {
    position: relative;
    font-size: 2.5rem;
    color: #fafafa;
    background: rgba(0,0,0,0.6);
    border: none;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 50%;
    user-select: none;
    transition: background 0.2s;
}

.lightbox-arrow:hover {
    background: rgba(0,0,0,0.5);
}

.lightbox-close {
    position: fixed;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    color: #fafafa;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 0.5rem 1rem;
    line-height: 1;
}

@media (max-width: 600px) {
    .lightbox-image { max-width: 95vw; max-height: 60vh; }
    .lightbox-arrows {
        padding: 0 0.5rem;
    }
    .lightbox-arrow { font-size: 2rem; }
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
    }
}
/* Center the SVG play icon inside the play-button overlay in the lightbox */
.lightbox-modal .play-button {
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-modal .play-button svg {
    display: block;
    margin: auto;
    position: relative;
    left: 0;
    top: 0;
}
/* Hide the default play-button::before in the lightbox modal overlay */
.lightbox-modal .play-button::before {
    display: none !important;
}
/* ******************************************************************************** */
/* END LIGHTBOX STYLES */
/* ******************************************************************************** */

/* 3-column masonry grid for gallery */
.galleryGrid-lightboxColumns {
    column-count: 4;
    column-gap: 0.75rem;
    width: 100%;
}
.galleryGrid-lightboxColumns .projectCard {
    display: inline-block;
    width: 100%;
    /* margin-bottom: 0.75rem; */
    break-inside: avoid;
}
@media (max-width: 900px) {
    .galleryGrid-lightboxColumns { column-count: 3; }
}
@media (max-width: 600px) {
    .galleryGrid-lightboxColumns { column-count: 2; }
}

.lightbox-counter {
    width: 100%;
    text-align: center;
    color: #fafafa;
    font-size: 1.1rem;
    font-family: "Syne", sans-serif;
    z-index: 11;
    /* padding: 0.5rem 0.5rem 0.25rem 0.5rem; */
    box-sizing: border-box;
    pointer-events: none;
    margin:auto;
}

@media (min-width: 600px) {
    .lightbox-counter{
        font-size:2rem;
    }
}

/* ******************************************************************************** */
/* INFO PAGE STYLES */
/* ******************************************************************************** */



/* ******************************************************************************** */
/* INFO PAGE STYLES */
/* ******************************************************************************** */



.download-pdf-container, .cta-button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0rem 0 2rem 0;
  width: 100%;
}

.cta-button-container{
    display:block;
}

.download-pdf-button, .cta-button {
  display: inline-block;
  background: #fff;
  color: #141414;
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  padding: 1rem 2rem;
  border: none;
  border-radius: 3rem;
  text-align: center;
  text-decoration: none;
  box-shadow: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-transform: uppercase;
}

.cta-button{
    font-size:1.25rem;
}

.download-pdf-button:hover,
.download-pdf-button:focus {
  background: #e0e0e0;
  color: #000;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  text-decoration: none;
}

@media (max-width: 600px) {
  .download-pdf-button {
    font-size: 1rem;
    padding: 1rem 1.5rem;
    max-width: 240px;
    width: 100%;
  }
}

#comingSoon h1.title{
    text-align:center;
}




/* ******************************************************************************** */
/* NAVIGATION */
/* ******************************************************************************** */

* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0px;
  }
  
  .nav {
    width: 100%;
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
    font-family: "Syne", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
  }
  
  .nav-header {
    display: flex;
    align-items: center;
    height: 100%;
  }
  
  .nav-header > span {
    display: inline-block;
    font-size: 22px;
    color: #fff;
    padding: 0 10px 0 0;
    line-height: 50px;
    font-weight: 600;
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.25rem;
  }
  
  .nav-links a {
    display: inline-block;
    /* padding: 0 10px; */
    text-decoration: none;
    color: #fafafa;
    line-height: 50px;
    min-width: 100px;
    text-align: right;
    font-weight: 500;
  }

  .nav-links:hover{
    color: #C74C6B;
  }
  
  .nav-btn {
    display: none;
  }
  
  @media (max-width:600px) {

    .nav-links a {
        text-align:center;
        width:100%;
    }

    .nav > .nav-btn {
      display: inline-block;
      position: absolute;
      right: 0px;
      top: 0px;
    }
    .nav > .nav-btn > label {
      display: inline-block;
    }
    .nav > .nav-btn > label:hover,.nav  #nav-check:checked ~ .nav-btn > label {
      background-color: rgba(0, 0, 0, 0.3);
    }

    .nav > .nav-btn > label > span {
      display: block;
      width: 25px;
      height: 10px;
      border-top: 2px solid #eee;
    }

    
    .nav > .nav-links {
      position: absolute;
      display: block;
      width: 100%;
      background-color: rgba(20, 20, 20, 0.8);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      height: 0px;
      transition: all 0.3s ease-in;
      overflow-y: hidden;
      top: 50px;
      left: 0px;
      z-index: 1000;
    }


    .nav > .nav-links > a {
      display: block;
      width: 100%;
      padding: 1rem 0;
    }
    .nav > #nav-check:not(:checked) ~ .nav-links {
      height: 0px;
    }
    .nav > #nav-check:checked ~ .nav-links {
      height:25vh;
      padding-top:1rem;
      overflow-y: auto;
    }
  }

  #nav-check {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none; /* Prevents accidental focus, but label will still toggle it */
  }


/* ******************************************************************************** */
/* END NAVIGATION */
/* ******************************************************************************** */






/* ******************************************************************************** */
/* PROJECT NAVIGATION */

.navLinks{
    display: flex;
    font-family: "Syne", sans-serif;
}
.prevLink{
    width:50%;
}
.nextLink{
    width:50%;
    text-align:right;
}

.navLinks .nav-link{
    font-size:1.25rem;
    font-weight:500;
}

.nav-title{
    text-transform:uppercase;
}

/* ******************************************************************************** */
/* END PROJECT NAVIGATION */
/* ******************************************************************************** */