/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@300;400;500;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;700&display=swap');

/* Romie Font */
@font-face {
  font-family: "Romie";
  src: url("Asset/Fonts/romie-regular.woff2") format("woff2"),
       url("Asset/Fonts/romie-regular.woff2") format("woff");
  font-weight: normal;
  font-style: normal;
}

/* Unica77LL Font */
@font-face {
  font-family: "Unica77LL";
  src: url("Asset/Fonts/Unica77LLSub-RegularSubset.woff2") format("woff2"),
       url("Asset/Fonts/Unica77LLSub-RegularSubset.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

/*Milchella Font*/
@font-face {
    font-family: "Milchella";
    src: url("../Asset/Fonts/Milchella-Regular.woff2") format("woff2");
}


@font-face {
    font-family: Romie-Regular;
    src: url("../Asset/Fonts/romie-regular.woff2") format("woff")
}
  
  /* MOBILE MODE */
  @media (max-width: 700px) {
      .menu-icon {
        display: block;
        z-index: 10;
      }
    
      .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: #ffffff;
        width: 100%;
        text-align: center;
        padding: 10px 0;
      }
    
      .nav-links li {
        padding: 10px 0;
      }
}
    
    /* NAVBAR */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    background: #ffffff;
    border-bottom: 1px solid #ffffff;
    position: relative;
    transition: all 0.3s ease-in-out;
}
  
  /* LOGO (Desktop: Left) */
  .logo {
      font-family: 'Milchella', sans-serif;
      font-weight: 900;
      letter-spacing: 0.5cap;
      font-size: 18px;
      color: #333;;
      text-transform: uppercase;
      position: absolute;
      left: 40px;
}
  
  /* NAV LINKS (Desktop: Right) */
  .nav-links {
    list-style: none;
    display: flex;
    gap: 50px;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 50px;
    z-index: 1000; /* Ensure the menu appears above other elements */
}
  
  .nav-links li {
    display: inline;
}
  
  .nav-links a {
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 400;
    color: #000000;
    transition: all 0.3s ease-in-out;
}
  
  .nav-links a:hover {
    color: #9d00ff;
}
  
  /* MENU ICON (Hidden on Desktop) */
  .menu-icon {
    display: none;
    font-size: 24px;
    font-weight: 100px;
    cursor: pointer;
    position: absolute;
    left: 40px;
    font-size: 20px; /* Reduce font size */
    font-weight: 50; /* Make it thinner */
    z-index: 1001; /* Ensure the toggle icon is above the menu */
}

/* MOBILE MODE */
@media (max-width: 700px) {
    .menu-icon {
      display: block;
      z-index: 1001; /* Ensure the toggle icon is above other elements */
    }
  
    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      right: 0;
      background: #ffffff;
      width: 100%;
      text-align: center;
      padding: 10px 0;
      z-index: 1000; /* Ensure the menu appears above other elements */
    }
  
    .nav-links li {
      padding: 10px 0;
    }
  }

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Default Body Font */
body {
  font-family: "MaisonNeue", "Inter", sans-serif;
  font-weight: normal;
  font-size: 12px;
  color: #333;
  letter-spacing: 0.1em;
}

/* MOBILE MODE */
@media (max-width: 700px) {
  .menu-icon {
    display: block;
    z-index: 10;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background: #ffffff;
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }

  .nav-links.active {
    display: flex; /* Show menu when active */
  }

  .nav-links li {
    padding: 10px 0;
  }
}

/* NAVBAR */
.navbar {
position: sticky; /* Makes the navbar stick to the top */
top: 0; /* Sticks to the top of the viewport */
z-index: 1000; /* Ensures it stays above other elements */
background: #ffffff; /* Keeps the background consistent */
display: flex;
justify-content: space-between;
align-items: center;
padding: 25px 40px;
border-bottom: 1px solid #ffffff;
}

/* LOGO (Desktop: Left) */
.logo {
  font-family: 'milchella', sans-serif;
  font-weight: 900;
  letter-spacing: 0.5cap;
  font-size: 22px;
  color: #333;;
  text-transform: uppercase;
  position: absolute;
  left: 50px;
  text-decoration: none;
}

/* NAV LINKS (Desktop: Right) */
.nav-links {
list-style: none;
display: flex;
gap: 50px;
margin: 0;
padding: 0;
position: absolute;
right: 50px;
}

.nav-links li {
display: inline;
}

.nav-links a {
text-decoration: none;
font-size: 12.5px;
font-weight: 400;
color: #000000;
transition: all 0.3s ease-in-out;
}

.nav-links a:hover {
color: #9d00ff;
}

/* MENU ICON (Hidden on Desktop) */
.menu-icon {
display: none;
font-size: 24px;
font-weight: 100px;
cursor: pointer;
position: absolute;
left: 40px;
font-size: 20px; /* Reduce font size */
font-weight: 50; /* Make it thinner */
}

/* MOBILE MODE */
@media (max-width: 700px) {
/* Move Menu Icon to the Left */
.menu-icon {
  font-family: 'romie';
  font-weight: lighter;
  display: block;
  position: absolute;
  left: 20px;
  top: 15px;
  z-index: 10;
}

/* Center the Logo */
.logo {
  left: 50%;
  transform: translateX(-50%);
}

/* Hide Nav Links by Default */
.nav-links {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 60px;
  right: 0;
  background: #ffffff;
  width: 100%;
  text-align: center;
  padding: 10px 0;
}

.nav-links li {
  display: block;
  padding: 5px 0;
}

  /* Remove underline from navbar logo and links */
  .nav-links a, 
  .logo a {
      text-decoration: none; /* Remove underline */
  }

  /* Show Nav Links When Active */
}

/* Split Section */

/* RESPONSIVE DESIGN */

@media screen and (min-width: 700px) {
    main#Featured {
        padding:0rem 3.75rem 0
    }
}


#MenuScroller {
    position: absolute;
    height: 100vh;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    pointer-events: none
}

#MenuScroller.scroller.fixed {
    position: fixed
}

div.monogram:not(:hover) [h4] {
    display: inline-block;
    position: absolute;
    top: .125em;
    margin: auto;
    width: 8rem;
    left: 0;
    right: 0
}

div.monogram:not(:hover) [svg] {
    display: none
}


html {
    font-family: Unica77LLSub-RegularSubset;
    font-size: 1vw;
    letter-spacing: .02em;
    line-height: 154%;
    -webkit-tap-highlight-color: rgba(0,0,0,0)
}

@media screen and (max-width: 700px) {
    html {
        font-size:12px
    }
}

@media screen and (min-width: 1400px) {
    html {
        font-size:14px
    }
}

body,html {
    margin: 0;
    padding: 0;
    min-height: 60rem
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #373737;
    padding: 0 0 0;
}


p {
    margin: inherit;
    max-width: 40em
}

h1 {
    font-family: Romie-Regular;
    font-size: 2.33rem;
    line-height: 110%;
    font-weight: 100;
    margin: inherit;
    display: block;
    color: #000
}

@media screen and (min-width: 1500px) {
    h1 {
        font-size:2vw
    }
}

h4 {
    font-size: inherit;
    font-weight: 400;
    line-height: 130%;
    margin: inherit;
    display: block;
    letter-spacing: .025em
}

h4 {
    font-size: .8777rem
}

button {
    margin: 0;
    padding: 0
}

button {
    font-size: .8777rem;
    border: none;
    background-color: rgba(0,0,0,0);
    cursor: pointer;
    vertical-align: text-bottom;
    line-height: 130%
}

figure {
    padding: 0;
    margin: 0
}

:root {
    --tick: 0.3s;
    --tock: 0.5s;
    --swish: 0.2s;
    --latetick: 0.125s;
    --latetock: 1.15s;
    --forwards: 1.5%;
    --backwards: -1.5%;
    --gray: #f0f0ea;
    --graphite: #808285;
    --white: #fff;
    --black: rgba(55,55,55,0.6)
}

/*# sourceMappingURL=app~01e7b97c.dd62eacc.css.map */

footer#MainFooter {
    padding: 8em 0 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #fff
}

@media screen and (max-width: 700px) {
    footer#MainFooter {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 3.75rem;
    }
}

footer#MainFooter div:first-child p {
    max-width: 20em;
    margin: 0 0 1em;
}

@media screen and (max-width: 700px) {
    footer#MainFooter div {
        margin-bottom:4rem;
    }
}

footer#MainFooter div:last-child {
    max-width: 30em;
}

/* MOBILE MODE */
@media (max-width: 700px) {
    .menu-icon {
      display: block;
      z-index: 1001; /* Ensure the toggle icon is above other elements */
    }
  
    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      right: 0;
      background: #ffffff;
      width: 100%;
      text-align: center;
      padding: 10px 0;
      z-index: 1000; /* Ensure the menu appears above other elements */
    }
  
    .nav-links li {
      padding: 10px 0;
    }
  }
  
  /* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 40px;
  background: #ffffff;
  border-bottom: 1px solid #ffffff;
  position: relative;
  transition: all 0.3s ease-in-out;
}

/* LOGO (Desktop: Left) */
.logo {
    font-family: 'Milchella', sans-serif;
    font-weight: 900;
    letter-spacing: 0.5cap;
    font-size: 22px;
    color: #333;;
    text-transform: uppercase;
    position: absolute;
    left: 50px;
}

/* NAV LINKS (Desktop: Right) */
.nav-links {
  list-style: none;
  display: flex;
  gap: 50px;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 50px;
  z-index: 1000; /* Ensure the menu appears above other elements */
}

.nav-links li {
  display: inline;
}

.nav-links a {
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 400;
  color: #000000;
  transition: all 0.3s ease-in-out;
}

.nav-links a:hover {
  color: #9d00ff;
}

/* MENU ICON (Hidden on Desktop) */
.menu-icon {
  display: none;
  font-size: 24px;
  font-weight: 100px;
  cursor: pointer;
  position: absolute;
  left: 40px;
  font-size: 20px; /* Reduce font size */
  font-weight: 50; /* Make it thinner */
  z-index: 1001; /* Ensure the toggle icon is above the menu */
}

/* MOBILE MODE */
@media (max-width: 700px) {
  /* Move Menu Icon to the Left */
  .menu-icon {
    left: 20px;
    display: block;
    z-index: 1001; /* Ensure the toggle icon is above other elements */
    font-size: 20px; /* Reduce font size */
    font-weight: 50px; /* Make it thinner */
  }

  /* Center the Logo */
  .logo {
    left: 50%;
    transform: translateX(-50%);
  }

  /* Hide Nav Links by Default */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background: #ffffff;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    z-index: 1000; /* Ensure the menu appears above other elements */
  }

  .nav-links li {
    display: block;
    padding: 5px 0;
  }

  /* Remove underline from navbar logo and links */
  .nav-links a, 
  .logo a {
      text-decoration: none; /* Remove underline */
  }
}

/* Mobile S (320px) and Mobile M (375px to 400px) */


section#Content {
  position: relative;
  min-height: 100vh;
}

@media screen and (min-width:700px) {
  main#Featured {
      padding: 0 3.75rem 0;
  }
}

@media screen and (max-width:700px) {
  main#Featured {
      padding: 0rem 0 0;
  }
}

section.navigation {
  padding: 3rem 4rem;
  background-color: #f0f0ea;
}

section.mobile.navigation {
  display: none
}

@media screen and (max-width:700px) {
  section.navigation {
      display: none
  }

  section.mobile.navigation {
      display: block
  }
}

section.navigation h1 {
  display: inline-block;
  margin-right: .1em
}

section.navigation big {
  font-family: Romie-Regular;
  font-size: 2.33rem;
  line-height: 110%;
  font-weight: 100;
  margin: inherit;
  display: block;
  max-width: 22.5em;
  word-spacing: -.01em;
  text-align: center;
  margin: auto
}

section.navigation button.selected {
  color: #808285
}

section.navigation big button {
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  text-transform: uppercase;
  padding: inherit;
  background-color: inherit;
  line-height: inherit;
  vertical-align: baseline;
  margin-left: .3em
}

section.navigation big button:after {
  content: attr(data-count);
  font-family: Unica77LLSub-RegularSubset;
  font-size: .9rem;
  padding-right: .7em;
  position: relative;
  padding-left: .5em;
  bottom: .5em
}


section.projects {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center align projects */
    gap: 20px; /* Add spacing between projects */
    padding: 20px; /* Add padding inside the section */
    background-color: #f0f0ea; /* Background color for the overall section */
}

@media screen and (max-width:700px) {
  section.projects {
      padding: 0 1.5rem 3rem;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center
  }
}

section.mobile.navigation {
  padding: 1rem 1.5rem;
  background-color: #f0f0ea;
}

section.mobile.navigation dt {
  margin: 0 0 1.5rem;
  cursor: pointer
}

section.mobile.navigation dd {
  margin: 0;
  padding: 0
}

section.mobile.navigation dd button {
  padding: 0;
  line-height: .8em
}

#MenuScroller {
  position: absolute;
  height: 100vh;
  top: -1px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  pointer-events: none
}

#MenuScroller.scroller.fixed {
  position: fixed
}

footer#MainFooter {
  padding: 8em 0 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #fff
}

@media screen and (max-width:700px) {
  footer#MainFooter {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      padding: 3.75rem
  }
}

footer#MainFooter div:first-child p {
  max-width: 20em;
  margin: 0 0 1em
}

@media screen and (max-width:700px) {
  footer#MainFooter div {
      margin-bottom: 4rem
  }
}

footer#MainFooter div:last-child {
  max-width: 30em
}

div.project {
  width: 17.5rem;
  padding: 0 2.125rem 5.5rem
}

@media screen and (max-width:700px) {
  div.project {
      width: 13.5rem;
      padding: 0 .9rem 3rem
  }
}

@media screen and (max-width:700px) {
  div.project small {
      display: none
  }
}

div.project a {
  width: 100%;
  display: block
}

div.project figure {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 19.5rem;
  overflow: hidden;
  border: .02rem solid grey
}

@media screen and (max-width:700px) {
  div.project figure {
      height: 18rem
  }
}

div.project img {
  width: 100%;
  height: 100%;
  display: inline-block;
  object-fit: cover; /* Ensure proper scaling */
  visibility: visible; /* Ensure images are not hidden */
  opacity: 1; /* Ensure images are fully visible */
}

div.project a {
  text-decoration: none;
  color: inherit
}

div.project a img {
  filter: none;
  transition: all 0.3s ease;
}

div.project a:hover img {
  filter: none;
}

div.project h4 {
  padding-top: 2.125rem;
  line-height: 1.45em;
  text-decoration: none;
  color: inherit
}

@media screen and (max-width:700px) {
  div.project h4 {
      text-align: center
  }
}

div.project small,
div.project small * {
  text-decoration: none;
  line-height: 1.45em;
  color: #808285
}

div.monogram:not(:hover) h4[data-v-239c0636] {
  display: inline-block;
  position: absolute;
  top: .125em;
  margin: auto;
  width: 8rem;
  left: 0;
  right: 0
}

div.monogram:not(:hover) svg[data-v-239c0636] {
  display: none
}

@font-face {
  font-family: Unica77LLSub-RegularSubset;
  src: url(../../../../../assets/dist/fonts/Unica77LLSub-RegularSubset.f2a433e3.woff2) format("woff2")
}

@font-face {
  font-family: Unica77LLSub-RegularSubset;
  src: url(../../../../../assets/dist/fonts/Unica77LLSub-RegularSubset.bb261ea8.woff) format("woff")
}

@font-face {
  font-family: Romie-Regular;
  src: url(../../../../../assets/dist/fonts/Romie-Regular.bc853199.woff) format("woff")
}

html {
  font-family: Unica77LLSub-RegularSubset;
  font-size: 1vw;
  letter-spacing: .02em;
  line-height: 154%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

@media screen and (max-width:700px) {
  html {
      font-size: 12px
  }
}

@media screen and (min-width:1400px) {
  html {
      font-size: 14px
  }
}

body,
html {
  margin: 0;
  padding: 0;
  min-height: 60rem
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #373737
}

p {
  margin: inherit;
  max-width: 40em
}

h1 {
  font-family: Romie-Regular;
  font-size: 2.33rem;
  line-height: 110%;
  font-weight: 100;
  margin: inherit;
  display: block;
  color: #000
}

@media screen and (min-width:1500px) {
  h1 {
      font-size: 2vw
  }
}

h4 {
  font-size: inherit;
  font-weight: 400;
  line-height: 130%;
  margin: inherit;
  display: block;
  letter-spacing: .025em
}

h4,
small {
  font-size: .8777rem
}

button {
  margin: 0;
  padding: 0
}

button {
  font-size: .8777rem;
  border: none;
  background-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  vertical-align: text-bottom;
  line-height: 130%
}

figure {
  padding: 0;
  margin: 0
}

:root {
  --tick: 0.3s;
  --tock: 0.5s;
  --swish: 0.2s;
  --latetick: 0.125s;
  --latetock: 1.15s;
  --forwards: 1.5%;
  --backwards: -1.5%;
  --gray: #f0f0ea;
  --graphite: #808285;
  --white: #fff;
  --black: rgba(55, 55, 55, 0.6)
}

/*# sourceMappingURL=app~01e7b97c.dd62eacc.css.map */