:root {
  --primary: #603BFF;
  --secondary: #886dff;

  --bg: #f3f3f3;
  --bg-header: #ffffff;
  --bg-outline: #ececec;
  --bg-footer: rgb(4, 4, 9);
  
  --text-white: #ffffff;
  --text-secondary: #b6b5c1;
  --text-dark: #0c0c12;
}

/* HERO SECTION BACKGROUND */
.hero {
  position: relative;
  background-color: #603BFF;
  background-image: url('Vectors/IconGrid.svg');
  background-repeat: repeat;
  background-size: 1200px;
  border-radius: 20px;
  margin: 16px;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px;
  height: 300px;
}


/* CONTENT STYLING */
.content {
  max-width: 1500px;
  display: flex;
  flex-direction: column; /* stacked by default (mobile view) */
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 40px;
}

/* TEXT WRAPPER (so h1 & p stay stacked even on desktop) */
.text-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
}

/* TEXT STYLING */
.content h1 {
  font-size: 2rem;
  margin: 0;
}

.content p {
  font-size: 1rem;
  line-height: 1.6;
}

/* CARD STYLING */
.card {
  background: white;
  border-radius: 20px;
  padding: 30px 40px;
  text-align: center;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  min-width: 250px;

  display: flex;               /* make buttons stack vertically */
  flex-direction: column;
  align-items: center;
  gap: 15px;                   /* space between buttons */
}

.signin-btn {
  background-color: #603BFF;
  color: white;
  border: none;
  border-radius: 30px;
  padding: 12px 50px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 20px;
    transition: transform 0.1s ease-in-out;
}

.create-account {
  background-color: #121214;
  color: white;
  border: none;
  border-radius: 30px;
  padding: 12px 50px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
    transition: transform 0.1s ease-in-out;
}

.card button:hover {
  transform: scale(1.03);
}

/* RESPONSIVE — switch to side-by-side layout on desktop */
@media (min-width: 900px) {

  .hero {
  background-color: #603BFF;
  background-image:
  linear-gradient(rgba(0, 0, 0, 0), rgb(96, 59, 255)),
  url('Vectors/IconGrid.svg');
  background-repeat: repeat;
  background-size: 2000px;
}

  .content {
    flex-direction: row; /* side-by-side layout */
    align-items: center;
    text-align: left;
  }

  /* TEXT STYLING */
.content h1 {
  font-size: 3rem;
  margin: 0;
}

/* CARD STYLING */
.card {
  width: 500px;
  padding: 3% 0;
}

  .text-group {
    align-items: flex-start;
  }
}














.landing {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  margin-bottom: 5%;
  padding: 0 5%;
}

.container {
  display: flex;               /* make buttons stack vertically */
  flex-direction: column;
  align-items: center;
  gap: 25px;
  width: 100%;
  max-width: 1200px;
}

.landing-text h1 {
  font-size: 4rem;
  font-weight: 700;
  color: #121214;
  margin: 0;
}

.landing-text h2 {
  font-size: 3rem;
  font-weight: 600;
  color: #603BFF; /* purple accent */
  margin-top: -1rem;
}

.subscription-content{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: auto;
  gap: 50px;
}

.subscription-box{
  background-color: var(--bg-header);
  border-radius: 20px;
  padding: 30px 40px;
  text-align: center;
  width: 400px;
  height: 600px;
}

.subscription-box-premium{
  background-color: var(--primary);
  border-radius: 20px;
  padding: 30px 40px;
  text-align: center;
  width: 400px;
  height: 600px;
  transform: scale(1.1);
}

/* RESPONSIVE (mobile layout) */
@media (max-width: 768px) {
  .container {
    margin-top: 50px;
    flex-direction: column;
    text-align: center;
  }

  .landing-text h1 {
    font-size: 2rem;
  }

  .landing-text h2 {
    font-size: 2rem;
  }

  .landing-image img {
    margin-top: 30px;
    max-width: 300px;
  }

  .subscription-content {
    flex-direction: column;
  }

.subscription-box{
  width: 250px;
  height: 450px;
}

.subscription-box-premium{
  width: 250px;
  height: 450px;
  transform: scale(1);
}
}






.footer {
  padding: 60px 80px;
  background: var(--bg-footer);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-column h3,
.footer-column h4 {
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--text-white);
}

.footer-column p {
  color: #bbb;
  font-size: 14px;
  line-height: 22px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
}

.footer-column ul li a:hover {
  color: #fff;
}

.divider {
  border: none;
  border-top: 1px solid #333;
  margin: 40px 0;
}

.footer-links {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-links a {
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  max-width: 600px;
  color: #999;
  font-size: 13px;
  line-height: 20px;
}

.footer-socials a {
  color: #ccc;
  margin-left: 15px;
  font-size: 18px;
  text-decoration: none;
}

.footer-socials a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}