/* Root Variables */
:root {
  --font-primary: "PP Object Sans";
  --font-secondary: "Druk Wide Trial";
  --color-text: #fff;
  --color-text-secondary: #eaeaea;
  --color-bg: #000;
  --color-bg-secondary: #131416;
  --color-callout: #24262a;
}

/* Global Styles */


html,
body {
  width: 100%;
  height: 100%;
  font-family: var(--font-primary);
  background-color: var(--color-bg);
 
}

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;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--color-bg);
}

.callout {
  width: max-content;
  padding: 0.5em 1em;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.125);
  border-radius: 12px;
  margin-bottom: 2em;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


a,
p,
span {
  text-decoration: none;
  font-size: 13px;
  color: var(--color-text);
}

/* Typography */
h2 {
  font-weight: 500;
  font-size: 80px;
  color: var(--color-text-secondary);
  letter-spacing: -2px;
  line-height: 100%;
}

h1,
h2 {
  color: var(--color-text);
  font-family: var(--font-secondary);
  text-transform: uppercase;
  text-align: center;
  line-height: 100%;
}

h1 {
  font-size: 10vw;
}

h2 {
  font-size: 3vw;
}
/* project */
section.card {
  width: 100vw;
  height: 100vh;
}

.card.scroll {
  position: relative;
}

.project {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 85%;
  height: 75%;
  display: flex;
}

.project-copy {
  position: relative;
  flex: 1.75;
  border-radius: 12px;
  padding: 2em;
  background: var(--color-bg-secondary);
}

.project-img {
  flex: 3;
  border-radius: 12px;
  overflow: hidden;
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.project-header h3 {
  color: var(--color-text);
  text-transform: uppercase;
  font-family: var(--font-secondary);
  font-size: 40px;
  line-height: 100%;
}

.project-header p {
  padding: 0 !important;
}

.project-copy p {
  padding: 1em 0;
}

.project-cta {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 1em;
  text-transform: uppercase;
}

.project-cta-row {
  width: 100%;
  display: flex;
  gap: 1em;
}

.cta {
  flex: 1;
  padding: 0.5em 1em;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.125);
}

.cta span {
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .project {
    flex-direction: column;
  }

  .project-header h3 {
    font-size: 24px;
  }
}
/* about */
.about {
  width: 100%;
  height: max-content;
  background: var(--color-bg);
}

.about-header {
  width: 100%;
  padding: 20em 0 10em 0;
  display: flex;
}

.about-col {
  padding: 1em;
}

.about-col:nth-child(1) {
  flex: 2;
}

.about-col:nth-child(2) {
  flex: 4;
}

.about-col h2 {
  width: 85%;
  color: rgba(255, 255, 255, 0.125);
  transition: color 0.3s;
}

.about-copy {
  width: 50%;
  padding: 10em 1em 5em 1em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .about-copy {
    width: 100%;
  }

  .about-header {
    padding: 5em 0 5em 0;
    flex-direction: column;
  }

  .about-col h2 {
    width: 100%;
    font-size: 64px;
  }

  .about-copy {
    padding: 5em 1em 10em 1em;
  }
}
/* promo */
.promo {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 1.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.promo-bg {
  position: absolute;
  top: -25%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.promo-header {
  position: relative;
  z-index: 1;
}

.promo h1,
.promo h2 {
  color: var(--color-text);
  font-family: var(--font-secondary);
  text-transform: uppercase;
  text-align: center;
  line-height: 100%;
  margin: 0;
}

.promo h2 {
  font-size: 3vw;
  letter-spacing: 0;
  line-height: 105%;
}

.promo h1 {
  margin: 0;
  font-size: 10vw;
}

@media (max-width: 900px) {
  .promo {
    height: 70vh;
  }

  .promo h2 {
    font-size: 4vw;
  }

  .promo h1 {
    font-size: 12vw;
  }
}
/* about */
.about {
  width: 100%;
  height: max-content;
  background: var(--color-bg);
}

.about-header {
  width: 100%;
  padding: 20em 0 10em 0;
  display: flex;
}

.about-col {
  padding: 1em;
}

.about-col:nth-child(1) {
  flex: 2;
}

.about-col:nth-child(2) {
  flex: 4;
}

.about-col h2 {
  width: 85%;
  color: rgba(255, 255, 255, 0.125);
  transition: color 0.3s;
}

.about-copy {
  width: 50%;
  padding: 10em 1em 5em 1em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .about-copy {
    width: 100%;
  }

  .about-header {
    padding: 5em 0 5em 0;
    flex-direction: column;
  }

  .about-col h2 {
    width: 100%;
    font-size: 64px;
  }

  .about-copy {
    padding: 5em 1em 10em 1em;
  }
}
/* services */
.services {
  width: 100%;
  padding: 6em 1.5em 10em 1.5em;
  background: var(--color-bg);
  display: flex;
}

.services-col:nth-child(1) {
  flex: 2;
}

.services-col:nth-child(2) {
  flex: 4;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.services-row {
  width: 85%;
  display: flex;
  gap: 0.5em;
}

.service-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.125);
  border-radius: 8px;
}

.service-icon {
  position: relative;
  top: -10%;
  font-size: 36px;
  color: #fff;
}

.service-title {
  position: absolute;
  bottom: 15%;
}

@media (max-width: 900px) {
  .services {
    flex-direction: column;
  }

  .services-row {
    width: 100%;
  }
}
/* interactive section */


#interactive-section {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 900px; /* Adjust as needed */
  background-color: black;
  overflow: hidden;
}

#interactive-section .item {
  position: absolute;
  width: 200px; /* Adjust size */
  height: 250px; /* Adjust size */
  overflow: hidden;
  transform-origin: center;
  background: #fff;
}

#interactive-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}
.interactive-item {
  position: absolute;
  width: 200px;
  height: 225px;
  overflow: hidden;
  background: #fff;
  transform-origin: center;
}

.interactive-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}
@media (max-width:800) {
  #interactive-section .item {
    width: 100px;
    height: auto;
  }
  
}
/* prices */
.prices {
  width: 100%;
  height: max-content;
  background: var(--color-bg-secondary);
  padding-bottom: 12em;
  border-radius: 12px;
}

.prices-header {
  position: relative;
  width: 100%;
  padding: 20em 0 10em 0;
  display: flex;
  z-index: 2;
}

.prices-col {
  padding: 1em;
}

.prices-col:nth-child(1) {
  flex: 2;
}

.prices-col:nth-child(2) {
  flex: 4;
}

.prices-col h2 {
  width: 85%;
  color: rgba(255, 255, 255, 0.125);
  transition: color 0.3s;
}

.prices-copy {
  width: 50%;
  padding: 10em 1em 2em 1em;
  text-transform: uppercase;
}

.prices-cta {
  width: 70%;
  padding: 4em 0;
  margin: 0 auto;
  background: #ff6b00;
  background: linear-gradient(to right, #fc002d, #ff6b00);
  border-radius: 8px;
  box-shadow: none;
  transition: 0.3s;
}

.prices-cta:hover {
  -webkit-box-shadow: 0px 0px 300px 0px rgba(255, 106, 0, 0.75);
  -moz-box-shadow: 0px 0px 300px 0px rgba(255, 106, 0, 0.75);
  box-shadow: 0px 0px 300px 0px rgba(255, 106, 0, 0.75);
}

.prices-cta h1 {
  font-family: var(--font-secondary);
  font-size: 2vw;
  text-transform: uppercase;
  text-align: center;
}

@media (max-width: 900px) {
  .prices-copy {
    width: 100%;
  }

  .prices-header {
    padding: 5em 0 5em 0;
    flex-direction: column;
  }

  .prices-cta h1 {
    font-size: 4vw;
  }

  .prices-col h2 {
    width: 100%;
    font-size: 64px;
  }

  .prices-copy {
    padding: 5em 1em 10em 1em;
  }
}

/* btn */
/* magnetic btn */
.award-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}


.magnetic-area {
  padding: 100px;
  display: inline-block;
  border-radius: 50%;
}

.btn {
  position: relative;
  background-color: #fff; /* Set default background to white */
  color: #000000; /* Set default text color to black */
  height: 200px;
  width: 200px;
  border-radius: 50%;
  border: 1px dashed var(--color-accent);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s, color 0.3s; /* Smooth transition for background and text color */
}

.btn:hover {
  background-color: #000; /* Change background to black on hover */
  color: #fff; /* Change text color to white on hover */
}

.btn:hover p {
  color: #fff; /* Ensure text color is white on hover */
}

.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: var(--color-accent);
  mix-blend-mode: difference;
  z-index: 0;
  border-radius: 50%;
  clip-path: circle(0% at 50% 50%);
  transition: clip-path 0.3s; /* Smooth transition for clip-path */
}

.btn:hover::after {
  clip-path: circle(50% at 50% 50%);
}
/* clock */
nav {
  display: flex;
  justify-content: center; /* Center the site-logo horizontally */
  align-items: center; /* Center content vertically */
  position: relative; /* To position the clock content absolutely */
  height: 80px; /* Adjust as needed */
  padding: 0 20px; /* Optional padding */
  background-color: #000000; /* Example background color */
}

/* Container for centering content */
.nav-container {
  display: flex;
  flex: 1; /* Allow this container to take up available space */
  justify-content: center; /* Center content horizontally */
}

/* Style for the site logo */
.site-logo {
  font-size: 24px; /* Adjust font size as needed */
  color: #fff; /* Adjust color as needed */
  margin: 0 20px; /* Spacing between the logo and the clock */
}

/* Style for the clock section */
.clock {
  position: absolute;
  left: 20px; /* Adjust spacing from the left edge */
  top: 50%;
  transform: translateY(-50%); /* Center vertically */
  color: #fff; /* Adjust color as needed */
}

/* Style for the clock text */
.clock p {
  margin: 0; /* Remove default margin */
  font-size: 16px; /* Adjust font size as needed */
}