/* ============================= */
/* GLOBAL BACKGROUND */
/* ============================= */
body {
    background: #000;
    color: #fff;
    overflow-x: hidden;
    position: relative;
}

/* Purple glow */
body::before {
    content: '';

    position: fixed;
    top: -300px;
    left: -300px;

    width: 800px;
    height: 800px;

    border-radius: 50%;

    background: rgba(139, 92, 255, 0.18);

    filter: blur(220px);

    pointer-events: none;
    z-index: -2;
}

/* Blue glow */
body::after {
    content: '';

    position: fixed;
    bottom: -350px;
    right: -350px;

    width: 900px;
    height: 900px;

    border-radius: 50%;

    background: rgba(0, 191, 255, 0.12);

    filter: blur(260px);

    pointer-events: none;
    z-index: -2;
}

/* ============================= */
/* HERO SECTION */
/* ============================= */
.hero {
    text-align: center;
    align-content: center;
}

.hero-container {
  border-top: 1.4px solid #603788;
  padding: 40px;
}

/* HEADING */
.hero-heading {
  font-size: clamp(30px, 7vw, 70px);
  color: #ffffff;
  letter-spacing: 1px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;

  text-shadow:
    0 0 20px rgba(139,92,255,0.3),
    0 0 40px rgba(139,92,255,0.15);
}

.hero-design {
  display: flex;
  align-items: center;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 1rem;
}


.hero-design::before,
.hero-design::after {
  content: "";
  flex: 1;
  height: 1px;
}

.hero-design::before {
  background: linear-gradient(to right, transparent, #00bfff);
}

.hero-design::after {
  background: linear-gradient(to left, transparent, #00bfff);
}

.hero-design span {
  padding: 0px;
}

.hero-text {
    justify-self: center;
    font-size: 1.2rem;
    color: #d6d6d6;
    line-height: 1.7;
    max-width: 640px;
    margin-bottom: 1rem;
}

.hero-buttons {
    justify-self: center;
    display: flex;
    gap: 0.5rem;
}

.hero-button {
    padding: 0.6rem 1.4rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    color: white;
    font-size: 1rem;
    transition: 0.3s ease;
    border: 1px solid #8b5cff;
}

.hero-button:hover {
    transform: translateY(-3px);
    border-color: rgba(139,92,255,0.4);
    box-shadow:
        0 0 20px rgba(139,92,255,0.15),
        0 0 50px rgba(139,92,255,0.1);
}

.hero-button.active {
    background: linear-gradient(90deg, #8b2cff, #20bfff);
    box-shadow: 0 0 25px rgba(138, 43, 226, 0.5);
}
/* ============================= */
/* RESPONSIVE HERO */
/* ============================= */

@media (max-width: 992px) {
  .hero-container {
    padding: 35px 25px;
  }

  .hero-heading {
    font-size: 52px;
  }

  .hero-design {
    max-width: 90%;
  }

  .hero-text {
    font-size: 1.1rem;
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .hero-container {
    padding: 30px 18px;
  }

  .hero-heading {
    font-size: 38px;
    line-height: 1.2;
  }

  .hero-design {
    max-width: 100%;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .hero-button {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 25px 14px;
  }

  .hero-heading {
    font-size: 30px;
    letter-spacing: 0.5px;
  }

  .hero-text {
    font-size: 0.95rem;
  }

  .hero-button {
    font-size: 0.95rem;
    padding: 0.6rem 1rem;
  }
}



/* ============================= */
/* PROJECT SECTION */
/* ============================= */
.content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;

    font-family: 'Times New Roman', Times, serif;
}

/* ============================= */
/* PROJECT CARD */
/* ============================= */
.content-section {
    position: relative;

    display: flex;
    flex-direction: column;

    background: #000;
    border: 1px solid #7c3aed;
    border-radius: 15px;

    padding: 20px;

    transition: 0.3s ease;
}

.content-section:hover {
    transform: translateY(-8px);

    box-shadow:
        0 0 25px rgba(124,58,237,0.4),
        0 0 60px rgba(124,58,237,0.15);
}

/* ============================= */
/* STATUS */
/* ============================= */
.status {
    position: absolute;
    top: 15px;
    left: 15px;

    padding: 5px 10px;

    font-size: 12px;
    border-radius: 6px;
    color: #fff;
}

.live {
    background: #16a34a;
}

.concept {
    background: #444;
}

/* ============================= */
/* IMAGE */
/* ============================= */
.content-photo {
    width: 100%;
    height: 220px;

    object-fit: cover;

    border-radius: 10px;
    margin-bottom: 20px;
}

/* ============================= */
/* CONTENT */
/* ============================= */
.content-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.content-heading {
    font-size: 26px;
    margin-bottom: 10px;
    color: #fff;
}

.content-text {
    font-size: 15px;
    color: #ccc;
    line-height: 1.6;

    margin-bottom: 20px;
}

/* ============================= */
/* TAGS */
/* ============================= */
.content-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-top: auto;
    margin-bottom: 20px;
}

.content-tag {
    border: 1px solid #7c3aed;
    border-radius: 8px;

    padding: 5px 10px;

    font-size: 16px;
    color: #c084fc;

    text-shadow:
        0 0 2px #a855f7,
        0 0 2px #7c3aed;
}

/* ============================= */
/* BUTTON */
/* ============================= */
.content-button {
    display: inline-block;

    color: #8b5cff;
    text-decoration: none;
    font-weight: 600;

    transition: 0.3s ease;
}

.content-button:hover {
    color: #00bfff;
    text-shadow: 0 0 12px rgba(0,191,255,0.5);
}

/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width: 1000px) {
    .content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .content {
        grid-template-columns: 1fr;
    }

    .content-photo {
        height: auto;
    }
}