/* Imports */
/* Icons */
@import url("https://site-assets.fontawesome.com/releases/v6.0.0/css/all.css");
/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

/* ROOT */
:root {
  --white: #fff;
  --black: #000;
  --primary: #fae811;
  --secondary: #333333;
  --font-main: "Inter", sans-serif;
  --font-heading: "Poppins", sans-serif;
}

/* GLOBAL */
body {
  font-family: var(--font-main);
  background: var(--black);
  color: var(--white);
}

.hero-section {
  height: 100vh;
  background: url('../images/okx-banner-2.jpg') no-repeat center/cover;
  position: relative;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.60);
  top: 0;
  left: 0;
}

/* TYPOGRAPHY */
.heading {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--primary);
  text-shadow: 0 0 12px rgba(250,232,17,0.6);
}

.subheading {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--primary);
}

.sub-text {
  font-size: 18px;
  color: #ddd;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
}

.profile-wrapper {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary);
  display: inline-block;
  
}
.profile-wrapper img {
  width: 70%;
  height: 100%;
  object-fit: contain;
}


.btn-primary-custom {
  background: var(--primary);
  color: var(--black);
  font-weight: 600;
  border: none;
}

.btn-primary-custom:hover {
  background: #e6d500;
  /* transform: scale(1.05); */
  transition: all 0.3s ease;
}


.mini-stats {
  font-size: 14px;
  opacity: 0.9;
}

/* STATS */
.stats-section {
  padding: 60px 0;
  background: var(--secondary);
}


/* CTA */
.cta-section {
  padding: 60px 0;
  background: var(--primary);
  color: var(--black);
}


.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 0px;
  z-index: 1000;
}

.whatsapp-float img {
  width: 110px;
  height: 60px;
  border-radius: 50%;
  transition: transform 0.3s;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}