* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  }
  
  html {
	font-size: 62.5%; /* Set base font size to 10px for easier calculations */
	background-color: rgb(16, 16, 16);
	font-family: 'Lexend', sans-serif;
	overflow-x: hidden; /* Prevent horizontal scrolling */
  }
  
  body {
	font-size: 1.4rem;
	overflow-x: hidden;
	color: #fff;
  }
  
  /* Links style */
  a {
	text-decoration: none;
	color: inherit;
  }
  
  /* Main content padding */
  main {
	padding: 6rem 6%;
	align-items: center;
	justify-content: space-between;
	font-size: 4rem;
  }
  
  @media screen and (max-width: 700px) {
	main {
	  font-size: 3rem;
	  text-align: center;
	}
  }
  
  .primary-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 998;
	width: 100%;
	background-color: rgb(16, 16, 16);
	transition: 0.5s;
	box-shadow: 0 3px 1rem rgba(0, 0, 0, 0.65);
  }
  
  .container {
	margin-inline: auto;
	padding: 4rem 6%;
  }
  
  .navbar {
	height: 8.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
  }
  
  @media screen and (max-width: 600px) {
	.navbar {
	  height: 5.5rem;
	}
  }
  
  /* Logo styling */
  .logo {
	transition: 0.5s;
	background-image: url("images/liepardwhitelogoNEW.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 4rem;
	height: 4rem;
	z-index: 999;
  }

  .logo:hover {
	background-image: url("images/maplelogoNEW.png");
  }



  
  /* Biglinks (navigation links) */
/* Biglinks (navigation links) */
.biglinks {
	position: fixed;
	top: 2.5rem;
	right: 3.5%; /* Match the logo's left padding (6%) */
	z-index: 998;
	background-color: transparent;
	padding: 1rem 2.7% 0% 6%;
	font-size: 1.5rem;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 6rem; /* Space between links */
}

.biglinks a {
	color: white; /* Set default text color to white */
	transition: 0.5s; /* Smooth transition for the gradient */
}

.biglinks a:hover {
	color: transparent; /* Make text transparent so the gradient can show */
	background-image: linear-gradient(to bottom, #e50055, #fec900); /* Gradient goes to the right */
	background-clip: text; /* Apply gradient to text */
	-webkit-background-clip: text; /* For Safari */
	cursor: pointer;
}



  
  
  @media screen and (max-width: 1000px) {
	.biglinks {
	  display: none;
	}
  }
  
  /* Overlay styles for Learn More / Less functionality */
  .overlay {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 999;
	top: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.9); /* Semi-transparent overlay */
	overflow-x: hidden;
	transition: 0.5s;
	padding-top: 60px;
  }
  
  .overlay-content a {
	padding: 8px 8px 8px 32px;
	text-decoration: none;
	font-size: 25px;
	color: #818181;
	display: block;
	transition: 0.3s;
  }
  
  .overlay-content a:hover {
	color: #e9eb88;
  }
  
  .overlay a.closebtn {
	position: absolute;
	top: 0;
	right: 25px;
	font-size: 36px;
	color: #818181;
	transition: 0.3s;
  }
  




















.overlay {
	height: 0vh;
	width: 100%;
	position: fixed;
	z-index: 990;
	bottom: 0;
	right:0;
	background-color: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(2px);
	box-shadow: 0 3px 1rem rgba(0, 0, 0, 0.65);
	overflow-x: hidden;
	transition: 0.5s;
	text-align: center;
	backdrop-filter: blur(10px);
	padding:0rem 0rem;
  }
  
  .overlay a {
	text-decoration: none;
	color: #fff;
	display: block;
	transition: 0.3s;
	font-size: 3rem;
  }
  .overlay a:hover {
	color:#e9eb88;
  }

  

  
  












  .LMbutton {
	display: inline-block;
	z-index:998;
	transition:0.5s;
	z-index: 999;
	right:6%;
	position:absolute;
	color: #3e4247;
	background-color:transparent;
	font-size:2.2vw;
	padding: 0.5rem 1.6rem;
	background-color: #fff;
	color: #313131;
	padding: 0.8rem 2rem;
	border-radius: 2rem;
}
.LMbutton:hover {
	background: linear-gradient(to bottom, #e50055, #fec900);
	color:white;
	cursor:pointer;
}

    .LLbutton {
	display: inline-block;
	z-index:999;
	right:6%;
	position:absolute;
	color: #3e4247;
	background-color:transparent;
	font-size:2.2vw;
	padding: 0.5rem 1.6rem;
	background-color: #fff;
	color: #313131;
	padding: 0.8rem 2rem;
	border-radius: 2rem;
}

.LLbutton:hover {
	background: linear-gradient(to bottom, #e50055, #fec900);
	cursor:pointer;
	color:#fff;
}


@media screen and (min-width: 1000px){
	.LMbutton{
		display:none;
	}

	.LMbutton:hover {
		display:none;
	}
	
	    .LLbutton{
            display:none;
    }

	.LLbutton:hover {
		display:none;
	}
}











	
    .text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        text-align: center;
        z-index: 10;
        text-shadow: 0px 0px 5px #555;
      }
      
      @media screen and (min-width: 700px){
        .text {
          width: 75vw;
        }
      }



  .hero-image {
	width: 100%;
	height: 100vh;
	background-size: cover;
	background-repeat: no-repeat;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	}

	@media screen and (min-width: 700px){
	.text{
		width:75vw;
	}
	}

  .text h1 {
	font-size: clamp(3.6rem, 10.4vw, 7.4rem);
	line-height: clamp(3.6rem, 10.4vw, 7.4rem);
	margin-bottom:0.5rem;
  }
  
  .text h2 {
	font-size: clamp(2.4rem, 9.4vw, 5.4rem);
	line-height: clamp(2.4rem, 9.4vw, 5.4rem);
	margin-bottom:0.5rem;
  }

  .text p h4 {
	font-size: clamp(3vw, 6vw, 2rem);
  }



  
  

  















  footer {
	position: relative;
	width: 100%;
    background-color: rgb(30, 30, 30);
	min-height: 100px;
	padding: 20px 0px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	font-size: 3.7vw;
	color:white;
	z-index:5;
  }

  footer img{
	max-width:20vw;
}

  @media screen and (max-width: 1000px){
	footer{
	  font-size:1.7vw;
	  }

	  footer img{
		max-width:50vw;
	}
  }
  






