/* ----------------------------------
   HoneyCoin Fonts
-----------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@font-face {
    font-family: 'PPTelegraf';
    src: url('../../assets/webfont/PPTelegraf-UltraLight.otf');
    font-weight: 200;
}
@font-face {
    font-family: 'PPTelegraf';
    src: url('../../assets/webfont/PPTelegraf-Regular.otf');
    font-weight: 400;
}
@font-face {
    font-family: 'PPTelegraf';
    src: url('../../assets/webfont/PTelegraf-Medium.ttf');
    font-weight: 500;
}
@font-face {
    font-family: 'PPTelegraf';
    src: url('../../assets/webfont/PTelegraf-Semibold.ttf');
    font-weight: 600;
}
@font-face {
    font-family: 'PPTelegraf';
    src: url('../../assets/webfont/PTelegraf-Bold.ttf');
    font-weight: 700;
}
@font-face {
    font-family: 'PPTelegraf';
    src: url('../../assets/webfont/PPTelegraf-UltraBold.otf');
    font-weight: 800;
}

/* ----------------------------------
   HoneyCoin Root Variables
-----------------------------------*/
:root {
  /* Colors */
  --color-brand-primary: #134E64;
  --color-brand-accent: #F49B0B;
  --color-brand-muted: #ECF1F3;
  --color-brand-theme: #165C76;
  
  --color-text-main: #070707;
  --color-text-primary: #010203;
  --color-text-secondary: #061920 ;
  --color-text-tertiary: #273135;
  --color-text-brown-dark: #464646;

  --color-base-dark: #38474D;
  --color-base-light: #606C70;
  
  --color-white: #ffffff;
  --color-black: #000000;
  --color-grey-light: #E6E6E6;
  --color-grey-medium: #ECECEC;
  --color-green-primary: #21AB54;
  --color-green-secondary: #CFF3DD;
  --color-green-tertiary: #E7F7ED;
  --color-primary-orange: #F8A720;

  --surface-1: #F6F8F9;
  --surface-2: #EDEDEE;
  --surface-3: #F2F6F7;
  --surface-4: #F5F7F8;
  --surface-dark: #020202;

  /* Font Families */
  --font-family-inter: "Inter", sans-serif;
  --font-family-telegraf: 'PPTelegraf';
}

/* -----------------------------
   HoneyCoin CSS Reset
--------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-family: sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
  margin: 0;
}

body {
  font-family: var(--font-family-inter);
  line-height: 1.6;
  color: var(--color-base-dark);
  background-color: var(--color-white);
  margin: 0;
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  display: block;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  vertical-align: baseline;
  display: inline-block;
}

::selection {
    color: var(--color-white);
    background: var(--color-brand-primary);
}

a {
  text-decoration: none;
  transition: all 0.7s ease 0s;
  color: inherit;
}

a:active, a:hover {
  outline: 0;
}
div:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: none;
}
/* ------------------------------------
   Form Controls
--------------------------------------*/
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
    height: auto;
}
input {
  line-height: normal;
}
input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="search"] {
  -webkit-appearance: none;
}
input[type="search"]::-webkit-search-cancel-button, 
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
input::placeholder, select::placeholder, textarea::placeholder {
  color: #95949B;
}

.text-center { text-align: center; }

/* ------------------------------------
   HoneyCoin Layout Helpers 
--------------------------------------*/
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .container {
    padding: 0 22px;
  }
}
@media (min-width: 1500px) {
  .container {
    max-width: 1580px;
  }
}

/* Section Defaults */
.default-section-wrapper {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    padding: 100px 0;
    width: 100%;
}

.default-content-gap {
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   gap: 60px;
}

/* ------------------------------------
   HoneyCoin Typography Basics
--------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.24px;
  line-height: 1.2;
}

p {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.16px;
    margin-bottom: 10px;
    font-weight: 300;
}

ul {
  padding-left: 18px;
  margin: 10px 0;
}
ul li {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.16px;
    padding: 4px 0;
    font-weight: 300;
}

/* ------------------------------------
   HoneyCoin Buttons
--------------------------------------*/
button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  border: none;
  overflow: visible;
  transition: all 0.7s ease 0s;
}
button, select {
  text-transform: none;
}
button, html input[type="button"], input[type="reset"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled], html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* Custom Button */
.custom-btn {
    display: flex;
    padding: 12px 20px;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.28px;
    font-weight: 500;
    position: relative;
    overflow: hidden; 
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}
.custom-btn::before {
  content: "";
  position: absolute;
  top: 100%; 
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: #161616;  */
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1; 
}
.custom-btn:hover::before {
  transform: translateY(-100%); 
}
.btn-rounded { border-radius: 8px; }
.btn-pill { border-radius: 38px; }
.custom-btn img {
  width: 18px;
  transition: transform 0.5s ease;
}
.custom-btn:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.custom-btn:hover img {
    transform: translateX(10px);
}
.button-theme {
    background: var(--color-brand-primary);
    color: var(--color-white);
}
.button-theme::before {
    background-color: #161616; 
}
.button-theme-secondary {
  background: var(--color-brand-muted);
  color: var(--color-brand-primary);
}
.button-theme-secondary::before {
    background: #dbe3e6;
}
.button-theme-dark {
  background: linear-gradient(0deg, #1E2F35 0%, #1E2F35 100%), #ECF1F3;
  color: var(--color-white);
}
.button-theme-dark::before {
    background-color: #0e1e23; 
}
.button-white {
  background: var(--color-white);
  color: var(--color-text-primary);
  transition: inherit
}
.button-white:hover {
  padding: 12px 26px;
  transform: translateY(-2px);
}

.button-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.28px;
  font-weight: 500;
}
.link-theme {
  color: var(--color-brand-primary);
}
.link-white {
  color: var(--color-white);
}
.button-link img {
  width: 18px;
  transition: transform 0.5s ease;
}
.button-link:hover img {
    transform: translateX(10px);
}

.inline-button-area {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.inline-button-area .custom-btn {
  padding: 12px 30px;
}
/* ------------------------------------
   Global Use
--------------------------------------*/
.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.w-full { width: 100%; }
.w-max { width: max-content; }
.w-fit { width: fit-content;}
.h-full { height: 100%; }

.cover-background {
   background-repeat: no-repeat;
   background-size: cover;
   background-position: center;
}

/* ------------------------------------
   HoneyCoin Reusable
--------------------------------------*/
/* Headline Area */
.headline-area {
    display: flex; 
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.mid-headline {
    justify-content: center;
    text-align: center;
    margin: 0 auto;
}
.headline-area h1 {
    font-size: 60px;
    line-height: 68px;
    font-family: var(--font-family-telegraf);
    font-weight: 800;
}
.headline-area h2 {
    font-size: 44px;
    line-height: 50px;
    font-family: var(--font-family-telegraf);
    font-weight: 700;
}
.headline-area h3 {
    font-size: 36px;
    line-height: 44px;
    font-family: var(--font-family-inter);
    font-weight: 500;
}
.head-color-dark h1 { color: var(--color-text-main); }
.head-color-dark h2 { color: var(--color-text-primary); }
.head-color-dark h3 { color: var(--color-text-tertiary); }
.head-color-light h1, .head-color-light h2, .head-color-light h3 { color: var(--color-white); }
.head-color-light p { color: var(--color-white); }

/* Header Top Sub Tag */
.head-top-tag {
    border-radius: 30px;
    padding: 8px 16px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    line-height: 16px;
    font-weight: 400;
    letter-spacing: -0.13px;
}
.h-tag-light {
    color: #688E9C;
    border: 1px solid #D9E3E6;
    background: #FAFBFB;
}
.h-tag-medium {
    color: var(--color-brand-primary);
}
.h-tag-dark {
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.10);
}
.h-tag-color-black {
    color: #06151B;
    border: 1px solid rgba(6, 21, 27, 0.15);
    background: var(--color-white);
}

.h-tag-plain {
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    letter-spacing: -0.13px;  
    padding: 8px 0;
}

/* ------------------------------------
   Animations
--------------------------------------*/
.scroll-animate {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.scroll-animate.in-view {
    opacity: 1;
    transform: translateY(0);
}

.marquee-towards-left {
  animation: marquee-left 35s linear infinite;
}
.marquee-towards-right {
  animation: marquee-right 35s linear infinite;
}
@keyframes marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.animated {
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

.slide-up { animation-name: slideUp; }
.slide-down { animation-name: slideDown; }
.slide-left { animation-name: slideInLeft; }
.slide-right { animation-name: slideInRight; }
.zoom-out { animation-name: zoomOut; }
.fade-in { animation-name: fadeIn; }
.scale-in { animation-name: scaleIn; }
 
.slide-left-to-right {
  animation: slideLeftToRight 0.4s ease-out forwards;
}

@keyframes slideLeftToRight {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}
.float {
  animation: float 6s ease-in-out infinite;
}
.float-slow { animation-duration: 9s; }
.float-fast { animation-duration: 4.5s; }
.float-delay { animation-delay: 1.5s; }

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}


/* ------------------------------------
   Footer & Main Wrapper
--------------------------------------*/
.main-wrapper {
    z-index: 2; 
    background-color: var(--color-white);
    position: relative;
    margin-bottom: 74vh; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.1); 
}

.footer {
    height: 76vh;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    position: fixed; 
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1; 
}


/* ------------------------------------
   Responsive Utilities
--------------------------------------*/
.mobile-view {
    display: none;
}
@media (max-width: 768px) {
    .desktop-view {
       display: none;
    }
    .mobile-view {
        display: block;
    }

    /* Global media */
    .default-section-wrapper {
      padding: 60px 0;
    }
    .default-content-gap {
      gap: 40px;
    }
    .headline-area h1 {
      font-size: 32px;
      line-height: 42px;
    }
    .headline-area h2 {
      font-size: 24px;
      line-height: 34px;
    }
    .headline-area h3 {
      font-size: 20px !important;
      line-height: 28px !important;
    }
    p, ul li, .custom-btn {
        font-size: 14px;
        line-height: 22px;
    }
    .custom-btn {
      padding: 12px 18px;
    }
    .inline-button-area .custom-btn { padding: 12px 14px; }

    .table-responsive {
      width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
    .table-responsive table { min-width: 600px; }

    .col-reverse {flex-direction: column-reverse;}
    .head-top-tag { font-size: 11px; }

}

