/* =========================
   FONTS
   ========================= */
@font-face {
  font-family: 'Averta';
  src: url('font/averta/Averta-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Averta';
  src: url('font/averta/Averta-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Averta';
  src: url('font/averta/Averta-Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Averta';
  src: url('font/averta/Averta-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Averta';
  src: url('font/averta/Averta-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Averta';
  src: url('font/averta/Averta-RegularItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Averta';
  src: url('font/averta/Averta-SemiboldItalic.otf') format('opentype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Averta';
  src: url('font/averta/Averta-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

/* =========================
   GLOBAL
   ========================= */
body {
  margin: 0;
  padding: 0;
  font-family: 'Averta', Arial, sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}
h1 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
}

/* =========================
   BACKGROUND & OVERLAY
   ========================= */
.site-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: url('../images/post-malone-bg_compressed.webp') center/cover no-repeat;
  z-index: 0;
  will-change: opacity, transform;
  overflow: hidden;
}
.site-bg::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background:
    linear-gradient(to bottom, #024cdf34 0%, #12121200 80%, #12121200 100%),
    #121212e1;
  opacity: 0.97;
  pointer-events: none;
  z-index: 1;
}
.site-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding-top: 90px;
}

/* =========================
   NAVBAR
   ========================= */
.navbar-custom {
  padding: 0.7rem 2.2rem;
  margin: 12px auto 0 auto;
  max-width: 1320px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  transition: transform 0.3s;
  will-change: transform;
}

.navbar-hide {
  transform: translateY(-100%) !important;
  transition: transform 0.3s ease-in-out !important;
}

.navbar-show {
  transform: translateY(0) !important;
  transition: transform 0.3s ease-in-out !important;
}
.logo {
  display: block;
  height: 25px;
  width: auto;
  object-fit: contain;
}
.navbar, .navbar-nav, .navbar-brand, .nav-link, .dropdown-toggle, .dropdown-menu, .dropdown-item {
  font-family: 'Averta', Arial, sans-serif !important;
}
.navbar-brand {
  margin-right: 0;
}
.navbar-nav .nav-link {
  color: #ffffff !important;
  font-weight: 600;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: #024ddf !important;
}
.btn-login {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 999px;
  padding: 0.6rem 1.7rem 0.6rem 1.5rem;
  font-weight: 400;
  font-size: 0.98rem;
  position: relative;
  transition: all 0.3s cubic-bezier(.4,2,.6,1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-login:hover, .btn-login:focus {
  border-color: #024ddf;
  color: #fff;
  background: #024cdf15;
}

/* =========================
   DROPDOWN CUSTOM
   ========================= */
   .dropdown-menu {
    background-color: rgba(18, 18, 18, 0.31);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 16px #0002;
    padding: 0.5rem 0;
    min-width: 80px;
  }
  .dropdown-item {
    color: #fff;
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
  }
  .dropdown-item:hover,
  .dropdown-item:focus {
    background: rgba(255,255,255,0.08);
    color: #ffffff;
  }
  .dropdown-toggle {
    background-color: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 999px;
    padding: 0.4rem 1.2rem;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
  }
  .dropdown-toggle:focus,
  .dropdown-toggle:hover {
    border-color: #024ddf;
    color: #fff;
    background: #024cdf15;
  }  

/* =========================
   WELCOME SECTION
   ========================= */
.welcome-content {
  text-align: center;
  color: #ffffff;
  z-index: 2;
  position: relative;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  animation: fadeIn 2s ease-out;
}
.welcome-title {
  font-size: 6rem;
  font-weight: 900;
  line-height: 1.2;
  color: #ffffff;
}


/* =========================
   CARDS SECTION
   ========================= */
.section2 {
  position: relative;
  background: transparent;
  padding: 60px 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.4,2,.6,1), transform 0.8s cubic-bezier(.4,2,.6,1);
}

.section2.visible {
  opacity: 1;
  transform: translateY(0);
}

.custom-cards-row {
}

.custom-card {
  width: 100%;
  max-width: 300px;
  min-width: 200px;
  padding: 32px 20px;
  border-radius: 24px;
  background: rgba(30,32,36,0.95);
  box-shadow: 0 4px 20px #0003;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin: 0 auto;
  text-align: left;
  opacity: 0;
  transform: translateY(40px) scale(0.98);
}
.custom-card.custom-card-appear {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: 
    opacity 0.7s cubic-bezier(.4,2,.6,1),
    transform 0.7s cubic-bezier(.4,2,.6,1);
}

.custom-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: 
    opacity 0.7s cubic-bezier(.4,2,.6,1),
    transform 0.7s cubic-bezier(.4,2,.6,1);
}
.custom-card:hover {
  transform: translateY(-8px) scale(1.05);
}
.custom-card .card-img {
  width: 60px;
  height: 60px;
  margin-bottom: 0;
}
.custom-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
  text-align: left;
}
.custom-card-desc {
  font-size: 1rem;
  color: #bdbdbd;
  margin-bottom: 0;
  text-align: left;
}
.custom-card .flex-grow-1 {
  min-width: 0;
  max-width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.big-gradient-number {
  font-family: 'Averta', 'Segoe UI', Arial, sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  display: inline-block;
  background: linear-gradient(90deg, #ffb86c, #ff6b35);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0;
  margin-left: 1rem;
  white-space: nowrap;
  align-self: center;
}
.gradient-orange {
  background: linear-gradient(90deg, #ffc689  , #ffb522);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-pink {
  background: linear-gradient(90deg, #ff6bcb, #A733FF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-green {
  background: linear-gradient(90deg, #a2fff9, #21FFF2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================
   FOOTER
   ========================= */
.footer {
  background: #121212d7;
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0 30px 0;
  margin-top: 150px;
  position: relative;
  z-index: 10;
}
.footer-content {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-section {
  margin-bottom: 40px;
}
.footer-logo {
  height: 30px;
  width: auto;
  margin-bottom: 20px;
  opacity: 0.9;
}
.footer-description {
  color: #bdbdbd;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 300px;
}
.footer-title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}
.footer-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #024ddf, #9B5CFF);
  border-radius: 1px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #bdbdbd;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}
.footer-links a:hover {
  color: #024ddf;
  transform: translateX(5px);
}
.footer-links a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #024ddf;
  transition: width 0.3s ease;
}
.footer-links a:hover::before {
  width: 100%;
}
.footer-contact {
  color: #bdbdbd;
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #bdbdbd;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: #024ddf;
  border-color: #024ddf;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 77, 223, 0.3);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  margin-top: 40px;
  text-align: center;
}
.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-copyright {
  color: #8a8a8a;
  font-size: 0.85rem;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 900px) {
  .custom-card,
  .custom-card-center {
    min-width: 0;
    width: 100%;
    max-width: 400px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .custom-card .card-img {
    margin-bottom: 20px;
  }
  .big-gradient-number {
    margin-left: 0;
    margin-top: 1rem;
  }
}
@media (max-width: 600px) {
  .site-content {
    padding-top: 120px;
  }
  .custom-cards-row {
    gap: 12px;
  }
  .custom-card {
    max-width: 100%;
    padding: 10px 4px;
  }
  .custom-card .card-img {
    width: 26px;
    height: 26px;
  }
  .big-gradient-number {
    font-size: 1.1rem;
  }
  .custom-card {
    box-shadow: none;
  }
}
@media (max-width: 480px) {
  .footer {
    padding: 30px 0 15px 0;
  }
  .footer-section {
    margin-bottom: 30px;
  }
  .footer-social {
    gap: 10px;
  }
  .footer-social a {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px 0;
    margin-top: 60px;
  }
  .footer-content {
    padding: 0 1rem;
  }
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-legal {
    justify-content: center;
  }
  .footer-description {
    max-width: 100%;
  }
}
html {
  scroll-behavior: smooth;
}

 