/* ---------------------------- GLOBAL -------------------------------------- */

html {
  height: auto;
  font-family: sans-serif;
  scroll-behavior: smooth; 
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  
}

* {
  box-sizing: border-box;
}



img {
  vertical-align: middle;
  max-width: 100%;
  display: inline-block;
  
}


/* Page transition */

.page-transition {
  position: fixed;
  inset: 0;
  background: var(--light-02);
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  visibility: hidden; /* Key fix */
  transition: opacity 0.6s ease-in-out, visibility 0.6s;
}

/* This class is added by the script in the <head> */
.page-is-loading .page-transition,
.page-transition.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Fade animation */

.fade-in {
  opacity: 0; /* Start invisible */
  transform: translateY(24px); /* Start with an upward offset */
  transition: transform 1s ease-in-out, opacity 0.8s ease-in-out; /* Smooth animation */
}

.fade-in-visible {
  opacity: 1; /* Fully visible */
  transform: translateY(0); /* Back to the normal position */
}






/* Selection colors */

::-moz-selection { 
  color: var(--dark);
  background: var(--glow);
}

::selection {
  color: var(--darjk);
  background: var(--glow);
}



/* Global cursor */
/* html, body {
cursor: url('/css/cursor.png') 16 16, auto !important;

} */



/* Link cursor */
a {
  color: var(--dark);
  text-decoration: none;
  display: block;
  
  
}



/* ---------------------------- UTILITY -------------------------------------- */

@font-face {
  font-family: 'Blur Regular';
  src: url('../images/global/blur-regular.woff2') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Blur Bold';
  src: url('../images/global/blur-bold.woff2') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #000000;
  --white: #ffffff;
  --dark: #2F1700;
  --glow: #FFD447;
  --glow-hover: #FAC000;
  --glow-light: #FFEA96; 
  --light: #FFF4CF;
  --light-02: #FFEDB4;
  --border: #E5D6A5;
  --blur-regular: "Blur Regular", sans-serif;
  --blur-bold: "Blur Bold", sans-serif;
  --content-width: 1440px;
}


.hidden, .hide {
  display: none !important;
}

.no-wrap {
  white-space: nowrap;
  
}


.uppercase {
  text-transform: uppercase !important;
}

.underline {
  text-decoration: underline !important;
}

.txt-center {
  text-align: center;
}

.blur-bold {
  font-family: var(--blur-bold);
}

.flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-center {
  align-items: center;
}

.flex-space  {
  justify-content: space-between;
}

.gap-4 {gap: 4px;}
.gap-8 {gap: 8px;}
.gap-12 {gap: 12px;}
.gap-16 {gap: 16px;}
.gap-24 {gap: 24px;}
.gap-32 {gap: 32px;}
.gap-40 {gap: 40px;}
.gap-48 {gap: 48px;}
.gap-64 {gap: 64px;}
.gap-80 {gap: 80px;}
.gap-120 {gap: 120px;}

.mb-2 {margin-bottom: 2px;}
.mb-4 {margin-bottom: 4px;}
.mb-8 {margin-bottom: 8px;}
.mb-12 {margin-bottom: 12px;}
.mb-16 {margin-bottom: 16px;}
.mb-24 {margin-bottom: 24px;}
.mb-32 {margin-bottom: 32px;}
.mb-40 {margin-bottom: 40px;}
.mb-48 {margin-bottom: 48px;}
.mb-80 {margin-bottom: 80px;}






/* ---------------------------- HTML TAGS -------------------------------------- */


body {
  color: var(--dark);
  background-color: var(--light);
  margin: 0;
  font-family: var(--blur-regular), Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
}

main {
  margin: 0;
}

h1 {
  margin: 0;
  font-size: 32px;
  font-weight: 400;
  line-height: 120%;
}

h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 400;
  line-height: 120%;
}

h3 {
  margin: 0;
  font-size: 32px;
  line-height: 120%;
  font-family: var(--blur-bold);
}

h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
}

h5 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
}

h6 {
  margin: 0; 
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
}

p {
  margin: 0;
  line-height: 120%;
  font-size: 20px;
  
}

.p-small {
  font-size: 16px;
  
}

  small {
    font-size: 16px;
  }




/* ---------------------------- HOME PAGE -------------------------------------- */

/* HOME HEADER */


.home-header {
  position: sticky;
  top:0px;
  transform: translateY(0);
  transition: transform 0.45s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
  z-index: 100;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 16px 40px 16px 40px;
  background-color: var(--glow);
}

.home-header .hide {
  transform: translateY(-100%);
  
}

.home-header-links {
  display: flex;
  gap: 16px;
  font-size: 16px;
}

.home-header-link {
  transition: background-color 0.3s ease-out;
}

.home-header-link:hover {
  background-color: var(--light);
}



.home-header-btn {
  background-color: var(--glow-light);
  font-size: 16px;
  font-family: var(--blur-bold);
  padding: 4px 8px;
  border-radius: 8px;
  border: none;
  transition: background-color 0.3s ease-out;
  
}

.home-header-btn:hover {
  background-color: var(--light);  
}


/* HOME CONTAINER */



.home-container {
  position: relative;
  z-index: 2;
}



.home-content{
  background-color: var(--light);
}

/* HOME HERO */


.bg-fix {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--glow);
  z-index: -1;
}

.home-hero {
  position: relative;
  height: calc(100vh - 59px);
  background-color: var(--glow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  
  
}

.home-hero-container {
  padding: 40px 80px 40px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 80px;
  z-index: 1;
  
}

.home-hero-logo {
  width: 90vw;
  max-width: 1000px;
}




.home-hero-icons-top {
  position: absolute;
  top: 0%;
  left: 52%;
  transform: translateX(-50%);
  width: 100%;
  min-width: 1433px; 
  max-width: 1433px;
  will-change: transform;
  pointer-events: none;
  z-index: 2;
}

.home-hero-icons-bottom {
  position: absolute;
  bottom: -1%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  min-width: 1493px; 
  max-width: 1493px;
  will-change: transform;
  pointer-events: none;
  z-index: 2;
}


.home-hero-image-top {
  position: absolute;
  top: 0;
  left: 60%;
  transform: translateX(-50%);
  width: 100%;
  min-width: 1399px; 
  max-width: 1399px;
  will-change: transform;
  pointer-events: none;
  
}

.home-hero-image-bottom {
  position: absolute;
  bottom: 5%;
  left: 44%;
  transform: translateX(-50%);
  width: 100%;
  min-width: 1399px; 
  max-width: 1399px;
  will-change: transform;
  pointer-events: none;
  z-index: 1;
  
}



/* HOME ABOUT */

.home-about {
  padding: 240px 40px 120px 40px; 
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  
}

.home-about h2 {
  line-height: 110%;
  max-width: 960px;
}


.home-btn {
  background-color: var(--glow);
  padding: 12px 24px;
  font-family: var(--blur-bold);
  border-radius: 16px;
  font-size: 20px;
  transition: background-color 0.3s ease-out;
  
  
}

.home-btn:hover {
  background-color: var(--glow-hover);
}

/* HOME WORK */

.home-work {
  padding: 120px 40px 80px 40px; 
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  
}

.home-work-grid {
  width: 100%;
  max-width: var(--content-width);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  column-gap: 40px;
  row-gap: 64px;
  
}

.home-project-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.home-project-thumb {
  border-radius: 24px;
  overflow: hidden;
}

.home-project-title {
  font-family: var(--blur-bold);
  
}


/* HOME SERVICES */

.home-services {
  padding: 80px 40px 80px 40px;
}

.offer-cards-container {
  width: 100%;
  max-width: var(--content-width);
  
}

.offer-card {
  width: 100%;
  min-height: 800px;
  background-color: var(--light-02);
  padding: 40px;
  border-radius: 24px;
  
}

.offer-item-big {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  line-height: 110%;
  margin-bottom: 6px;
}

.offer-item-small {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 16px ;
  line-height: 100%;
  margin-bottom: 8px;
}


/* FAQs*/


.home-faq {
  padding: 80px 40px; 
  display: flex;
  flex-direction: column;
  align-items: center;
  
}

.home-faq-container {
  width: 100%;
  max-width: var(--content-width);
  padding: 40px; 
  background-color: var(--light-02);
  border-radius: 24px;

}

.faq-list {
  max-width: 620px;
  border-top : 1px solid var(--border);
  
}

.faq-item {
  display: flex;
  flex-direction: column;
  padding: 24px 0px;
  border-bottom : 1px solid var(--border);
  
}

.faq-question-container {
  display: flex;
  flex-direction: row;
  gap: 24px ;
  cursor: pointer;

  
}

.faq-question {
  width: 100%;
  font-size: 24px;
}


.faq-toggle {
  transform: rotate(-45deg);
  transition: transform 0.3s ease-in-out;
}


.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease, margin-top 0.3s ease;
}

/* Inner wrapper */
.faq-answer > div {
  overflow: hidden;
}

/* OPEN STATE */
.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
  margin-top: 16px;
}

.faq-item.active .faq-toggle {
  transform: rotate(0deg);
}



/*  WHY */

.why {
  background-image: url('/images/home/city.jpg');
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-container {
  width: 100%;
  max-width: var(--content-width);
  padding: 80px 40px 420px 40px;
  margin-bottom: 120px;
  display: flex;
  
  flex-direction: row;
  justify-content: space-between;
  
}

.why-content {
  width: 100%;
  max-width: 620px;
}



/* ---------------------------- ABOUT PAGE -------------------------------------- */




/* ---------------------------- PROJECT PAGE -------------------------------------- */


.project-container {
  z-index: 2;
  position: relative;
}


/* PROJECT HEADER */

.project-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px 16px 40px;
  background-color: var(--light);
  position: sticky;
  top:0px;
  z-index: 1;
}


.project-header-links {
  display: flex;
  gap: 16px;
  font-size: 16px;
}

.project-header-link {
  transition: background-color 0.3s ease-out;
}

.project-header-link:hover {
  background-color: var(--glow);
}



.project-header-btn {
  background-color: var(--glow-light);
  font-size: 16px;
  font-family: var(--blur-bold);
  padding: 4px 8px;
  border-radius: 8px;
  border: none;
  transition: background-color 0.3s ease-out;
  
}

.project-header-btn:hover {
  background-color: var(--glow);  
}

/* PROJECT CONTENT */

.project-content {
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 80px;
  background-color: var(--light);
  padding: 40px 40px 80px 40px;
  
}



.project-info {
  position: sticky;
  top: 104px;
  max-width: 380px;
  min-width: 320px;
  
  
}

.project-title {
  margin-bottom: 12px;
  font-family: var(--blur-bold);
  font-size: 24px;
  line-height: 120%;
  
  
}

.project-description {
  margin-bottom: 32px;
}

.project-categories {
font-size: 14px;
}

.project-right {
  max-width: 1280px;
  gap: 96px;
  display: flex;
  flex-direction: column;
  
}

/* ---------------------------- CONTACT PAGE -------------------------------------- */


.contact-body {
  display: flex;
  flex-direction: row;
  height: 100vh;
}

.contact-left {
  width: 100%;
  background-color: var(--glow);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
}

.contact-header{
  max-width: 350px;
  font-size: 24px;
  line-height: 110%;
}



.contact-right {
  width: 100%;
  background-color: var(--light);
  padding: 20px 40px 40px 40px;
}


/* ---------------------------- FOOTER -------------------------------------- */


/* .footer-spacer {
height: 100vh;

} */

.footer {
  position: sticky;
  bottom: 0;
  z-index: 1;
  height: 100vh;  
  background-color: var(--glow);
  padding: 40px 40px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  
  
}

.footer-icon {
  width: 120px;
}


.footer-cta {
  font-size: 56px;
  line-height: 100%;
  cursor: none !important;
  transition: color 0.3s ease-out;
  
}

.footer-cta:hover {
  color: #A17B00;
}

.footer-btn {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);  /* center on cursor */
  pointer-events: none; /* so it doesn’t block mouse events */
  opacity: 0;
  transition: opacity 0.2s ease-out ;
  background-color: var(--glow-light);
  font-family: var(--blur-bold);
  font-size: 32px;
  border-radius: 16px;
  padding: 16px 24px;
  border: none;
  z-index: 2;
  
}


.footer-bottom {
  gap:24px;
  max-width: var(--content-width);
}

.footer-logo {
  width: 100%;
  max-width: 1200px;
}

.footer-txt {
  gap: 8px;
}


/* ---------------------------- RESONSIVE STYLES | LARGE  -------------------------------------- */


@media (min-width: 1700px) {
  
  
  
  
}


/* ---------------------------- RESONSIVE STYLES | TABLET  -------------------------------------- */

@media only screen and (max-width: 1100px) {
  
  /* ---------------------------- HOME PAGE - Tablet -------------------------------------- */
  
  
  
  
  
  
  
  /* ---------------------------- PROJECTS PAGE - Tablet -------------------------------------- */
  

.project-right {
  gap: 40px
}
  
  /* ---------------------------- CONTACT PAGE - Tablet -------------------------------------- */
  
  
  
  
}


/* ---------------------------- RESONSIVE STYLES | MOBILE  -------------------------------------- */


@media only screen and (max-width: 760px) {
  
  

/* UTILITY */
  
  .hidden-m, .hide-m, .m\:hide {
    display: none !important;
  }
  
.m\:flex-row {
  flex-direction: row;
}

.m\:flex-col {
  flex-direction: column;
}

h4 {
  font-size: 16px;
}

.m\:gap-4 {gap: 4px;}
.m\:gap-8 {gap: 8px;}
.m\:gap-12 {gap: 12px;}
.m\:gap-16 {gap: 16px;}
.m\:gap-24 {gap: 24px;}
.m\:gap-32 {gap: 32px;}
.m\:gap-40 {gap: 40px;}
.m\:gap-48 {gap: 48px;}
.m\:gap-64 {gap: 64px;}
.m\:gap-80 {gap: 80px;}
.m\:gap-120 {gap: 120px;}

.m\:mb-2 {margin-bottom: 2px;}
.m\:mb-4 {margin-bottom: 4px;}
.m\:mb-8 {margin-bottom: 8px;}
.m\:mb-12 {margin-bottom: 12px;}
.m\:mb-16 {margin-bottom: 16px;}
.m\:mb-24 {margin-bottom: 24px;}
.m\:mb-32 {margin-bottom: 32px;}
.m\:mb-40 {margin-bottom: 40px;}
.m\:mb-48 {margin-bottom: 48px;}
.m\:mb-80 {margin-bottom: 80px;}

  
  
  /* ---------------------------- HOME PAGE | Mobile -------------------------------------- */
  
  /* Hero */
  
  .home-hero-title {
    font-size: 24px;
    max-width: 280px;
    line-height: 110%;
  }
  

/* HOME ABOUT - Mobile */

  .home-about {
    padding: 40px 24px 40px 24px;
    align-items: flex-start;
    gap: 24px
  }


  .home-about h2 {
    font-size: 28px;
    text-align: left;
    line-height: 120%;
  }

.home-btn {
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 12px;
}

  


/* HOME WORK - Mobile  */


.home-work {
  padding: 40px 24px; 
  gap: 32px;
  align-items: flex-start;
}

.home-work-title {
  font-size: 28px;
  text-align: left;
  line-height: 110%;
  max-width: 280px;
  
}

.home-work-grid{
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
  gap: 16px;
  scroll-snap-type: x mandatory;
  width: 100vw;
  margin-left: -24px; /* Adjust based on your page padding */
  padding-left: 24px;
  padding-right: 24px
  
}

.home-work-grid > * {
  flex: 0 0 80%; /* Each card takes up 80% of screen width */
  max-width: 300px; /* Keeps cards from getting too huge on tablets */
  scroll-snap-align: start;
  margin-left: -24px; /* Adjust based on your page padding */
  padding-left: 24px;
}

  .home-work-grid::-webkit-scrollbar {
  display: none; /* Hides scrollbar in Chrome/Safari/Edge */
}
.home-work-grid {
  -ms-overflow-style: none;  /* Hides scrollbar in IE/Edge */
  scrollbar-width: none;  /* Hides scrollbar in Firefox */
}

.home-project-card {
  gap: 12px;
}

.home-project-title {
  font-size: 16px;
}

.home-project-thumb {
  border-radius: 12px;
  overflow: hidden;
}



/* HOME SERVICES - Mobile  */

.home-services {
  padding: 40px 24px;;
  align-items: flex-start;

}

.offer-cards-container {
  gap: 16px;
}

.offer-title {
  font-size: 28px;
  margin-bottom: 32px;
}

.offer-card-title {
  text-align: left;
  font-size: 22px;
  margin-bottom: 24px;
}


.offer-card {
  width: 100%;
  padding: 32px 24px 24px 24px;
  border-radius: 12px;
  min-height: max-content;
  
}

.offer-card-info {
  margin-bottom: 32px;
}

.offer-item-big {
  align-items: self-start;
  margin-bottom: 8px;
}

.offer-item-big p {
  font-size: 16px;
  line-height: 110%;
}

.offer-item-big >img {
  margin-top: 4px;
  width: 12px;
}

.offer-item-small {
  align-items: self-start;
}

.offer-item-small >img {
  margin-top: 4px;
  width: 10px
}

.offer-item-small >p {
  font-size: 14px;
}

.extra-info {
  align-items: self-start;
}

.extra-info p { 
  max-width: 300px;
  gap: 2px
}

/* FAQ  - Mobile  */



.home-faq {
  padding: 40px 24px;
}


.home-faq-container{
  padding: 32px 24px 24px 24px;
  border-radius: 12px;
}

.faq-title {
  font-size: 32px;
}

.faq-toggle {
  width: 16px;
}

.faq-question {
  font-size: 20px;
  line-height: 110%;
}

.faq-item {
  padding: 16px 0px;

}

.faq-answer {
  margin-top: 8px;
}

.faq-answer p {
  font-size: 16px;
}


/* WHY - Mobile  */

.why {
  background-size: 300% auto;
}

.why-container {
  flex-direction: column;
  padding: 40px 24px 180px 24px; 
}

.why-h2 {
  font-size: 28px;
  margin-bottom: 24px;
}

.why-txt {
  font-size: 16px;
}


  /* ---------------------------- PROJECTS PAGE | Mobile -------------------------------------- */
  

  .project-header {
    padding: 16px 24px;
  }

.project-content {
  padding: 40px 24px; 
    flex-direction: column;
    gap: 40px
  }

.project-description {
    margin-bottom: 24px;
  }


  .project-right {
    gap: 24px;
  }

  
  /* ---------------------------- CONTACT PAGE | Mobile -------------------------------------- */
  .contact-body {
    flex-direction: column;
  }
  
  .contact-left {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: space-between;
  }
  
  .contact-header {
    text-align: center;
  }
  
  .contact-logo {
    margin-bottom: 32px
  }
  
  
  /* ---------------------------- FOOTER | Mobile -------------------------------------- */
  
  .footer {
    padding: 40px 24px 24px 24px;
  }

  .footer-icon {
    width: 80px;
  }

  .footer-cta {
    font-size: 32px;
    max-width: 292px;
    text-align: center;
  }
  
.footer-bottom {
  gap: 12px;
}

  small {
    font-size: 12px;
  }
} 