@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Upright:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;500;600;700&display=swap");

:root {
  --font-base: "Cormorant Upright", serif;
  --font-alt: "Open Sans", sans-serif;

  --color-golden: #c9b8a5;
  --color-black: #0c0c0c;
  --color-gray: #545454;
  --color-crimson: #f5efdb;
  --color-grey: #aaaaaa;
  --color-white: #ffffff;
}

body {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}

a {
  color: unset;
  text-decoration: none;
}

.slide-bottom {
  -webkit-animation: slide-bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes slide-bottom {
  0% {
    -webkit-transform: translateY(-25%);
    transform: translateY(-25%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slide-bottom {
  0% {
    -webkit-transform: translateY(-25%);
    transform: translateY(-25%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slide-fade-in {
  from {
    opacity: 0;
    transform: translateY(5vh);
  }
}

@media (prefers-reduced-motion: no-preference) {
  section div {
    view-timeline-name: --item-timeline;
    animation: slide-fade-in both;
    animation-timeline: --item-timeline;
    animation-range: 150px 500px;
  }
}

body {
  background-color: #0d0d0d;
}

.page-section {
  background-color: #0d0d0d;
  color: #ffffff;
}

.text-muted {
  color: #cccccc;
}

.btn-dark {
  background-color: #333333;
  color: #ffffff;
}

.bg-light {
  background-color: #1a1a1a;
}

.section__padding {
  padding: 4rem 6rem;
}

.flex__center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.app__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;

  min-height: 100vh;
}

.app__wrapper_info {
  flex: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.app__wrapper_img {
  flex: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;

  margin-left: 2rem;
}

.app__wrapper_img-reverse {
  justify-content: flex-start;
  margin-right: 2rem;
}

.app__wrapper_img img {
  width: 80%;
}

.custom__button {
  background-color: var(--color-crimson);
  color: var(--color-black);
  font-family: var(--font-base);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 28px;
  font-size: 16px;
  padding: 0.5rem 1.5rem;
  border-radius: 1px;
  border: none;
  outline: none;
  cursor: pointer;
}

.p__cormorant {
  font-family: var(--font-base);
  color: var(--color-white);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: capitalize;
  font-feature-settings: "tnum" on, "lnum" on;
  line-height: 29.9px;
  font-size: 23px;
}

.p__opensans {
  font-family: var(--font-alt);
  color: var(--color-white);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: capitalize;
  line-height: 28px;
  font-size: 16px;
}

.headtext__cormorant {
  font-family: var(--font-base);
  color: var(--color-golden);
  font-size: 64px;
  line-height: 83.2px;
  letter-spacing: 0.04em;
  text-transform: capitalize;
}

.spoon__img {
  width: 45px;
}

@media screen and (min-width: 2000px) {
  .custom__button,
  .p__cormorant {
    font-size: 37px;
    line-height: 67px;
  }

  .p__opensans {
    font-size: 30px;
    line-height: 50px;
  }

  .headtext__cormorant {
    font-size: 150px;
    line-height: 210px;
  }

  .spoon__img {
    width: 80px;
  }
}

@media screen and (max-width: 1150px) {
  .app__wrapper {
    flex-direction: column;
  }

  .app__wrapper_img {
    margin: 5rem 0 0 0;
  }

  .app__wrapper_img-reverse {
    margin: 0 0 5rem 0;
  }

  .app__wrapper_img img {
    width: 100%;
  }
}

@media screen and (max-width: 850px) {
  .section__padding {
    padding: 4rem;
  }
}

@media screen and (max-width: 650px) {
  .section__padding {
    padding: 4rem 2rem;
  }

  .p__cormorant {
    font-size: 21px;
  }

  .p__opensans {
    font-size: 14px;
  }
}

@media screen and (max-width: 450px) {
  .p__opensans {
    font-size: 12px;
  }

  .p__cormorant {
    font-size: 19px;
  }

  .headtext__cormorant {
    font-size: 45px;
    line-height: 70px;
  }
}

/*----------------------------------------------------------------------------------*/

/* Nav Bar */

/* Nav Bar */

.app__navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
  overflow: hidden;
  background-color: transparent;
}

.app__navbar-logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.app__navbar-logo img {
  width: 100px;
  margin-left: 6rem;
  cursor: pointer;
}

@media screen and (max-width: 1150px) {
  .app__navbar-links {
    display: none;
  }
}

@media screen and (max-width: 650px) {
  .app__navbar-logo img {
    width: 80px;
    margin-left: 3rem;
  }
}

@media screen and (max-width: 350px) {
  .app__navbar-logo img {
    width: 50px;
    margin-left: 2rem;
  }
}

/* PreLoader */

.pre-loader {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  z-index: 9999;
}

.pre-loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-base);
}

.pre-loader-content span {
  font-family: var(--font-base);
  font-style: italic;
}

.pre-loader-text {
  margin-bottom: 0.5em;
  font-size: 100px;
  color: #c9b8a5;
}

.loader {
  width: 500px;
  height: 2px;
  background: #c9b8a5;
}

@media screen and (max-width: 2000px) {
  .loader {
    width: 600px;
  }
}

@media screen and (max-width: 1500px) {
  .pre-loader-text {
    font-size: 80px;
  }

  .loader {
    width: 450px;
  }
}

@media screen and (max-width: 1050px) {
  .pre-loader-text {
    font-size: 60px;
  }

  .loader {
    width: 360px;
  }
}

@media screen and (max-width: 850px) {
  .pre-loader-text {
    font-size: 45px;
  }

  .loader {
    width: 280px;
  }
}

@media screen and (max-width: 650px) {
  .pre-loader-text {
    font-size: 40px;
  }

  .loader {
    width: 200px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: var(--font-base);
}

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

section {
  width: 100%;
  padding: 2em;
}

.row {
  width: 100%;
  display: flex;
  gap: 2em;
}

.col {
  flex: 1;
  display: flex;
  gap: 1em;
}

.mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.img {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 4/5;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(
      to bottom,
      rgba(13, 13, 13, 0) 40%,
      rgba(13, 13, 13, 1) 100%
    ),
    url("../../assets/img/projects/12.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  width: 100%;
  height: 100%;
  font-family: var(--font-base);
  color: var(--color-golden);
}

.hero-content h1 {
  font-size: 100px;
  font-weight: 500;
  letter-spacing: -0.02vw;
  padding-bottom: 1rem;
}

.hero-content p {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.02vw;
  padding-bottom: 6rem;
}

.info-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.info-p {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 1rem;
}

.info-p p {
  flex: 1;
  margin: 0;
  padding: 0 1rem;
  box-sizing: border-box;
}

.info-container h1 {
  font-size: 80px;
  margin-top: 6rem;
  color: var(--color-golden);
}

.info-container p {
  font-size: 30px;
  margin-top: 4rem;
  color: var(--color-gray);
}

.img-1 .mask,
.img-6 .mask {
  background: url(../../assets/img/projects/9.jpg) no-repeat 50% 50%;
  background-size: cover;
}

.img-2 .mask,
.img-7 .mask {
  background: url(../../assets/img/projects/10.jpg) no-repeat 50% 50%;
  background-size: cover;
}

.img-3 .mask,
.img-15 .mask {
  background: url(../../assets/img/projects/12.jpg) no-repeat 50% 50%;
  background-size: cover;
}

.img-4 .mask,
.img-10 .mask {
  background: url(../../assets/img/projects/12.jpg) no-repeat 50% 50%;
  background-size: cover;
}

.img-5 .mask,
.img-11 .mask {
  background: url(../../assets/img/projects/13.jpg) no-repeat 50% 50%;
  background-size: cover;
}

.img-8 .mask,
.img-17 .mask {
  background: url(../../assets/img/projects/14.jpg) no-repeat 50% 50%;
  background-size: cover;
}

.img-9 .mask,
.img-13 .mask {
  background: url(../../assets/img/projects/13.jpg) no-repeat 50% 50%;
  background-size: cover;
}

.img-12 .mask,
.img-14 .mask,
.img-16 .mask {
  background: url(../../assets/img/projects/11.jpg) no-repeat 50% 50%;
  background-size: cover;
}

.img-1 {
  height: 80vh;
}

.img-2 {
  height: 60vh;
  width: 40vw;
  align-self: flex-end;
}

.img-3 {
  width: 80%;
  height: 60vh;
  margin-left: auto;
}

.img-4 {
  width: 100%;
  height: 100vh;
}

.img-5 {
  width: 40%;
  height: 70vh;
  align-self: center;
}

.img-6 {
  width: 50%;
  height: 90vh;
  margin-left: auto;
}

.img-7 {
  width: 100%;
  height: 100vh;
}

.img-8 {
  height: 80vh;
}

.img-9 {
  height: 60vh;
  width: 40vw;
  align-self: flex-end;
}

.img-10 {
  width: 75%;
  height: 100vh;
  margin-left: auto;
}

.img-11 {
  width: 100%;
  height: 100vh;
}

.img-12 {
  width: 40%;
  height: 70vh;
  align-self: center;
}

.img-13 {
  width: 50%;
  height: 90vh;
  margin-left: auto;
}

.img-14 {
  width: 100%;
  height: 100vh;
}

.img-15 {
  height: 80vh;
}

.img-16 {
  height: 60vh;
  width: 40vw;
  align-self: flex-end;
}

.row-1 {
  display: flex;
  gap: 10rem;
  width: 100%;
  height: 100%;
  margin: 5rem 10rem 8rem 10rem;
}

.row-2 {
  margin: 10rem 8rem;
  width: 100%;
}

.row-3 {
  width: 100%;
  margin: 10rem 10rem;
}

.row-4 {
  display: flex;
  width: 100%;
  height: 100%;
  margin: 10rem 10rem;
}

.next-project {
  margin: 10rem 8rem;
}

.next-project-item {
  display: flex;
  flex-direction: row;
  gap: 4rem;
}

.next-project-img {
  width: 600px;
  height: auto;
}

.next-project-img img {
  width: 100%;
  height: 100%;
}

.next-project-text {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  justify-content: space-between;
  align-items: last baseline;
  color: var(--color-golden);
}

.next-project-name {
  font-size: 60px;
}

.next-project-button {
  font-size: 36px;
}

.next-project-phone-button {
  display: none;
  font-size: 36px;
  color: var(--color-golden);
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

@media screen and (max-width: 1500px) {
  .info-container h1 {
    font-size: 70px;
  }
  .info-container p {
    font-size: 28px;
  }
  .next-project {
    margin: 10rem 2rem 4rem;
  }
  .row-1,
  .row-2,
  .row-3,
  .row-4 {
    margin: 0;
    padding: 3rem 4rem;
    gap: 6rem;
  }
  .row-1 .img:first-child {
    height: 60vh;
  }
  .row-1 .img:last-child {
    height: 40vh;
  }
  .next-project-item {
    gap: 2rem;
  }
  .next-project-name {
    font-size: 48px;
  }
  .next-project-button {
    font-size: 28.8px;
  }
  .next-project-img {
    width: 480px;
  }
}

@media screen and (max-width: 1050px) {
  .row-1,
  .row-2,
  .row-3,
  .row-4 {
    flex-direction: column;
  }
  .img {
    width: 100%;
    height: 100%;
  }
  .next-project {
    margin: 8rem 2rem 2rem;
  }
  .next-project-item {
    gap: 2rem;
  }
  .next-project-img {
    width: 360px;
  }
  .next-project-name {
    font-size: 36px;
  }
  .next-project-button {
    font-size: 21.6px;
  }
}

@media screen and (max-width: 850px) {
  .hero-content h1 {
    font-size: 80px;
  }
  .hero-content p {
    font-size: 24px;
  }
  .info-container h1 {
    font-size: 52px;
  }
  .info-container p {
    font-size: 20px;
  }
  .row,
  .row-1,
  .row-2,
  .row-3,
  .row-4 {
    flex-direction: column;
  }
  .next-project {
    margin: 8rem 2rem 6rem;
  }
  .next-project-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .next-project-button {
    display: none;
  }
  .next-project-phone-button {
    display: flex;
    align-self: flex-start;
    font-size: 48px;
  }
  .next-project-name {
    font-size: 40px;
    align-self: flex-start;
  }
  .next-project-img {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .hero h1 {
    margin-top: 5em;
  }
  .info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .info p {
    width: 80%;
  }
  .hero-content h1 {
    font-size: 50px;
  }
  .hero-content p {
    font-size: 18px;
  }
  .info-container h1 {
    font-size: 40px;
  }
  .info-container p {
    font-size: 18px;
  }
  .row-1,
  .row-2,
  .row-3,
  .row-4 {
    padding: 2rem;
    gap: 4rem;
  }
  .next-project {
    margin: 8rem 0 4rem;
  }
  .next-project-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .next-project-button {
    display: none;
  }
  .next-project-phone-button {
    display: flex;
    align-self: flex-start;
    font-size: 36px;
  }
  .next-project-name {
    font-size: 30px;
    align-self: flex-start;
  }
  .next-project-img {
    width: 100%;
  }
}

/* Footer */

.footer-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 4rem 10rem;
  justify-content: space-between;
  align-items: center;
}

.footer-border {
  border-top: 1px solid #c9b8a5;
  margin: 0 10rem;
}

.footer-content {
  display: flex;
  flex-direction: row;
  gap: 6rem;
  width: fit-content;
  align-items: baseline;
}

.footer-text {
  display: flex;
  flex-direction: row;
  margin-bottom: 2rem;
  gap: 4rem;
}

.footer-text div p {
  font-size: 24px;
  font-family: var(--font-alt);
  color: var(--color-grey);
}

.footer-logo p {
  font-size: 56px;
  font-family: var(--font-base);
  color: var(--color-golden);
}

.footer-icon {
  display: flex;
  flex-direction: row;
  gap: 3rem;
}

.footer-icon-facebook {
  width: 60px;
  height: 60px;
  border: 1px solid var(--color-grey);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.footer-icon-instagram {
  width: 60px;
  height: 60px;
  border: 1px solid var(--color-grey);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.footer-icon-facebook:hover {
  background-color: white;
  transition: background-color 1s ease;
}

.footer-icon-facebook {
  color: white;
  transition: color 1s ease;
}

.footer-icon-facebook:hover {
  color: black;
}

.footer-icon-instagram:hover {
  background-color: white;
  transition: background-color 1s ease;
}

.footer-icon-instagram {
  color: white;
  transition: color 1s ease;
}

.footer-icon-instagram:hover {
  color: black;
}

.footer-icon-facebook svg,
.footer-icon-instagram svg {
  font-size: 1.2em;
}

.footer-icon-instagram {
  width: 60px;
  height: 60px;
  border: 1px solid var(--color-grey);
  border-radius: 100%;
}

@media (max-width: 1500px) {
  .footer-container {
    padding: 3rem 8rem;
  }

  .footer-content {
    gap: 5rem;
  }

  .footer-text {
    font-size: 20px;
  }

  .footer-logo p {
    font-size: 50px;
  }

  .footer-icon {
    gap: 2rem;
  }

  .footer-border {
    margin-top: 4rem;
  }
}

@media (max-width: 1050px) {
  .footer-container {
    flex-direction: column;
    padding: 2rem 5rem;
    align-items: center;
    text-align: center;
  }

  .footer-content {
    margin-top: 1rem;
    flex-direction: column;
    gap: 4rem;
    width: 100%;
    align-items: center;
  }

  .footer-text {
    flex-direction: column;
    gap: 1rem;
    font-size: 24px;
  }

  .footer-logo p {
    font-size: 54px;
  }

  .footer-icon {
    margin: 2rem 0 3rem 0;
    gap: 2rem;
  }

  .footer-border {
    margin-top: 4rem;
  }
}

@media (max-width: 850px) {
  .footer-container {
    flex-direction: column;
    padding: 2rem 5rem;
    align-items: center;
    text-align: center;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    align-items: center;
  }

  .footer-text {
    flex-direction: column;
    gap: 1rem;
    font-size: 18px;
  }

  .footer-logo p {
    font-size: 48px;
  }

  .footer-icon {
    margin: 2rem 0;
    gap: 2rem;
  }

  .footer-icon-facebook,
  .footer-icon-instagram {
    width: 50px;
    height: 50px;
  }

  .footer-icon-facebook svg,
  .footer-icon-instagram svg {
    font-size: 1em;
  }

  .footer-border {
    margin: 2rem 8rem 0 8rem;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 1rem 2rem;
  }

  .footer-logo p {
    font-size: 36px;
  }

  .footer-text div p {
    font-size: 16px;
  }

  .footer-icon {
    margin-bottom: 2rem;
  }

  .footer-border {
    margin: 2rem 4rem 0 4rem;
  }
}
