body {
    background-color: #fff2f7;
}


/* ============================= */
/* HERO SECTION */
/* ============================= */
.hero {
  padding: 3rem 1rem;
  font-family: 'Times New Roman', Times, serif;
}

/* ============================= */
/* CONTAINER */
/* ============================= */
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;

  max-width: 1050px;
  margin: 0 auto;
}

/* ============================= */
/* LEFT SIDE */
/* ============================= */
.hero-left {
  flex: 1;
  max-width: 520px;
}

/* ============================= */
/* TEXT */
/* ============================= */
.hero-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #0b0224;
  margin-bottom: 1.2rem;
}

.hero-text {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.6;
  margin-bottom: 1.8rem;
  color: #000;
}

/* Badge */
.badge {
  display: inline-block;
  background: #c9bdfa;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #623fff;
  font-size: 0.95rem;
}

/* ============================= */
/* IMAGE (RIGHT SIDE) */
/* ============================= */
.hero-images {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Single image */
.card {
  width: 100%;
  max-width: 380px;
  height: auto;

  border-radius: 20px;
  border: 4px solid #fff;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);

  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Hover effect */
.card:hover {
  transform: translateY(-6px) scale(1.02);
}

/* ============================= */
/* TABLET */
/* ============================= */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-images {
    margin-top: 1.5rem;
  }
}

/* ============================= */
/* MOBILE */
/* ============================= */
@media (max-width: 500px) {
  .hero {
    padding: 2rem 1rem;
  }

  .card {
    max-width: 280px;
  }
}



/* ============================= */
/* SUBSCRIPTION SECTION */
/* ============================= */
.join {
    padding: 1rem 1rem;
    font-family: 'Times New Roman', Times, serif;
}

.join-container {
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
}

.join-heading {
    font-size: 40px;
    font-weight: 600;
    color: #0b0224;
}

.join-text {
    color: #000;
    font-size: 18px;
}

.join-buttons {
  display: flex;
  flex-direction: row;
  gap: 1rem;

}

/* Special button */
.signup-join-btn {
  text-decoration: none;
  border: none;
  padding: 0.7rem 3rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #000;
  background: linear-gradient(45deg, #7b5cff, #ff6aa2);
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.signup-join-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px #7b5cff;
}



/* ============================= */
/* CONTENT SECTION */
/* ============================= */
.content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 2rem 1rem 4rem 1rem;
  max-width: 1400px;
  margin: 0 auto;
  justify-items: center;
  font-family: 'Times New Roman', Times, serif;
}

/* ===== Desktop Layout ===== */
@media (min-width: 768px) {
  .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    align-items: stretch;
  }

  .contents {
    width: 360px;
    display: flex;
    flex-direction: column;
  }
}

/* ============================= */
/* CONTENT CARD */
/* ============================= */
.contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;

  background-color: #fff;
  padding: 1.2rem 0.8rem;
  border-radius: 20px;
  box-shadow: 0 30px 30px rgba(0,0,0,0.1);
}

/* ============================= */
/* IMAGES */
/* ============================= */
.photo img {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;

  border-radius: 20px;
}

/* ============================= */
/* TITLE — LOCKED HEIGHT */
/* ============================= */
.content-headings {
  font-size: 1.6rem;
  font-weight: 500;
  color: #0b0224;
  line-height: 1.2;

  /* 🔑 Locks title row height for alignment */
  height: 2.0em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  margin-bottom: 0.75rem;
}

/* ============================= */
/* BUTTON GROUP */
/* ============================= */
.buttons-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: auto;
  width: 100%;
  gap: 0.8rem;
}

/* ============================= */
/* BUTTON */
/* ============================= */
.join-button,
.button {
  font-size: 1rem;
  font-weight: bold;
  color: #000000;
  border-radius: 6px;
  padding: 0.65rem;
  width: 100%;
  max-width: 260px;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);

  background-color: #ffffff;
  border-style: solid;
  border-color: #b1a0ff;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px #7b5cff;
}

