
:root {
  --milenium : linear-gradient(to right, #6268AA 13.51%, #8F98FF 45%, #9A4281 80%, #AC134B 100%);
  --primary-color: #6268AA;
  --secondary-color: #8F98FF;
  --accent-color: #9A4281;
  --highlight-color: #AC134B;
  --text-color: #ffffff;
  --background-color: #000000;
}
/* Global styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to right, #000000 23%, #000068 100%);
  color: #fff;
}

/* Global layout & reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden;
  overscroll-behavior-y: none;
  font-family: 'Sora', sans-serif;
  background: linear-gradient(to right, #000000 23%, #000068 100%);
  color: #fff;
}

.wrapper {
  width: 90%;
  max-width: 1309px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* if content wraps, don't break */
}

.main-header.scrolled {
  background: #000; /* or any color you prefer */
  box-shadow: 0 1px 14px -8px rgba(0, 0, 0, 0.15);
  border-radius: 0 0 40px 40px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  top: 0;
}
/* Header styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #111;
    width: auto;
    height: 90px;
    padding: 10px 0;
    border-bottom: 1px solid #444;
    margin-top: 0;
    flex-shrink: 0;
    border-radius: 50px;
    border: 4px solid #000;
    background: linear-gradient(360deg, rgba(98, 104, 170, 0.00) 13.51%, rgba(143, 152, 255, 0.00) 33.63%, rgba(154, 66, 129, 0.00) 63.1%, #AC134B 98.65%);
}

/* Font */
@font-face {
  font-family: "Brittany Signature";
  src: url("https://res.cloudinary.com/dvabb4elb/raw/upload/v1751213256/Brittany_d75giq.ttf") format("truetype");
}

/* Logo */
.logo a {
  color: #ffffff;
  display: flex;
  font-family: "Brittany Signature", sans-serif;
  font-size: 60.49px;
  font-weight: 400;
  text-decoration: none;
  flex: 0 0 auto;
}

/* Nav styles */
.main-nav ul {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: nowrap;
}

.main-nav a {
  color: #fcf9f9;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  transition: 
    background 0.3s ease,
    color 0.3s ease,
    border-radius 0.3s ease,
    padding 0.3s ease;
}

.main-nav a:hover,
.main-nav a:focus {
  padding: 16px 24px;
  border-radius: 84px;
  background: #6268AA;
}

@media screen and (max-width: 1100px) {
  .wrapper {
    padding: 0 10px;
  }

  .main-nav a {
    font-size: 16px;
  }

  .main-nav ul {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: nowrap;
  }
}

/* Hero section styles */

/* Ensure background fills screen */
.hero-section {
  max-width: 1309px;
  margin: 0 auto; /* centers it inside full screen */
  padding-top: 140px ;
  padding-left: 60px;
  padding-right: 60px;
  height: 100vh;
  justify-content: space-between;
  display: flex; /* This is crucial to layout left & right parts */
  align-items: center; /* to push below the fixed/sticky header */
}


.left {
  margin-left: -10px; /* Adjust to align with the wrapper */
  z-index: 3;
  flex-direction: 1;
  gap: 20px;
}


.left .h1 {
  position: relative;
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.3px #888;
  background: none;
  margin-bottom: 10px;
  overflow: hidden;
  text-align: center;
}

/* Typing + Erasing Animation */
.left .h1::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(to right, #ffffff, #ffffff);
  background-size: 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-right: 1px solid #ffffff;
  white-space: nowrap;
  overflow: hidden;
  animation: typingLoop 6s linear infinite;
  z-index: 1;
}

/* Type and erase animation loop */
@keyframes typingLoop {
  0%, 10% {
    width: 0;
  }
  40%, 60% {
    width: 100%;
  }
  90%, 100% {
    width: 0;
  }
}

/* Responsive font size for small screens */
@media (max-width: 468px) {
  .left .h1 {
    font-size: 2.4rem;
  }
}


.hero-uppercase {
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-size: 80.252px;
  font-weight: 800;
  line-height: normal;
  color: transparent;
  background-size: 200%;
  background: linear-gradient(to right, #6268AA 3.51%, #8F98FF 29%, #9A4281 45%, #AC134B 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  animation: animate-gradient 2.5s linear infinite;
}


.hamburger {
  display: none;
}


.subheading {
  flex-shrink: 0;
  color: #ffffff;
  font-family: 'Rubik', sans-serif;
  font-size: 38.76px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
  z-index: 1;
}

.subheading::after {
  content: '';
  display: block;
  margin: 0.5rem auto 0;
  width: 780px;
  height: 4px;
  background-image: url('https://res.cloudinary.com/dvabb4elb/image/upload/v1750871772/client-Line_swpeyd.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

.description {
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  width: 665px;
  font-size: 18.566px;
  max-width: 500px;
  line-height: 27px;
  color: #ffffff;
  margin-top: 20px;
}

.button-group {
  padding-top: 40px;
  display: flex;
  gap: 20px;
}

.btn {
  padding: 12px 24px;
  font-size: 1.3rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-light {
  background-color: #747bff;
  color: #fff;
}

.btn-dark {
  background: transparent;
  color: #fff;
  border-color: #ffffff;
}

.btn:hover {
  transform: scale(1.05);
}




/* Responsive for Left */
@media screen and (max-width: 1100px) {

  .hero-section {
    flex-direction: column;
    padding-top: 160px;
    height: auto;
    text-align: left;
  }
  .btn {
    padding: 12px 20px;
    font-size: 1rem;
  }

  .left {
    width: 100%;
  }

  .left .h1 {
    font-size: 2rem;
  }
  .left .images {
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
  }

  .hero-uppercase {
      color: transparent;
    background: linear-gradient(to right, #6268AA 0.51%, #8F98FF 9%, #9A4281 25%, #AC134B 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 48px;
  }

  .subheading {
    font-size: 29px;
  }
  .subheading::after {
    width: 100%;
    height: 4px;
  }
  .description {
    width: 100%;
    max-width: 100%;
    font-size: 19px;
  }

  .button-group {
    gap: 16px;
  }

  .images {
    width: 100%;
    max-width: 400px;
    margin-top: 20px;
    align-self: center;
  }

  .right {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-left: 30px;
  }
  .hero-image-container {
    z-index: 1;
    position: relative;
    width: 100%;
    max-width: 600px;
  }
  .right .statboxes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none; /* allows clicks to pass through if needed */
  }

  .statbox {
    z-index: 2;
    position: absolute;
    background: rgba(102, 5, 5, 0.05);
    border-radius: 16px;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    color: rgb(255, 255, 255);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(184, 14, 147, 0.4);
    border: #f717f7 2px solid;
  }

    /* Box 1: near head (right-top) */
  /* Head */
  .statboxes .statbox:nth-child(1) {
    top: 15%;
    right: 20%;
  }

  /* Hip */
  .statboxes .statbox:nth-child(2) {
    top: 65%;
    right: 14%;
  }

  /* Leg */
  .statboxes .statbox:nth-child(3) {
    bottom: 5%;
    left: 24%;
  }

}

@media (max-width: 468px) {
  /* Hide nav initially off-screen to the right */
  .hamburger {
    margin-top: 0;
    margin-bottom: 10px;
    padding-bottom: 2px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 35px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }

  .hamburger .bar {
    height: 2px;
    width: 100%;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* Mobile nav menu */
  .main-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    background: #000068;
    z-index: 1000;

    overflow: hidden;
    max-height: 0;
    opacity: 0;
    visibility: hidden;

    transition: max-height 0.5s ease, opacity 0.5s ease, visibility 0.5s ease;
  }

  .main-nav.active {
    max-height: 500px; /* enough height to fit the content */
    opacity: 1;
    visibility: visible;
  }

  .main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  .main-nav ul li {
    padding: 0.75rem 1.5rem;
  }

  .main-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: none !important;
    animation: none !important;
  }

  .logo a {
    font-size: 40px;
  }
  .wrapper {
    padding: 0 20px;
    width: 100%;
    height: 48.0px;
  }
  .main-header {
    margin-left: 0;
    margin-right: 0;
    height: 60px;
    padding-bottom: 0;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 30px;
    border: 2px solid #000;
    background: linear-gradient(360deg, rgba(98, 104, 170, 0.00) 13.51%, rgba(143, 152, 255, 0.00) 33.63%, rgba(154, 66, 129, 0.00) 63.1%, #AC134B 98.65%);
  }

  .main-header.scrolled {
    margin-right: 0;
    margin-right: 0;
    background: #000; /* or any color you prefer */
    box-shadow: 0 1px 14px -8px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 8px 8px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    top: 0;
  }

  .hero-section {
    display: flex;
    flex-direction: column; /* or row, depending on your layout */
    align-items: center;     /* centers horizontally */
    justify-content: center; /* centers vertically */
    text-align: center;      /* centers text inside container */
    padding-top: 120px;
    padding-left: 20px;
    padding-right: 20px;
    min-height: 100vh;       /* ensures full screen height */
  }

  .left .h1 {
    font-size: 1.36rem;
  }
  .hero-uppercase {
    font-size: 52px;
    background: linear-gradient(to right, #6268AA 13.51%, #8F98FF 45%, #9A4281 69%, #AC134B 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
  }

  .hero-uppercase::after {
    content: '';
    display: block;
    width: 800px;
    height: 4px;
    background-image: url('https://res.cloudinary.com/dvabb4elb/image/upload/v1750871772/client-Line_swpeyd.svg');
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: 0;
    margin-left: 30px;
  }
  .subheading {
    font-size: 20px;
    margin-top: 30px;
  }
  .subheading::after {
    display: none;
  }
  .description {
    width: 100%;
    max-width: 100%;
    font-size: 9px;
    margin-top: 30px;
  }
  .button-group {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-left: 10px;
  }

  .btn  {
    font-size: 0.9rem;
  }

  .right {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }
  .hero-image-container {
    z-index: 1;
    position: relative;
    width: 100%;
  }
  .hero-image {
    width: 100%;
    height: auto;
    margin-left: -60px;
  }
    .statbox {
    z-index: 2;
    position: absolute;
    background: rgba(102, 5, 5, 0.05);
    border-radius: 16px;
    padding: 16px 20px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    color: rgb(255, 255, 255);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(184, 14, 147, 0.4);
    border: #f717f7 2px solid;
  }

    /* Box 1: near head (right-top) */
  /* Head */
  .statboxes .statbox:nth-child(1) {
    top: 15%;
    right: 4%;
  }

  /* Hip */
  .statboxes .statbox:nth-child(2) {
    top: 70%;
    right: 1%;
  }

  /* Leg */
  .statboxes .statbox:nth-child(3) {
    bottom: 5%;
    left: -4%;
  }
}

/* Warning Popup Styles */
#fakeSiteWarningModal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
}

.warning-popup-content {
  background-color: #1e1e1e;
  color: white;
  padding: 20px 30px;
  border-radius: 10px;
  max-width: 500px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  position: relative;
  text-align: center;
  font-family: Arial, sans-serif;
}

.warning-popup-content strong {
  font-size: 20px;
  display: block;
  margin-bottom: 12px;
}

.warning-popup-content .highlight {
  color: #f56928;
  font-weight: bold;
}

.warning-close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 22px;
  color: #ffffffaa;
  cursor: pointer;
}

.warning-close-btn:hover {
  color: white;
}

/* Loading screen */


@media screen and (max-width: 378px) {  

  .h1 {
    font-size: 32px;
  }
  .hero-uppercase {
    font-size: 36px;
    margin-bottom: 10px;
  }
  .hero-uppercase::after {
    content: '';
    display: block;
    width: 300px;
    height: 4px;
    background-image: url('https://res.cloudinary.com/dvabb4elb/image/upload/v1750871772/client-Line_swpeyd.svg');
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: 0;
    margin-left: 50px;
  }
  .subheading {
    font-size: 18px;
    margin-top: 20px;
  }
  .description {
    font-size: 14px;
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
  }

  .button-group {
    gap: 10px;
    flex-direction: row;
    align-items: center;
    margin-left: 20px;
  }
  .btn {
    padding: 10px 16px;
    font-size: 0.7rem;
  }

  .statbox {
    padding: 8px 8px;
    width: 20px;
    font-size: 14px;
    white-space: nowrap;
    text-align: center;
  }

  .statboxes .statbox:nth-child(1) {
    top: 15%;
    right: -1%;
  }

  /* Hip */
  .statboxes .statbox:nth-child(2) {
    top: 80%;
    right: 0%;
  }

  /* Leg */
  .statboxes .statbox:nth-child(3) {
    bottom: 0%;
    left: -9%;
  }
}