/* Modern CSS Reset and Variables */
:root {
  --primary: #389FCA;
  --primary-light: #eef2ff;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --gradient: linear-gradient(135deg, #4f46e5 0%, #9333ea 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

/* Fonts */
@font-face {
	font-family: 'Quicksand-Bold';
	src: url('fonts/Quicksand-Bold.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Quicksand-Light';
	src: url('fonts/Quicksand-Light.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Quicksand-Medium';
	src: url('fonts/Quicksand-Medium.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Quicksand-Regular';
	src: url('fonts/Quicksand-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Quicksand-SemiBold';
	src: url('fonts/Quicksand-SemiBold.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}
  
/* Start of Navbar 1 */
.nav-header {
  position: absolute;
  z-index: 99;
  width: 100%;
  height: 50px;
  color: white;
  display: flex;
  align-items: center;
}

.logo-btn {
  position: absolute;
  left: 10%;
  height: 50px;
  display: flex;
  align-items: center;
}

.nav-header img {
  width: 39%;
  height: auto;
  transform: translateY(8px);
}

.navbar-pc {
  display: none;
  position: absolute;
  right: 50px;
  color: white;
  font-family: 'Quicksand-Bold';
}

.navbar-pc ul {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  font-size: 1rem;
  gap: 36px;
}

.navbar-pc a {
  color: inherit;
}

.navbar-pc a::after{
  content: '';
  height: 2px;
  width: 0%;
  background-color: white;
  display: block;
  transition: .4s ease-in-out;
  border-radius: 5px;
}

.navbar-pc a:hover::after{
  content: '';
  height: 2px;
  width: 100%;
  background-color: white;
  display: block;
}
/* End of Navbar 1 */

/* Start of Navbar 2 */
.navbar-mobile {
  height: 60px;
  background-color: transparent;
  display: flex;
  align-items: center;
  z-index: 2;
}

.links-container {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100%;
  width: 200px;
  background-color: #3a3756;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 10;
  transition: 0.75s ease-out;
}

.links-container ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.navbar-mobile a {
  box-sizing: border-box;
  height: auto;
  width: 100%;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  color: #f0f0f0;
  justify-content: flex-start;
}

.navbar-mobile a:hover {
  background-color: #00c896;
}

.close-sidebar-button svg {
  fill: #f0f0f0;
}

#sidebar-active {
  display: none;
}

#sidebar-active:checked  ~ .links-container {
  right: 0;
}

.open-sidebar-button .close-sidebar-button {
  display: block;
  padding: 20px;
}

.open-sidebar-button:hover, .close-sidebar-button:hover {
  cursor: pointer;
}

.open-sidebar-button svg:hover {
  transform: scale(1.1);
}

.close-sidebar-button svg:hover {
  transform: scale(1.1);
}

.open-sidebar-button {
  display: none;
  position: absolute;
  right: 20px;
  top: 12px;
}

#sidebar-active:checked ~ #overlay {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
}
/* End of Navbar 2 */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

/* Modern Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
    url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=2000');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
  animation: heroZoom 20s infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

.hero-content {
  text-align: center;
  color: white;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #fff, #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.hero p {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

.hero p span {
  font-size: 2rem; 
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; 
  font-weight: bold;
}

/* Mission Section */
.mission {
  padding: 8rem 0;
  background: linear-gradient(135deg, #fff 0%, var(--primary-light) 100%);
  clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
}

.mission .container {
  display: flex;
  align-items: center;
}

.store2-img {
  width: 450px;
  height: auto;
}

.mission-content {
  max-width: 800px;
  margin-right: 100px;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  transform: perspective(1000px) rotateX(0deg);
  transition: transform 0.5s ease;
}

.mission-content:hover {
  transform: perspective(1000px) rotateX(2deg);
}

.mission h2 {
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.mission {
  font-size: 21px;
  text-align: center;
}

/* Stats Section */
.stats {
  padding: 8rem 0;
  background: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  border-radius: 1.5rem;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(0);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
  font-size: 3rem;
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

/* Contact Section */
.contact {
  position: relative;
  padding: 8rem 0;
  background-image: url(images/backdrop.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
  color: white;
  text-align: center;
}

.contact h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  background: white;
  color: var(--primary);
  padding: 1.2rem 3rem;
  border-radius: 3rem;
  font-weight: 600;
  transform: translateY(0);
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

footer {
  height: 5vh;
  width: 100vw;
}

footer p {
  background: #1F232E;
  color: white;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Responsive Navbar based on PC or Mobile screen size */
@media (min-width: 769px) {
  .navbar-pc {
      display: block;
  }

  .open-sidebar-button {
      display: none;
  }
}

@media (max-width: 768px) {
  .navbar-pc {
      display: none;
  }

  .open-sidebar-button {
      display: block;
      position: fixed;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .hero p span {
    font-size: 1.5rem;
  }

  .mission-content {
    padding: 2rem;
    min-width: 350px;
  }

  .mission .container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
  }

  .store2-img {
    width: 350px;
  }

  .mission-content {
    margin-right: 0;
  }
}