/* Header Section 
******************/

@media (max-width: 1550px) {
  .header-background {
    background: #0f0f0f;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    width: 100%;
    display: block;
    min-height: 100vh;
  }

  .header-section {
    position: relative;
  }

  .main-navigation {
    display: flex;
    justify-content: space-evenly;
    gap: 5rem;
    align-items: center;
    max-width: 100%;
    transition: all 0.3s ease;
    z-index: 50;
    background-color: #20241b;
    max-height: 120px;
  }

  .sticky-active {
    position: fixed;
    top: 0;
    mix-blend-mode: normal;
    background-color: #20241b;
    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: #d4572f;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }

  .navigation-link:active,
  .navigation-link:hover {
    color: #d4572f;
  }

  .navigation-link:hover::after {
    transform: scaleX(1);
  }

  .navigation-link.colored {
    color: #d4572f;
  }

  .company-logo {
    width: 160px;
    height: 160px;
    background-image: url("/Logo-Brand/Mike-Webpage-Logo-Dark-Orange.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translateY(5px); /* Adjust 8px as needed */
  }

  .header-btn:link,
  .header-btn:visited {
    text-decoration: none;
    font-size: 1.3rem;
    text-transform: uppercase;
    font-family: "Anton";
    letter-spacing: 1px;
    background-color: #d4572d;
    padding: 25px;
    border-radius: 100%;
  }

  .header-btn:active,
  .header-btn:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
    background-color: #20241b;
    box-shadow: rgba(184, 87, 46, 0.795);
  }

  .header-background {
    background: #f4efe8;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    height: 100vh;
    width: 100%;
    display: block;
  }

  .Header-Content-Wrapper {
    transition: transform 0.3s ease;
    will-change: transform;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.18);
    padding: 12.5%;
    box-sizing: border-box;
    border-radius: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #f5f5f5;
  }

  .scroll-reveal {
    opacity: 0;
    transform: translateY(150px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }

  .header-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 80%;
    height: auto;
    overflow: hidden;
    align-items: center;
    padding: 0px;
    gap: 0px;
    margin: auto;
    position: absolute;
    top: calc(120px + (100vh - 120px) / 2); /* middle of remaining space */
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .grid-colm-1 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
  }

  .Main-Title {
    font-size: 3.6rem;
    font-family: "Anton";
    color: #20241b;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.45);
    letter-spacing: 3.6px;
    font-weight: bold;
    text-transform: uppercase;
  }

  .Header-Content-Text-Description {
    font-size: 1.2rem;
    font-family: "Inter";
    color: #20241b;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  }

  .grid-colm-2 {
    display: flex;
    overflow: hidden;
    width: 100%;
    height: auto;
    border-radius: 50%;
    border: 2px solid #d4572f;
    background: #20241b;
  }

  .grid-colm-2-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    object-fit: cover;
    display: block;
  }

  .flex-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 55px;
    margin-top: 1.5rem;
    width: 100%;
  }

  .social-icons {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    padding-top: 0rem;
  }

  .facebook-icon,
  .instagram-icon,
  .linkedin-icon {
    color: #2f3728;
    font-size: 1.6rem;
  }
  /*****************************
 /*Header Section End */

  /********************
 Features Section 
 /**********************/
  .Features-Section {
    /*background-color: #0d0d0d; */
    background-color: #20241b;
    padding: 14rem 0rem;
    overflow: hidden;
  }

  .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: #d4572f;
  }
}

/********************
 Features Section End
 /**********************/

/****************
   About - Section
**********************/
.About {
  padding: 14rem 2.5rem;
  background-color: #f4efe8;
  position: relative;
}

.about-main-grid-container {
  margin-top: 12rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.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;
  display: none;
}

.About-Main-Title {
  font-size: 5.2rem;
  font-family: "Anton";
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #20241b;
  font-weight: bold;
  z-index: 20;
  position: sticky;
}

.left-column-main-title {
  font-size: 3.6rem;
  font-family: "Anton";
  color: #20241b;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2.5px;
}

.left-column-lorem {
  color: #20241b;
  font-size: 1.1rem;
  font-family: "inter";
  line-height: 1.2;
}

.icon-text-lorem {
  font-size: 0.9rem;
  color: #20241b;
  font-family: "inter";
  line-height: 1.2;
  width: 100%;
  margin: 0;
}

.icon-text {
  font-size: 1.6rem;
  font-family: "Anton";
  text-transform: uppercase;
  color: #20241b;
  margin: 0;
}

.red-color {
  color: #d4572f;
}

.trophy-icon {
  font-size: 2.2rem;
  color: #20241b;
}

.fire-icon {
  font-size: 2.2rem;
  color: #d4572f;
}

.about-me-slung {
  color: #d4572f;
  font-size: 1.2rem;
  font-family: "Inter";
  text-transform: uppercase;
}

.btn-holder {
  margin-top: 5rem;
}

.about-btn {
  font-size: 1.3rem;
  letter-spacing: 1.5px;
  font-family: "Anton";
  background-color: #d4572f;
  color: #fff;
  padding: 25px;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 100%;
}

.about-btn:hover {
  background-color: #20241b; /* darken on hover */
  transform: translateY(-2px);
  transition: all 0.3s ease;
  box-shadow: 0 6px 10px rgba(212, 87, 47, 0.7); /* semi-transparent dark shadow */
}

.main-grid-left-column {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 0rem;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
  padding: 40px 20px 60px 20px;
  border-radius: 15px;
  background-color: #fff;
}

.main-grid-right-column {
  display: flex;
  flex-direction: column;
}

.flex-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.right-colm-image-1 {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.right-colm-image-2 {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Features Section End 
**************************/

/********************* 
Packages Section 
********************/
.Packages-Section {
  padding: 14rem 5rem;
  background-color: #20241b;
  position: relative;
}

.packages-main-title {
  font-size: 5.2rem;
  font-family: "Anton";
  text-transform: uppercase;
  color: #fff;
  z-index: 5;
}

.cta-container-background {
  background-image: url(/Background/Mike-Packages.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  min-height: 50rem;
  position: relative;
  margin-top: 10rem;
  border-radius: 10px;
}

.cta-container-content-holder {
  position: absolute;
  top: 32.5%;
  left: 35%;
  transform: translateY(calc(-50% + 7rem));
  display: flex;
  flex-direction: column;
  padding: 0 2rem;
  gap: 1.5rem;
  max-width: 65%;
  text-align: center;
}

.packages-btn {
  width: auto;
  align-self: center;
}

.cta-container-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(
    45deg,
    rgba(32, 36, 27, 0) 40%,
    rgba(32, 36, 27, 0.35) 40%,
    rgba(32, 36, 27, 0.95) 0%
  );
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.title-1,
.title-3 {
  color: rgba(255, 255, 255, 0.1);
}

.list-1,
.list-3 {
  color: rgba(255, 255, 255, 0.1);
}

.card-price {
  font-family: "Inter";
}

.price-1,
.price-3 {
  color: rgba(255, 255, 255, 0.1);
}

.grid-card {
  min-height: 35rem;
  background-color: #20241b;
  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;
  border: 2px solid rgba(212, 88, 47, 0.5);
}

.grid-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 10px rgba(212, 87, 47, 0.7);
  cursor: pointer;
}

.card-2 {
  background-color: #d4572f;
}

.card-btn {
  text-decoration: none;
  font-family: "Inter";
  font-size: 1.6rem;
  font-weight: bold;
  color: #d4572f;
  padding: 0.8rem 1.2rem;
  text-transform: uppercase;
  background-color: #fff;
  margin-top: auto;
  border-radius: 1rem;
}

.btn-1,
.btn-3 {
  background-color: #20241b;
  color: rgba(255, 255, 255, 0.1);
  font-size: 1.6rem;
}

/* Cards 
**************************/
.grid-card.card-1 *,
.grid-card.card-3 * {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.grid-card.card-1:hover *,
.grid-card.card-3:hover * {
  opacity: 1;
  color: #fff;
}

/********************* 
Packages Section End
********************/

/* Why Choose Me Section 
***************************/
.why-choose-me-section {
  background-color: #f4efe8;
  padding: 14rem 5rem;
  position: relative;
}

.why-me-title {
  color: #20241b;
}

.why-me-image {
  width: 100%;
  height: 90%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  position: relative;
  z-index: 85;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.why-me-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(32, 36, 27, 0.9) 50%,
    rgba(32, 36, 27, 0) 50%,
    rgba(32, 36, 27, 0) 0%
  );
  width: 100%;
  height: 90%;
  pointer-events: none;
  z-index: 99;
  border-radius: 50%;
}

.left-top-text {
  font-family: "Inter";
  font-size: 2rem;
  color: #20241b;
  text-transform: uppercase;
  font-weight: bold;
}

.left-top-text-lorem {
  font-family: "Inter";
  font-size: 1rem;
  color: #20241b;
  font-weight: 500;
}

.left-bottom-text {
  font-family: "Inter";
  font-size: 2rem;
  color: #d4572f;
  text-transform: uppercase;
  font-weight: bold;
}

.left-bottom-text-lorem {
  font-family: "Inter";
  font-size: 1rem;
  color: #d4572f;
  font-weight: 500;
}

.right-top-text {
  font-family: "Inter";
  font-size: 2rem;
  color: #d4572f;
  text-transform: uppercase;
  font-weight: bold;
}

.right-top-text-lorem {
  font-family: "Inter";
  font-size: 1rem;
  color: #d4572f;
  font-weight: 500;
}

.right-bottom-text {
  font-family: "Inter";
  font-size: 2rem;
  color: #20241b;
  text-transform: uppercase;
  font-weight: bold;
}

.right-bottom-text-lorem {
  font-family: "Inter";
  font-size: 1rem;
  color: #20241b;
  font-weight: 500;
}

.line {
  position: absolute;
  top: 6.8rem;
  left: 25rem;
  width: 13rem;
  height: 2px;
  background-color: #20241b;
  z-index: 20;
}

.line-2 {
  position: absolute;
  top: 7rem;
  right: 27rem;
  width: 13rem;
  height: 2px;
  background-color: #d4572f;
  z-index: 20;
}

.line-3 {
  position: absolute;
  top: 27rem;
  left: 25rem;
  width: 13rem;
  height: 2px;
  background-color: #d4572f;
  z-index: 20;
}

.line-4 {
  position: absolute;
  top: 27rem;
  right: 25rem;
  width: 13rem;
  height: 2px;
  background-color: #20241b;
  z-index: 20;
}

.dot-red {
  background-color: #20241b;
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  box-shadow: 0 0 20px rgba(255, 255, 255, 1), 0 0 40px rgba(255, 255, 255, 0.8),
    0 0 60px rgba(255, 255, 255, 0.6), 0 0 80px rgba(255, 255, 255, 0.4);
}

.dot-white {
  background-color: #d4572f;
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(255, 255, 255, 1), 0 0 40px rgba(255, 255, 255, 0.8),
    0 0 60px rgba(255, 255, 255, 0.6), 0 0 80px rgba(255, 255, 255, 0.4);
}

.dot-white-1 {
  background-color: #d4572f;
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  box-shadow: 0 0 20px rgba(255, 255, 255, 1), 0 0 40px rgba(255, 255, 255, 0.8),
    0 0 60px rgba(255, 255, 255, 0.6), 0 0 80px rgba(255, 255, 255, 0.4);
}

.dot-red-1 {
  background-color: #20241b;
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(32, 36, 27, 1), 0 0 40px rgba(32, 36, 27, 0.8),
    0 0 60px rgba(32, 36, 27, 0.6), 0 0 80px rgba(32, 36, 27, 0.4);
}

/*****************************
/* Why Choose Me Section  End
***************************/
