/* 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")
}

/* 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
    }
}

@media screen and (max-width: 700px) {
    main#Featured {
        padding:0rem 0 0
    }
}

section.showcase {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

section.showcase:nth-child(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

@media screen and (max-width: 700px) {
    section.showcase,section.showcase:nth-child(odd) {
        -webkit-box-orient:vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }
}

section.showcase figure {
    width: 55%;
    padding: 0;
    margin: 0;
    min-height: 33rem;
    max-height: 95vh;
    overflow: hidden
}

@media screen and (max-width: 700px) {
    section.showcase figure {
        width:100%;
        max-height: 75vh;
        min-height: 35vh
    }
}

@media screen and (max-width: 700px) {
    section.showcase h1 {
        font-size:1.75rem
    }
}

section.showcase figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    vertical-align: bottom
}

section.showcase figure a {
    width: 100%;
    height: 100%;
    display: block
}

@media screen and (max-width: 700px) {
    section.showcase figure a {
        height:35vh
    }
}

section.showcase svg.arrow {
    width: 1em;
    position: relative;
    vertical-align: text-bottom;
    margin-left: .7em;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    left: 0
}

section.showcase button:hover svg.arrow {
    left: 3%
}

#MenuScroller {
    position: absolute;
    height: 100vh;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    pointer-events: none
}

#MenuScroller.scroller.fixed {
    position: fixed
}

svg {
    fill: none;
    stroke: #000;
    stroke-width: .75;
    height: 1rem;
    width: 3rem
}

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[style-02],img[style-02] {
    width: 100%;
    height: 100%
}

img[style-02] {
    -o-object-fit: cover;
    object-fit: cover;
    vertical-align: bottom
}

.v-lazy-image[style-02] {
    opacity: 0;
    -webkit-transition: opacity .5s;
    -o-transition: opacity .5s;
    transition: opacity .5s
}

.v-lazy-image-loaded[style-02] {
    opacity: 1
}

section[style-01] {
    width: 45%;
    background-color: #f1f0eb;
    padding: 9rem 4.75rem 4.75rem;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media screen and (max-width: 700px) {
    section[style-01] {
        padding:3.25rem 3em;
        width: 100%
    }
}

div[style-01] {
    display: block;
    text-align: left;
    position: relative
}

h1[style-01] {
    font-family: 'Romie', sans-serif;
    font-weight: 200;
    text-align: center; /* Centers text */
    width: 100%; /* Ensures full width */
    padding-bottom: 3.75rem;
    letter-spacing: -.01em;
    max-width: 14em;
    margin-left: auto;
    margin-right: auto
}

@media screen and (max-width: 700px) {
    h1[style-01] {
        padding-bottom:2.75rem
    }
}

h4.categories[style-01] {
    padding-right: 11.5em
}

@media screen and (max-width: 700px) {
    h4.categories[style-01] {
        display:none
    }
}

button[style-01] {
    width: 5.5em;
    position: absolute;
    right: 0;
    bottom: 0;
    text-transform: uppercase
}

button a[style-01] {
    text-decoration: none;
    color: inherit
}

@media screen and (max-width: 700px) {
    button[style-01] {
        width:5em
    }
}

section[style-01] {
    -webkit-transition: all .75s ease;
    -o-transition: all .75s ease;
    transition: all .75s ease
}

section.show[style-01] {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

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
}

@font-face {
    font-family: Unica77LLSub-RegularSubset;
    src: url(D:\Website\Newfolder\asset\dist\fonts\Romie-Regular.bc853199.woff) format("woff2")
}

@font-face {
    font-family: Unica77LLSub-RegularSubset;
    src: url(D:\Website\Newfolder\asset\dist\fonts\Romie-Regular.bc853199.woff) format("woff")
}

@font-face {
    font-family: Romie-Regular;
    src: url(D:\Website\Newfolder\asset\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
    }
}

h3 {
    font-weight: 400;
    line-height: 130%;
    margin: inherit;
    display: block;
    letter-spacing: .025em
}

h3 {
    text-transform: uppercase;
    font-size: .8777rem
}

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 */

