/* CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0a0a0a;
}

/* Profile Page Styles */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  min-height: 60vh;
  padding: 110px 20px 40px;

  background-image: url("images/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  perspective: 1000px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(10,10,10,0.35) 0%,
      rgba(10,10,10,0.5) 35%,
      rgba(10,10,10,0.78) 68%,
      rgba(10,10,10,0.96) 88%,
      #0a0a0a 100%
    );
}

.hero > * {
  position: relative;
}

.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-text {
  margin-top: 32px;
  text-align: center;
  font-size: 1.3rem;
  color: #f2f2f2;
}

.profile-text h1 {
  font-family: "Unbounded", sans-serif;
  font-size: 4.7rem;
  margin-bottom: 20px;
  font-style: italic;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 2px;
}

.profile-text p {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  color: #ff4800;
  max-width: 600px;
  margin-top: 8px;
  line-height: 1.5;
}

.profile-image {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-hover-area {
  padding: 80px;      /* controls how far the cursor can be */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: -80px; /* negates the padding to keep layout intact */
  margin-top: -120px;  /* negates the padding to keep layout intact */
}


.socials {
  display: flex;
  gap: 32px;
  margin-top: 60px;
}

.socials a {
  font-size: 1.4rem;
  color: #ff4800;
  text-decoration: none;
  transition: all 0.25s ease;
}

.socials a:hover {
  color: #f2f2f2;
  transform: translateY(-2px) scale(1.1);
}

@media (max-width: 768px) {
  .profile-image {
    width: 150px;
    height: 150px;
  }

  .profile-text {
    margin-top: 20px;
    text-align: center;
  }

  .profile-text h1 {
    font-size: 2rem;
  }
}

/* Projects Section */

.project-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-logo img {
  width: 37px;
  height: 37px;
  object-fit: contain;
  filter: brightness(0.95);
  transition: transform 0.25s ease;
}

.project-card:hover .project-logo img {
  transform: scale(1.1);
}
.projects {
  position: relative;
  padding: 24px 0;
  width: 100%;
  max-width: 1100px;
  margin: 60px auto 120px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.projects::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -40px;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(255,72,0,0.35),
    transparent
  );
}


.project-card {
  display: grid;
  grid-template-columns: 70px 220px 1fr 60px;
  align-items: center;

  padding: 36px 48px;

  border: 1px solid rgba(255,72,0,0.35);
  text-decoration: none;

  color: #f2f2f2;
  font-family: "Space Grotesk", sans-serif;

  position: relative;
  overflow: hidden;

  transition: all 0.25s ease;
  background: rgba(255, 255, 255, 0.021);
}

.project-center {
  position: relative;
  margin-left: 64px;
}

.project-center::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 30px;
  transform: translateY(-50%);
  background: rgba(255,72,0,0.35);
}

/*Typography*/
.project-left h3 {
  font-family: "Unbounded", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 1px;
}

.project-center p {
  color: #ff4800;
  font-size: 0.95rem;
  margin-left: 24px;
}

/* Arrow Styling*/
.project-right {
  display: flex;
  justify-content: flex-end;
}

.arrow {
  font-size: 1.4rem;
  color: #ff4800;
  transition: all 0.25s ease;
}

/* Hover Effects */
.project-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    110deg,
    transparent,
    rgba(255,72,0,0.12),
    transparent
  );

  opacity: 0;
  transition: opacity 0.25s ease;
}

.project-card:hover::before {
  opacity: 1;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: #ff4800;

  box-shadow:
    0 12px 40px rgba(255,72,0,0.15),
    0 0 30px rgba(255,72,0,0.08);
}

.project-card:hover .arrow {
  transform: translateX(8px);
}

/* BRAND ACCENTS */

.brand-alr:hover {
  border-color: #ff4800;
}

.brand-alr:hover .arrow {
  color: #ff4800;
}

.brand-alr:hover::before {
  background: linear-gradient(
    110deg,
    transparent,
    rgba(255,72,0,0.12),
    transparent
  );
}


/* FYRE DESIGNS */

.brand-designs:hover {
  border-color: #ff4800;
}

.brand-designs:hover .arrow {
  color: #ff4800;
}

.brand-designs:hover::before {
  background: linear-gradient(
    110deg,
    transparent,
    rgba(255,72,0,0.12),
    transparent
  );
}


/* CRAFTR */

.brand-craftr:hover {
  border-color: #157ef6;
}

.brand-craftr:hover .arrow {
  color: #157ef6;
}

.brand-craftr:hover::before {
  background: linear-gradient(
    110deg,
    transparent,
    rgba(21,126,246,0.18),
    transparent
  );
}


/* FYRE MUSIC */

.brand-music:hover {
  border-color: #e11d48;
}

.brand-music:hover .arrow {
  color: #e11d48;
}

.brand-music:hover::before {
  background: linear-gradient(
    110deg,
    transparent,
    rgba(225,29,72,0.18),
    transparent
  );
}

/* ALR */
.brand-alr:hover {
  border-color: #ff4800;
  box-shadow:
    0 12px 40px rgba(255, 72, 0, 0.15),
    0 0 30px rgba(255, 72, 0, 0.08);
}

.brand-alr:hover .arrow,
.brand-alr:hover .project-center p {
  color: #ff4800;
}

.brand-alr:hover .project-center::before {
  background: #ff4800;
}


/* FYRE DESIGNS */
.brand-designs:hover {
  border-color: #ff4800;
  box-shadow:
    0 12px 40px rgba(255, 72, 0, 0.15),
    0 0 30px rgba(255, 72, 0, 0.08);
}

.brand-designs:hover .arrow,
.brand-designs:hover .project-center p {
  color: #ff4800;
}

.brand-designs:hover .project-center::before {
  background: #ff4800;
}


/* CRAFTR */
.brand-craftr:hover {
  border-color: #157ef6;
  box-shadow:
    0 12px 40px rgba(21, 126, 246, 0.16),
    0 0 30px rgba(21, 126, 246, 0.10);
}

.brand-craftr:hover .arrow,
.brand-craftr:hover .project-center p {
  color: #157ef6;
}

.brand-craftr:hover .project-center::before {
  background: #157ef6;
}


/* FYRE MUSIC */
.brand-music:hover {
  border-color: #e11d48;
  box-shadow:
    0 12px 40px rgba(225, 29, 72, 0.16),
    0 0 30px rgba(225, 29, 72, 0.10);
}

.brand-music:hover .arrow,
.brand-music:hover .project-center p {
  color: #e11d48;
}

.brand-music:hover .project-center::before {
  background: #e11d48;
}

/* ENTRY ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Optional softer variants */
.reveal--small {
  transform: translateY(14px);
}

.reveal--scale {
  transform: translateY(18px) scale(0.98);
}

.reveal--scale.is-visible {
  transform: translateY(0) scale(1);
}