@font-face {
  font-family: 'HelveticaNeue';
  src: url(../fonts/HelveticaNeueMedium.otf);
}
 
:root {
    --gold: #f2c238;
    --bronze: #A88717;
    --dark: #0f0f0f;
    --darker: #070707;
    --gradient-primary: linear-gradient(to top, #f2c238 2.09%, #a27a3d 86.55%);
    --button-glow: 0 4px 50px 0 rgba(240, 190, 42, 0.781);
    --button-glow-hover: 0 6px 20px 0 rgba(242, 195, 56, 0.63);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'HelveticaNeue';
}

body {
    background: var(--dark) ;
    color: white;
    min-height: 100vh;
    position: relative;
}

.content {
    position: relative;
    z-index: 5;
    padding: 0rem 5%;
    margin: 0 auto;
    width: 100%;
    opacity: 0;
}

.section-heading {
    font-size: 3rem;
    text-align: center;
}


.highlight {
    background: linear-gradient(92.15deg, #FFEE58 2.09%, #FFB300 86.55%);
   -webkit-background-clip: text;
   background-clip: text;
   -webkit-text-fill-color: transparent;
   position: relative;
   background-size: 200% auto;
}

.button-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin: 1.5rem 0;
    opacity: 0;
    transform: translateY(20px);
    width: 100%;
    max-width: 160px;
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.button-container::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(225deg, var(--gold), var(--bronze), var(--bronze), var(--gold));
    background-size: 400% 400%;
    z-index: 0;
    border-radius: 14px;
    animation: gradientBorder 6s ease infinite;
    opacity: 0.8;
}

.btn {
    position: relative;
    z-index: 1;
    background: rgba(16, 16, 20, 0.9);
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    padding: 14px 24px;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 10px;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(242, 194, 56, 0.3);
}

.btn:hover {
    background: rgba(18, 18, 24, 0.95);
    color: var(--bronze);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(242, 194, 56, 0.5);
}

.btn:active {
    background: rgba(37, 35, 25, 0.95);
    color: var(--bronze);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(242, 194, 56, 0.5);
}

.button-container:hover {
    transform: translateY(-3px);
    box-shadow: var(--button-glow-hover);
}

.section-divider {
    width: 80%;
    max-width: 400px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 2rem auto;
    opacity: 0.5;
}

.cal-sans{
    font-family: 'Cal Sans', sans-serif;
}

.inter{
    font-family: 'Inter', sans-serif;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}


/* Base transitions for all interactive elements */
.button-container, 
.btn, 
.feature-card, 
.module-card,
.testimonial-card,
.coach-card,
.faq-item,
.nav-scrolled,
footer a,
.prev-btn, 
.next-btn {
  transition: all 0.3s ease;
}

/* Button hover effects */
.button-container:hover {
  transform: scale(1.03);
}

.button-container:active {
  transform: scale(0.95);
}

/* Feature card hover animations */
.feature-card {
  border-color: rgba(201, 166, 78, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(201, 166, 78, 0.4);
}

/* Footer links */
footer a {
  transition: color 0.3s ease;
}

footer a:hover {
  color: #F2C238;
}

/* Fancy button effects */
.btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(242, 194, 56, 0.6);
}

.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shine 10s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  20% { left: 100%; }
  100% { left: 100%; }
}

/* Highlight word animation */
.highlight {
  animation: highlight-pulse 3s infinite alternate;
}

@keyframes highlight-pulse {
  0% { color: #DABC6A; }
  50% { color: #F2C238; }
  100% { color: #DABC6A; }
}

/* Fade-in animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Go-to-top button */
#go-top {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#go-top.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Navigation scroll effect */
nav {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

nav.nav-scrolled {
  background-color: rgba(18, 18, 26, 0.95);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Module card animations */
.module-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease, scale 0.3s ease, box-shadow 0.3s ease;
}

.module-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.module-card:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Testimonial card animations */
.testimonial-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

