/* Global Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  max-width: 100%;
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}

/* Header Styles */
.navigation-header {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 1.5rem;
  background-color: #FFF;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
}

.logo img {
  width: 160px;
  height: auto;
  border-radius: 8px;
}

.header-title{
  font-family: 'Karantina', sans-serif;
  background-color: #FFF;
  padding: 0 1.4rem;
  font-size: 1.5rem;
}

.hamburger {
  display: none;
}

.nav-list {
  display: flex;
  padding-left: 1rem;
  padding-right: 1rem;
  gap: 2rem;
  font-family: 'Inter', sans-serif;
  background-color: #FFF; 
}

.nav-list li {
  list-style-type: none;
  transition: 0.3s ease;
}

.nav-list li:hover {
  transform: scale(1.1);
}

.nav-list a {
  text-decoration: none;
  color: #333;
  font-size: 2rem;
  font-weight: 600;
}

.join-btn {
  background-color: #000;
  color: #FFF;
  border: transparent;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  cursor: pointer;
  gap: 1rem;
  padding: 1rem;
  border-radius: 8px;
  transition: 0.3s ease;
}

.join-btn:hover {
  background-color: #FFF;
  color: #000;
  border: 2px solid black;
}
/* Hero Section Styles */
.hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background-color: #FFF;
  scroll-margin-top: 80px;
}

.left-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.hero-title {
  font-family: 'Karantina', sans-serif;
  font-size: 36px;
  text-align: center;
  color: #000;
  margin-bottom: 1rem;
}

.hero-text {
  font-size: 18px;
  color: #000;
  font-family: 'Inter', sans-serif;
  text-align: center;
  margin-bottom: 1.5rem;
}

.sm-icons {
  display: flex;
  justify-content: center;
  font-size: 24px;
  color: #000;
  gap: 1rem;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 520px;
  height: auto;
}

/* Membership Options Section */
.membership-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background-color: black;
  scroll-margin-top: 175px;
}

.main-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  background-color: black;
}

.membership-section h1 {
  font-family: 'Karantina', sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  color: #FFF;
  font-size: 32px;
}

.membership-card {
  display: flex;
  flex-direction: column;
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  width: 400px;
  text-align: center;
}

.membership-card h2 {
  font-family: 'Inter', sans-serif;
  font-weight: bold;
  font-size: 24px;
  padding: 1rem;
}

.membership-card img {
  border-radius: 8px;
  margin-bottom: 1rem;
  width: 300px;
  height: 200px;
}

.membership-card p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  margin-bottom: 1rem;

}


/* About Us */
.about-us{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background-color: white;
  scroll-margin-top: 175px;
}

.about-us h1 {
  font-family: 'Karantina', sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  color: black;
  font-size: 32px;
}

.about-us p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: black;
  text-align: center;
  max-width: 50rem;
}

/* Pricing */
.pricing-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  background-color: black;
  scroll-margin-top: 175px;
}

.pricing-section h1 {
  font-family: 'Karantina', sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  color: white;
  font-size: 32px;
}

.pricing-card-container {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.pricing-card {
  background-color: white;
  max-width: 20rem;
  padding: 2rem 3rem;
  text-align: center;
  margin: 0 2rem;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: 0.4s ease-in-out;
  cursor: pointer;
}

.pricing-card:hover {
  transform: scale(1.05)translateY(-10px);
}

.pricing-card .title {
  font-size: 2rem;
  color: black;
}

.pricing-card .price {
  color: #6C6C6C;
  font-weight: 800;
  font-size: 2rem;
  margin: 15px 0;
}

.btn {
  display: inline-block;
  padding: 0.75rem 0;
  background-color: #ADADAD;
  color: white;
  text-decoration: none;
  border-radius: 2rem;
  border: 3px solid transparent;
  font-size: 1rem;
  margin-top: 1rem;
  width: 100%;
  font-weight: 500;
  transition: 0.4s ease-in-out;
}

.btn:hover {
  background: white;
  color: #6C6C6C;
  border: 3px solid #6C6C6C;
}



/* Responsive Styles */
@media screen and (max-width: 767px) {
  /*Global*/  
  html, body {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  /*Header*/
  .navigation-header {
    flex-direction: row;
    max-width: 100%;
    padding: 1rem;
    justify-content: space-around;
  }

  .logo img {
    width: 40px;
    max-width: 100%;
    height: auto;
  }

  .header-title {
    font-family: 'Karantina', sans-serif;
    background-color: #FFF;
    padding: 0 0.4rem;
    font-size: 0.5rem;
  }

  .hamburger {
    display: block;
    font-size: 1rem;
    background: none;
    color: #6C6C6C;
    cursor: pointer;
    border: none;
    transition: transform 0.3s ease;
    margin-left: auto;
    padding: 0.5rem;
  }

  .hamburger .active {
    transform: translateX(-20px);
  }

  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    right: 1rem;
    left: auto;
    width: min(250px, calc(100vw - 2rem));
    max-width: 100%;
    box-sizing: border-box;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem;
    background: #111;
    border-radius: 12px;
    list-style: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    z-index: 10;
  }

  .nav-list.active {
    display: flex;
  }

  .nav-list li {
    width: 100%;
    font-size: 0.5rem;
  }

  .nav-list a {
    display: block;
    padding: 0.25rem 0.5rem;
    color: white;
    text-decoration: none;
    border-radius: 8px;
  }

  .join-btn {
    display: none;
  }

  /*Hero*/
  .hero {
    flex-direction: row;
    gap: 0.25rem;
    padding: 0.25rem;
    max-width: 100%;
    justify-content: space-around;
  }

  .left-content {
    gap: 0.25rem;
  }

  .hero-title {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    max-width: 100%;
  }

  .hero-text {
    font-size: 0.4rem;
    margin-bottom: 0.5rem;
    max-width: 350px;
  }

  .sm-icons {
    font-size: 0.5rem;
    gap: 0.5rem;
  }

  .hero-image img {
    width: 300px;
    max-width: 100%;
    height: auto;
    padding: 1rem;
  }

  /* Membership Options Section */
  .membership-section {
    gap: 0.25rem;
    padding: 0.25rem;
    max-width: 100%;
  }

  .main-container {
    gap: 0.5rem;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .membership-section h1 {
    font-size: 1rem;
  }

  .membership-card {
    padding: 0.25rem;
    width: 100%;
    max-width: 150px;
    align-items: center;
  }

  .membership-card h2 {
    font-size: 0.5rem;
    padding: 0.25rem;
  }

  .membership-card img {
    margin-bottom: 0.5rem;
    width: 75px;
    max-width: 100%;
    height: auto;
  }

  .membership-card p {
    font-size: 0.5rem;
    margin-bottom: 0.25rem;
    max-width: 150px;
  }

  /* About Us */
  .about-us{
    gap: 0.5rem;
    padding: 1rem;
    max-width: 100%;
  }

  .about-us h1 {
    font-size: 1rem;
  }

  .about-us p {
    font-size: 0.4rem;
    max-width: 350px;
  }

  /* Pricing */
  .pricing-section {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    max-width: 100%;
  }

  .pricing-section h1 {
    font-size: 1rem;
  }

  .pricing-card-container {
    max-width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
  }

  .pricing-card {
    width: 100%;
    padding: 0.5rem 0.75rem;
    margin: 0 1rem;
    border-radius: 0.5rem;
  }

  .pricing-card:hover {
    transform: scale(0.5)translateY(-10px);
  }

  .pricing-card .title {
    font-size: 0.75rem;
  }

  .pricing-card .price {
    font-size: 0.5rem;
    margin: 8px 0;
  }

  .btn {
    display: inline-block;
    padding: 0.25rem 0;
    border-radius: 0.25rem;
    border: 3px solid transparent;
    font-size: 0.5rem;
    margin-top: 0.5rem;
  }

}

@media screen and (max-width: 480px) {
  html, body {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .navigation-header {
    flex-direction: row;
    max-width: 100%;
    position: relative;
    padding: 0.5rem;
    justify-content: center;
  }
  .logo img {
    width: 40px;
    max-width: 100%;
    height: auto;
  }
  .header-title {
    font-family: 'Karantina', sans-serif;
    background-color: #FFF;
    font-size: 0.5rem;
  }
  .hamburger {
    display: block;
    font-size: 1rem;
    background: none;
    color: #6C6C6C;
    cursor: pointer;
    border: none;
    padding: 0.5rem;
  }
  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    right: 1rem;
    left: auto;
    width: min(250px, calc(100vw - 2rem));
    max-width: 280px;
    box-sizing: border-box;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem;
    background: #111;
    border-radius: 12px;
    list-style: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    z-index: 10;
  }
  .nav-list.active {
    display: flex;
  }
  .nav-list li {
    width: 100%;
    font-size: 0.5rem;
  }
  .nav-list a {
    display: block;
    padding: 0.25rem 0.5rem;
    color: white;
    text-decoration: none;
    border-radius: 8px;
  }
  .join-btn {
    border-radius: 4px;
    font-size: 0.5rem;
    padding: 0.25rem;
  }
  /*Hero*/
  .hero {
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.25rem;
    max-width: 100%
  } 
  .left-content {
    gap: 0.25rem;
  }
  .hero-title {
    font-size: 0.5rem;
    margin-bottom: 0.5rem;
    max-width: 250px;
  }
  .hero-text {
    font-size: 0.3rem;
    margin-bottom: 0.5rem;
    max-width: 250px;
  }
  .sm-icons {
    font-size: 0.5rem;
    gap: 0.5rem;
  }
  .hero-image img {
    width: 200px;
    max-width: 100%;
    height: auto;
  }
  /* Membership Options Section */
  .membership-section {
    gap: 0.25rem;
    padding: 0.25rem;
    max-width: 100%;
  }

  .main-container {
    gap: 0.25rem;
    max-width: 100%;
  }

  .membership-section h1 {
    font-size: 1rem;
  }

  .membership-card {
    padding: 0.75rem;
    max-width: 100px;
  }

  .membership-card h2 {
    font-size: 0.5rem;
    padding: 0.25rem;
  }

  .membership-card img {
    margin-bottom: 0.5rem;
    width: 75px;
    max-width: 100%;
    height: auto;
  }

  .membership-card p {
    font-size: 0.5rem;
    margin-bottom: 0.25rem;
  }

  /* About Us */
  .about-us{
    gap: 0.5rem;
    padding: 1rem;
    max-width: 100%;
  }

  .about-us h1 {
    font-size: 1rem;
  }

  .about-us p {
    font-size: 0.4rem;
    max-width: 300px;
  }

  /* Pricing */
  .pricing-section {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem;
    max-width: 100%;
  }

  .pricing-section h1 {
    font-size: 1rem;
  }

  .pricing-card-container {
    max-width: 100%;
  }

  .pricing-card {
    max-width: 8rem;
    padding: 0.5rem 0.75rem;
    margin: 0 1rem;
    border-radius: 1rem;
  }

  .pricing-card:hover {
    transform: scale(0.5)translateY(-10px);
  }

  .pricing-card .title {
    font-size: 0.75rem;
  }

  .pricing-card .price {
    font-size: 0.5rem;
    margin: 8px 0;
  }

  .btn {
    display: inline-block;
    padding: 0.25rem 0;
    border-radius: 0.25rem;
    border: 3px solid transparent;
    font-size: 0.5rem;
    margin-top: 0.5rem;
  }
}
