:root {
  --text-main: #0f172a;
  --text-muted: #64748b;
  --black: #000000;
  --white: #ffffff;
  --card-dark: rgba(255, 255, 255, 0.06);
  --card-dark-border: rgba(255, 255, 255, 0.1);
  --card-dark-hover: rgba(255, 255, 255, 0.09);
  --accent-soft: rgba(255, 255, 255, 0.14);
  --main-desc-size: 2vw;
  --heading-size: calc(var(--main-desc-size) * 0.9);
  --content-size: calc(var(--main-desc-size) * 0.75);
}

::-webkit-scrollbar-thumb {
  background-color: #000000;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #000000;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", sans-serif;
  min-height: 100%;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  background: #ffffff;
  color: var(--text-main);
}

* {
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: #686868 #000000;
}

a {
  text-decoration: none;
}

.container {
  padding: 0 7%;
}

.section_title {
  font-size: 2.5rem;
  margin: 0 0 44px;
  text-align: start;
}

.no_select {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.whatsapp_btn {
  z-index: 100;
  position: fixed;
  bottom: 3rem;
  right: 7%;
  cursor: pointer;
  height: 36px;
  width: 36px;
  border-radius: 50%;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
  animation: pulse 2s infinite;
}

@media (max-width: 500px) {
  .section_title {
    font-size: 1.25rem;
  }

  .whatsapp_btn {
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

/* Main ================================================= */

.main__bg_text_block {
  position: relative;
  isolation: isolate;
  min-height: 100dvh;
  color: white;
}

.main__bg_text_block::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url("assets/compressed/new-bg_com.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

body.bg-full .main__bg_text_block::before {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url("assets/new-bg.webp");
}

.main__header {
  position: fixed;
  width: 100%;
  box-sizing: border-box;
  background-color: #0000007a;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  z-index: 50;
}

.main__header_logo_link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
/* 
.main__header_logo {
  display: block;
  height: 40px;
  width: auto;
} */

.main__header_lang_container {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.main__header_lang_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2rem;
  padding: 0 0.5rem;
  border-radius: 6px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  -webkit-tap-highlight-color: transparent;
}

.main__header_lang_link:active {
  transform: scale(0.98);
}

@media (max-width: 500px) {
  .main__header {
    height: auto;
    min-height: 3rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .main__header_logo {
    height: 34px;
  }

  .main__header_lang_container {
    gap: 0.375rem;
  }

  .main__header_lang_link {
    min-width: 2rem;
    height: 1.9rem;
    padding: 0 0.45rem;
    font-size: 0.8rem;
  }
  .main__bg_text_block::before {
    background-image:
      linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
      url("assets/compressed/red-bg_com.webp");
  }
}

@media (max-width: 500px) {
  body.bg-full-mobile .main__bg_text_block::before {
    background-image:
      linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
      url("assets/red-bg.webp");
  }
}

.main__logo_des {
  min-height: 100dvh;
  position: relative;
}

.main__logo_des_container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 300px;
}

.main__logo {
  width: 12vw;
}

.main__desc {
  font-size: var(--main-desc-size);
  text-align: center;
  padding-top: 1rem;
  margin: 0;
  color: #d8b66e;
  text-transform: uppercase;
  font-weight: 500;
  text-shadow:
    0 0 1px #00000080,
    0 0 2px #00000080;
}

.main__next_btn {
  position: absolute;
  /* color: #d8b66e; */
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: transform 0.2s ease;
  animation: pulse 2s infinite;
}

@media (max-width: 500px) {
  :root {
    --main-desc-size: 1.25rem;
  }

  .main__logo {
    width: 4.5rem;
  }

  .main__desc {
    font-weight: 500;
    line-height: 1.45;
  }
}

/* Work ================================================= */

.work__container {
  padding-top: 64px;
  padding-bottom: 72px;
  box-sizing: border-box;
}

.work__header {
  text-align: center;
  margin-bottom: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.work__eyebrow {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.6;
  font-weight: 400;
}

.work__main_title {
  font-size: var(--heading-size);
  font-weight: 600;
  font-style: normal;
  margin: 0;
  letter-spacing: 0.03em;
  line-height: 1.15;
}

.work__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 300px;
  margin-top: 4px;
  opacity: 0.45;
}

.work__divider::before,
.work__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: currentColor;
}

.work__divider_gem {
  font-size: 0.55rem;
  flex-shrink: 0;
}

.work__collage_container {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  justify-content: center;
}

.work__collage_item {
  flex: 0 0 calc(25% - 11px);
  max-width: calc(25% - 11px);
}

.work__card_inner {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 3 / 4;
  cursor: pointer;
}

.work__card_inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.45s ease,
    opacity 0.35s ease,
    filter 0.35s ease;
}

.work__card_inner img.is-swapping {
  opacity: 0.72;
  filter: blur(2px);
}

.work__card_inner:hover img {
  transform: scale(1.06);
}

.work__card_overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 52px 14px 14px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, transparent 100%);
  pointer-events: none;
}

.work__collage_item_title {
  color: #fff;
  margin: 0;
  font-size: var(--content-size);
  font-weight: 400;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .work__collage_item {
    flex: 0 0 calc(50% - 7px);
    max-width: calc(50% - 7px);
  }
}

@media (max-width: 500px) {
  .work__container {
    padding-top: 44px;
    padding-bottom: 52px;
  }

  .work__header {
    margin-bottom: 32px;
    gap: 8px;
  }

  .work__eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
  }

  .work__collage_container {
    gap: 10px;
  }

  .work__collage_item {
    flex: 0 0 calc(50% - 5px);
    max-width: calc(50% - 5px);
  }

  .work__card_overlay {
    padding: 36px 10px 10px;
  }
}

/* Combined section ==================================== */

.details__section {
  width: 100%;
  /* background:
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.08),
      transparent 28%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 255, 255, 0.06),
      transparent 24%
    ),
    #000000; */
  /* background-image:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url("assets/new-bg.webp"); */
  color: #ffffff;
  padding: 72px 0 80px;
}

.details__wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.details__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.details__heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.details__eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.details__title {
  margin: 0 0 12px;
  font-size: var(--heading-size);
  line-height: 1.15;
  font-weight: 600;
  color: #ffffff;
}

.details__desc {
  margin: 0;
  max-width: 700px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--content-size);
}

.details__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.info__card {
  min-width: 0;
  padding: 24px 22px;
  border-radius: 12px;
  background: var(--card-dark);
  border: 1px solid var(--card-dark-border);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.info__card:hover {
  transform: translateY(-2px);
  background: var(--card-dark-hover);
  border-color: rgba(255, 255, 255, 0.14);
}

.info__title {
  margin: 0 0 10px;
  font-size: var(--heading-size);
  font-weight: 600;
  line-height: 1.35;
  color: #ffffff;
  text-align: center;
}

.info__small_title {
  margin: 18px 0 10px;
  font-size: var(--heading-size);
  font-weight: 500;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
}

.info__subtitle {
  margin: 0 0 14px;
  font-size: var(--content-size);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.info__text {
  margin: 0 0 12px;
  font-size: var(--content-size);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.info__list {
  margin: 0;
  padding-left: 18px;
  font-size: var(--content-size);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.8;
}

.info__list li + li {
  margin-top: 6px;
}

/* Footer ============================================== */

.site__footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.site__footer_card {
  padding: 24px 22px;
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.site__footer_label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

.site__footer_title {
  margin: 0 0 12px;
  font-size: var(--heading-size);
  font-weight: 600;
  line-height: 1.3;
  color: #ffffff;
  text-align: center;
}

.site__footer_text {
  margin: 0 0 8px;
  font-size: var(--content-size);
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.site__footer_btn_container {
  display: flex;
  gap: 1rem;
}

.site__footer_btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(
    145deg,
    #e99d05a1,
    #f4af00a4,
    #ffdd02a1,
    #f8cf198c,
    #e99d057f
  );
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    box-shadow 0.2s ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  animation: pulse 2s infinite;
}

.site__footer_note {
  color: #d8b66e;
  font-size: 1rem;
  font-weight: 700;
}

.site__footer_btn:hover {
  opacity: 0.94;
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.14);
}

.site__footer_btn:active {
  transform: scale(0.98);
}

/* Responsive ========================================== */

@media (max-width: 991px) {
  .details__grid,
  .site__footer {
    grid-template-columns: 1fr;
  }

  .details__section {
    padding: 60px 0 68px;
  }
}

@media (max-width: 767px) {
  .details__section {
    padding: 48px 0 56px;
  }

  .details__wrapper {
    gap: 18px;
  }

  .info__card,
  .site__footer_card {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .site__footer_btn {
    width: 100%;
    min-height: 42px;
  }
}

@media (max-width: 480px) {
  .info__card,
  .site__footer_card {
    padding: 16px 14px;
  }

  .info__list {
    padding-left: 16px;
  }
  .site__footer_btn_container {
    flex-direction: column;
    gap: 0.25rem;
  }
}

/* Animations ========================================== */

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.35);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes pulse_black {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.35);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
