/* Fonts 
- Anton CS (Main Font)
- Inter / Montserrat (Secondary Font used for small text)

 Font-Size: 

 Main Headlights / Titles
 2rem, 2.6rem 3.4rem 4.4rem 5.2rem 6.4rem 7.2rem 
 
 Body text 
 1.6rem - 1.8rem 

 Buttons / CTA 
 1.8rem - 2rem 



/* Colors 
   #0D0D0D (Main-Color)
   #ff2800 (Secondary Color)
   #00ffff (Secondary Color)
*/

body {
  margin: 0;
  padding: 0;
  font-family: "Anton", Inter;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/*****************************
 /*Header Section*/

.header-section {
  width: 100%;
  margin: auto;
}

.header-background {
  background-image: url(/Background/Fitness-Background-Black.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 100%;
  display: block;
}

.company-logo {
  width: 160px;
  height: 160px;
  background-image: url("/Css-js/Fitrise-Logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(5px); /* Adjust 8px as needed */
}

.main-navigation {
  display: flex;
  justify-content: center;
  gap: 5rem;
  align-items: center;
  width: 100%;
  max-width: 100%;
  position: static;
  transition: all 0.3s ease;
  top: 0;
  z-index: 50;
}

.nav-links {
  display: flex;
  gap: 5rem;
}

/* Hamburger Menu For The Mobile Navigation */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
  /* Hamburger Menu For The Mobile Navigation */
}

.close-btn {
  font-size: 4.5rem;
  color: #fff;
  cursor: pointer;
  display: none;
}

.sticky-active {
  position: fixed;
  top: 0;
  mix-blend-mode: normal;
  background-color: #161616;
  backdrop-filter: blur(10px);
}

.navigation-link:link,
.navigation-link:visited {
  text-decoration: none;
  color: #fff;
  font-family: "Anton";
  letter-spacing: 0.5px;
  font-size: 1.2rem;
  padding-bottom: 0.5rem;
  transition: color 0.3s ease;
  display: inline-block;
  position: relative;
}

/* Animation Underline */
.navigation-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #a60e0e;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.navigation-link:active,
.navigation-link:hover {
  color: #a60e0e;
}

.navigation-link:hover::after {
  transform: scaleX(1);
}

.navigation-link.colored {
  color: #a60e0e;
}

.Header-Content-Wrapper {
  width: 100%;
  max-width: 100%;
  margin: auto;
  position: absolute;
  top: 50%;
  padding-left: 5rem;
  padding-right: 5rem;
}

/* Animation for fading the text in the content wrapper on the left */
.Header-Content-Wrapper {
  transition: transform 0.3s ease;
  will-change: transform;
}
/* Animation for fading the text in the content wrapper */

/* Animation for scroll-reveal sections*/
.scroll-reveal {
  opacity: 0;
  transform: translateY(150px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

/* Animation for scroll-reveal sections*/

.flex-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 5rem;
}

.Main-Title {
  font-size: 5.2rem;
  font-family: "Anton";
  color: #fff;
  letter-spacing: 5px;
  font-weight: bold;
  text-transform: uppercase;
}

.Header-Content-Text-Description {
  font-size: 1.4rem;
  font-family: "Inter";
  color: #fff;
}

.header-btn:link,
.header-btn:visited {
  text-decoration: none;
  font-size: 1.8rem;
  text-transform: uppercase;
  font-family: "Anton";
  letter-spacing: 1px;
  background-color: #a60e0e;
  color: #fff;
  padding: 1rem 1.4rem;
}

.header-btn:active,
.header-btn:hover {
  background-color: #8c0b0b; /* darken on hover */
  box-shadow: 0 8px 20px rgba(166, 14, 14, 0.6);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.social-icons {
  display: flex;
  gap: 3rem;
  align-items: center;
  padding-top: 1.5rem;
}

.facebook-icon,
.instagram-icon,
.youtube-icon {
  color: #fff;
  font-size: 1.6rem;
}

/*****************************
 /*Header Section End */

/********************
 Features Section 
 /**********************/
.Features-Section {
  background-color: #0d0d0d;
  padding: 14rem 0rem;
  overflow: hidden;
}

.Features-Content-Wrapper {
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scrollLoop 30s linear infinite;
  border-bottom: #fff 3px solid;
  border-top: #fff 3px solid;
}

.loop {
  display: flex;
}

.big-text {
  font-family: "Inter";
  font-size: 5.2rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
  padding: 0 2rem;
  display: inline-block;
  margin: 0;
  white-space: nowrap;
  font-weight: bold;
}

.colored {
  color: #a60e0e;
}

/* Animation */
@keyframes scrollLoop {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
/********************
 Features Section End
 /**********************/

/****************
   About - Section
**********************/
.About {
  padding: 14rem 5rem;
  background-color: #0d0d0d;
  position: relative;
}

.About-Main-Title {
  font-size: 5.2rem;
  font-family: "Anton";
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #fff;
  font-weight: bold;
  z-index: 20;
  position: sticky;
}

.red-color {
  color: #a60e0e;
}

.about-text-shadow {
  font-family: "Inter";
  font-size: 5.2rem;
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 160px;
  left: 16px;
  text-transform: uppercase;
  letter-spacing: 0px;
  z-index: 1;
}

/************************
Main Grid Container */

.about-main-grid-container {
  margin-top: 10rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.btn-holder {
  margin-top: 4.5rem;
}

.about-btn {
  font-size: 1.8rem;
  letter-spacing: 1.5px;
  font-family: "Anton";
  background-color: #a60e0e;
  color: #fff;
  padding: 1rem 1.4rem;
  text-decoration: none;
  text-transform: uppercase;
}

.about-btn:hover {
  background-color: #8c0b0b; /* darken on hover */
  box-shadow: 0 8px 20px rgba(166, 14, 14, 0.6);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.main-grid-left-column {
  display: flex;
  flex-direction: column;
  gap: 0rem;
}

.main-grid-right-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 20rem;
  gap: 2rem;
}

.right-column-image {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  border-radius: 50%;
}

.image-2 {
  object-position: 70% center;
}

.image-4 {
  object-position: 25% center;
}

.image-5 {
  object-position: top;
  object-fit: cover;
}

.left-icon-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.right-icon-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.icon-holder {
  display: flex;
  margin-top: 4rem;
}

.trophy-icon {
  font-size: 3.2rem;
  color: goldenrod;
}

.fire-icon {
  font-size: 3.2rem;
  color: #a60e0e;
}

.icon-text-lorem {
  font-size: 1.1rem;
  color: #fff;
  font-family: "inter";
  line-height: 1.2;
}

.icon-text {
  font-size: 1.6rem;
  font-family: "Anton";
  text-transform: uppercase;
  color: #fff;
}

.about-me-slung {
  color: #a60e0e;
  font-size: 1.2rem;
  font-family: "Inter";
  text-transform: uppercase;
}

.left-column-main-title {
  font-size: 3.6rem;
  font-family: "Anton";
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2.5px;
}

.left-column-lorem {
  color: #fff;
  font-size: 1.1rem;
  font-family: "inter";
  line-height: 1.2;
}
/************************
Main Grid Container End */

/****************
   About - Section End
**********************/

/********************* 
Packages Section 
********************/
.Packages-Section {
  padding: 14rem 5rem;
  background-color: #0d0d0d;
  position: relative;
}

.packages-main-title {
  font-size: 5.2rem;
  font-family: "Anton";
  text-transform: uppercase;
  color: #fff;
  z-index: 5;
  position: sticky;
}

.cta-container-text-1 {
  font-family: "Inter";
  font-size: 2rem;
  text-transform: uppercase;
  color: #fff;
}

.cta-container-text-2 {
  font-family: "Inter";
  font-size: 1.2rem;
  color: #fff;
}

.cta-container-content-holder {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(calc(-50% + 7rem));
  display: flex;
  flex-direction: column;
  padding: 0 2rem;
  gap: 1.5rem;
}

.packages-btn {
  width: auto;
  align-self: self-start;
}

.cta-container-background {
  background-image: url(/CTA-Container-Images/CTA-Container-Image-3.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  min-height: 50rem;
  position: relative;
  margin-top: 10rem;
}

/***************************
Grid Packages Cards 
****************************/

.grid-packages-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  text-align: center;
  margin-top: 10rem;
  gap: 2rem;
  margin-left: -3rem;
  margin-right: -3rem;
}

.grid-card {
  min-height: 35rem;
  background-color: #161616;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 1rem;
  padding: 3rem 2rem;
}

.grid-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 16px rgba(255, 0, 0, 0.2);
  cursor: pointer;
}

.card-2 {
  background-color: #a60e0e;
}

.card-content-holder {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-title {
  font-size: 2rem;
  font-family: "Inter";
  font-weight: bold;
  text-transform: uppercase;
}

.title-1,
.title-3 {
  color: rgba(255, 255, 255, 0.4);
}

.card-price {
  font-family: "Inter";
}

.price-1,
.price-3 {
  color: rgba(255, 255, 255, 0.4);
}

.card-list {
  font-family: "Inter";
  margin-top: 2rem;
  text-transform: capitalize;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  font-size: 1.3rem;
}

.list-1,
.list-3 {
  color: rgba(255, 255, 255, 0.4);
}

.card-btn {
  text-decoration: none;
  font-family: "Inter";
  font-size: 1.6rem;
  font-weight: bold;
  color: #a60e0e;
  padding: 0.8rem 1.2rem;
  text-transform: uppercase;
  background-color: #fff;
  margin-top: auto;
  border-radius: 1rem;
}

.btn-1,
.btn-3 {
  background-color: #161616;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.6rem;
}

/***************************
Grid Packages Cards End
****************************/
/********************* 
Packages Section End
********************/
