/* Main Styles */

:root {
  --apple-nav-height: 44px;
  --primary-color: #000;
  --secondary-color: #fff;
  --link-color: #2997ff;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  display: flex;
  flex-direction: column;
}

/* Navigation Styles */

.nav-wrapper {
  background-color: var(--secondary-color);
  backdrop-filter: blur(20px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
}

.nav-container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--apple-nav-height);
}

.nav-link {
  color: var(--primary-color);
  opacity: 0.8;
  font-size: 0.8rem;
  transition: opacity 0.3s ease;
}

.nav-link:hover {
  opacity: 1;
}

.apple-logo {
  height: auto;
  width: auto;
}

/* Hero Section */

.hero,
.main-content {
  width: 100vw;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  display: flex;
  flex-direction: column;
}

.main-content {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-content h1,
.hero-content h2,
.getToKnow h1 {
  font-size: 5rem;
  font-weight: 600;
}
.hero-content h2 {
  font-size: 3.5rem;
  font-weight: 600;
}

.getToKnow {
  width: 100%;
  margin: 5rem auto;
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
}
.hero-content a {
  color: var(--link-color);
  text-decoration: underline;
  font-size: 0.8rem;
  transition: opacity 0.3s ease;
}

.hero-content p {
  font-size: 1.75rem;
  font-weight: 600;
}

.hero-content {
  width: 100%;
  max-width: 1024px;
  margin: 1rem auto;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.hero-heading {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.hero-video {
  width: 100%;
  max-width: 1024px;
  position: relative;
}

.hero-video video {
  width: 100%;
  max-width: 1024px;
  margin: 5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 2rem;
  overflow: hidden;
}

.hero-video .play-icon {
  position: absolute;
  bottom: 10%;
  left: 95%;
  transform: translate(-50%, -50%);
  color: rgba(0, 0, 0, 0.56);
  cursor: pointer;
  z-index: 9999;
  background: rgb(232, 232, 237);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  height: 36px;
  width: 36px;
  padding: 0;
  margin: 40px 0 0 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.56);
}

main {
  flex: 1;
  align-items: center;
  justify-content: center;
}

.getToKnow h1 {
  font-size: 4rem;
  align-self: center;
  width: 75.3%;
  text-align: left;
}

.slider {
  display: flex;
  overflow-x: hidden;
  overflow-y: hidden;
  gap: 1rem;
  padding: 0 1rem;
  -webkit-overflow-scrolling: touch;
  padding-left: 11em;
}

.slide {
  flex: 0 0 25em;
  max-width: 100%;
  margin: 5rem auto;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.slide img {
  width: 100%;
  max-width: 1024px;
  border-radius: 2rem;
  overflow: hidden;
}

.slider::-webkit-scrollbar {
  height: 0px;
  background: transparent;
}

.slider::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 10px;
}

.slider::-webkit-scrollbar-track {
  background: transparent;
}

.slide-content {
  position: absolute;
  top: 4%;
  left: 8%;
  color: #fff;
  width: 100%;
}

.slide-content p {
  font-size: 1.5rem;
  font-weight: 600;
}

.slide-content h2 {
  font-size: 2rem;
  font-weight: 600;
}

.hero.bg-gray {
  background-color: rgb(245, 245, 247);
  padding: 5rem 0;
}

.product_wrapper {
  display: flex;
  gap: 3rem;
  padding: 0 1rem;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  scroll-behavior: smooth;
  align-items: center;
  justify-content: center;
  width: 100vw;
  display: flex;
}
.product {
  flex: 0 0 25em;
  max-width: 100%;
  margin: 5rem auto;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  text-align: center;
}
.product_image {
  max-width: 100%;
  border-radius: 2rem;
  overflow: hidden;
}
.product_image img {
  width: 100%;
  height: auto;
}
.product_content h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 1rem ;
  
}
.product_content p {
  font-size: 1.3rem;
  font-weight: 200;
  margin: 1rem 0;
}

.product_content strong {
  font-size: 1rem;
  font-weight: 600;
}

.product_buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: center;
  align-items: center;
}

.product_buttons a {
  color: var(--link-color);
  text-decoration: underline;
  font-size: 0.8rem;
  transition: opacity 0.3s ease;
}

.product_buttons a:hover {
  opacity: 1;
}

.product_buttons a {
  color: var(--link-color);
  text-decoration: underline;
  font-size: 0.8rem;
  transition: opacity 0.3s ease;
}

.product_buttons a:hover {
  opacity: 1;
}

.product_buttons a:first-child {
  color:#fff;
  background-color: var(--link-color);
  padding: 0.75rem 1.25rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
}