body {
    background-color: #fff2f7;
}


/* ============================= */
/* HERO SECTION */
/* ============================= */
.hero {
  padding: 4rem 1rem;
  font-family: 'Times New Roman', Times, serif;
}

/* Content container */
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1050px;
  margin: auto;
}

.hero-left {
    max-width: 600px;
    justify-items: left;
}

/* ============================= */
/* HEADING */
/* ============================= */
.hero-heading {
  letter-spacing: 1px;
  color: #0b0224;
  margin-bottom: 1.5rem;
  max-width: 540px;
  font-weight: 800;

  /* Responsive scaling */
  font-size: clamp(1.9rem, 6vw, 3rem);
}

/* ============================= */
/* TEXT */
/* ============================= */
.hero-text {
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #000;
  margin-bottom: 2rem;
  line-height: 1.6;

  /* Responsive scaling */
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.badge {
  display: inline-block;
  background: #c9bdfa;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #623fff;
  font-size: 1.1rem;
}

/* ============================= */
/* IMAGES */
/* ============================= */
.hero-images {
  width: 400px;
  height: 340px;
  gap: 1rem;

  display: flex;
  flex-direction: row;
  border-style: solid white;
}

.card {
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  border-style: solid;
  border-color: #fff;
  border-width: 0.4rem;

  width: 400px;
}



/* ============================= */
/* 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;
}

