
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #0A0A0F;
    color: #F5F7FA;
    line-height: 1.6;
}

section {
    padding: 80px 20px;
    margin: auto;
}

    h1, h2 {
    color: #7C5CFF;
}

a {
    color: #4C6FFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.hero {
  position: relative;
  padding: 140px 20px 120px;
  background: url("images/hero-bg.jpg") center / cover no-repeat;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 15, 0.5),
    rgba(10, 10, 15, 0.25),
    rgba(10, 10, 15, 0.5)
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  
}

.hero h1 {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 18px;
  color: #F5F7FA;
}

.hero p {
  font-size: 1.1rem;
  color: #B4B9C6;
  max-width: 700px;
  margin: 0 auto 28px;
}


.substack-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #4C6FFF, #7C5CFF);
    color: white;
    border-radius: 6px;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(180deg, #0A0A0F 0%, #0F1320 100%);
  color: #F5F7FA;
  line-height: 1.6;
}

footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid #1C1F2A;
}

.featured-project {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;

  background: linear-gradient(
    180deg,
    rgba(18, 18, 28, 0.6),
    rgba(10, 10, 18, 0.8)
  );

  border-radius: 16px;
}

.featured-project-grid {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 40px;
  align-items: start;
}

.featured-cover-column {
  width: 100%;
}

.featured-cover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  border-radius: 10px;

  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 4px 12px rgba(0, 0, 0, 0.4),
    0 0 25px rgba(124, 92, 255, 0.3);
}

.featured-cover:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.6),
    0 8px 20px rgba(0, 0, 0, 0.5),
    0 0 35px rgba(124, 92, 255, 0.25);
}

.featured-content-column h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #F5F7FA;
  text-align: left;
}

.featured-content-column h3 {
  margin: 0 0 14px;
  font-size: 1.25rem;
  color: #7C5CFF;
  text-align: left;
}

.featured-description {
  margin: 0;
  color: #C8CFDA;
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: left;
  max-width: 700px;
}

.where-to-read {
  margin-top: 40px;
}

.where-to-read h3 {
  margin: 0 0 18px;
  font-size: 1.25rem;
  color: #F5F7FA;
  text-align: left;
}

.reading-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}



.reading-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #171B2A;
  border: 1px solid #252A3A;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reading-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(124, 92, 255, 0.18);
}

.reading-link img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.featured-title {
  font-size: 2rem;
  margin: 0 0 12px;
  color: #F5F7FA;
  text-align: center;
}


.projects-section h2 {
  font-size: 2rem;
  margin: 0 0 12px;
}

.projects-intro {
  color: #A7ACBA;
  font-size: 1.1rem;
  margin: 0 0 40px;
}

.projects-section h2,
.projects-intro {
  text-align: center;
}

.projects-intro {
  color: #A7ACBA;
  font-size: 1.1rem;
  margin-bottom: 40px;
}


.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  align-items: start;
}

.project-card {
  background: #171B2A;
  border-radius: 12px;
  padding: 22px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-image-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 20px;
}

.project-cover {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.project-card img {
  max-width: 100%;
  height: auto;
}

.project-card:hover .project-cover {
  transform: scale(1.05);
}

.project-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 10px 30px rgba(124, 92, 255, 0.2);
}

.project-card h3 {
  margin: 0 0 10px;
  font-size: 2rem;
  color: #F5F7FA;
}

.project-status {
  margin: 0;
  font-size: 1rem;
  color: #B4B9C6;
}

.projects-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}


.about-section,
.contact-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.about-section h2{
  font-size: 2rem;
  color: #F5F7FA;
  text-align: center;
  margin: 0 0 40px;
}

.contact-section h2 {
  font-size: 2rem;
  color: #7C5CFF;
  text-align: center;
  margin: 0 0 40px;
}

.about-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content p {
  margin-bottom: 18px;
  line-height: 1.85;
  color: #C8CFDA;
  text-align: left;
}

.about-intro {
  font-size: 1.1rem;
  color: #E2E6F0;
}

.about-closing {
  margin-top: 10px;
  font-style: italic;
  color: #A7ACBA;
}

.contact-section p {
  max-width: 800px;
  margin: 0 auto;
  color: #C8CFDA;
  line-height: 1.8;
  text-align: center;
}

.site-footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 40px;
  border-top: 1px solid #1C1F2A;
}

.footer-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #171B2A;
  border: 1px solid #252A3A;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-socials a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(124, 92, 255, 0.18);
}

.footer-socials img {
  max-width: 30px;
  max-height: 30px;
  display: block;
}

/* =========================
   PROJECT PAGE
========================= */

.project-hero-section,
.project-overview-section,
.project-art-section,
.project-navigation-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

/* PROJECT HERO */

.project-hero {
  text-align: center;
}

.project-hero h1 {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 12px;
  color: #F5F7FA;
}

.project-status {
  font-size: 1rem;
  color: #A7ACBA;
  margin: 0 0 30px;
}

.project-hero-cover img {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  margin: 0 auto 28px;
  border-radius: 12px;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 4px 12px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(124, 92, 255, 0.18),
    0 0 80px rgba(124, 92, 255, 0.12);
}

.project-tagline {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #C8CFDA;
  line-height: 1.8;
}

/* OVERVIEW */

.project-overview-section h2,
.project-art-section h2 {
  font-size: 2rem;
  color: #F5F7FA;
  text-align: center;
  margin-bottom: 30px;;
}

.project-overview-section p {
  max-width: 800px;
  margin: 0 auto 18px;
  line-height: 1.85;
  color: #C8CFDA;
  text-align: left;
}

/* OFFICIAL ART */

.project-art-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 80px 20px;

  background: linear-gradient(
    180deg,
    rgba(18, 18, 28, 0.5),
    rgba(10, 10, 18, 0.7)
  );

  border-radius: 16px;
}

.project-art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: start;
}

.project-art-grid img {
  width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  background: #171B2A;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-art-grid img:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 16px 35px rgba(0, 0, 0, 0.45),
    0 0 30px rgba(124, 92, 255, 0.15);
}

.project-art-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
}


.project-art-gallery img {
  height: 360px;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  border-radius: 12px;
  background: #171B2A;
  padding: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-art-gallery img:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 35px rgba(0, 0, 0, 0.45),
    0 0 30px rgba(124, 92, 255, 0.15);
}

.project-art-gallery a {
  display: inline-block;
  border-radius: 12px;
}

/* BACK LINK */

.project-navigation-section {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 100px;
}

.back-link {
  display: inline-block;
  padding: 12px 22px;
  background: #171B2A;
  color: #F5F7FA;
  border: 1px solid #252A3A;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.back-link:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 92, 255, 0.4);
  box-shadow: 0 8px 24px rgba(124, 92, 255, 0.18);
}

.project-reading-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.project-reading-section h2 {
  font-size: 2rem;
  color: #F5F7FA;
  text-align: center;
  margin: 0 0 30px;
}

.project-reading-subsection {
  margin-top: 50px;
  padding: 20px 0 40px;
  text-align: center;
  border-top: 1px solid rgba(124, 92, 255, 0.12);
  border-bottom: 1px solid rgba(124, 92, 255, 0.12);
}

.project-reading-subsection h3 {
  margin-bottom: 16px;
  font-size: 1.2rem;
  color: #F5F7FA;
}

.project-overview-section h2,
.project-art-section h2 {
  color: #7C5CFF;
}

.project-reading-subsection .reading-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}